    /* ───────────────────── Reset & Base ───────────────────── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --black: #0D0B09;
      --surface-1: #141210;
      --surface-2: #1C1916;
      --surface-3: #242018;
      --gold: #D4A843;
      --gold-bright: #ECC04E;
      --gold-dim: rgba(212, 168, 67, .14);
      --white: #F0EBE3;
      --gray: #7A746C;
      --gray-light: #A39C93;
      --gray-border: rgba(255, 255, 255, .08);
      --border-gold: rgba(212, 168, 67, .25);
      --font-body: "Inter", "Segoe UI", sans-serif;
      --font-display: "Playfair Display", Georgia, serif;
      scroll-behavior: smooth;
    }

    html { font-size: 16px; scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: #0D0B09;
      color: var(--white);
      line-height: 1.8;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    /* ───────────────────── Utilities ───────────────────── */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .container-wide {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); border: 0;
    }

    /* ───────────────────── Animations ───────────────────── */
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    @keyframes shimmer {
      0%   { background-position: -200% center; }
      100% { background-position: 200% center; }
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50%      { opacity: .6; }
    }

    @keyframes lineGrow {
      from { transform: scaleX(0); }
      to   { transform: scaleX(1); }
    }

    .animate-fade-in-up { animation: fadeInUp 1s ease both; }
    .animate-fade-in { animation: fadeIn 1.2s ease both; }
    .delay-1 { animation-delay: .2s; }
    .delay-2 { animation-delay: .4s; }
    .delay-3 { animation-delay: .6s; }
    .delay-4 { animation-delay: .8s; }

    /* ───────────────────── Navigation ───────────────────── */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.1rem 0;
      background: rgba(13, 11, 9, .88);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--gray-border);
      animation: fadeIn .8s ease both;
    }

    header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 64px;
      width: auto;
    }

    nav { display: flex; align-items: center; gap: 2rem; }

    nav a {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gray);
      transition: color .3s ease;
      position: relative;
      font-weight: 400;
    }

    nav a::after {
      content: "";
      position: absolute;
      bottom: -4px; left: 0;
      width: 100%; height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform .3s ease;
    }

    nav a:hover { color: var(--white); }
    nav a:hover::after { transform: scaleX(1); transform-origin: left; }

    .nav-cta {
      padding: .5rem 1.3rem;
      border: 1px solid var(--gray-border);
      color: var(--gray-light);
      font-size: .7rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      border-radius: 8px;
      transition: border-color .3s ease, color .3s ease, background .3s ease;
    }

    .nav-cta:hover {
      border-color: var(--border-gold);
      color: var(--gold);
      background: var(--gold-dim);
    }

    .nav-cta::after { display: none; }

    /* Mobile nav */
    .nav-toggle { display: none; }

    @media (max-width: 768px) {
      /* Hide all nav links and the CTA pill — hamburger only */
      nav a { display: none; }
      .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5.5px;
        background: none;
        border: 1px solid var(--gray-border);
        border-radius: 8px;
        cursor: pointer;
        padding: 9px 10px;
        width: 40px;
        height: 40px;
        transition: border-color .25s;
      }
      .nav-toggle:hover { border-color: var(--border-gold); }
      .nav-toggle span {
        width: 18px;
        height: 1.5px;
        background: var(--gray-light);
        display: block;
        border-radius: 2px;
        transition: transform .3s ease, opacity .3s ease, background .25s;
      }
      .nav-toggle:hover span { background: var(--gold); }
    }

    /* ───────────────────── Hero ───────────────────── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 8rem 1.5rem 6rem;
      position: relative;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      opacity: .28;
      pointer-events: none;
      z-index: 0;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
        rgba(13,11,9,.55) 0%,
        rgba(13,11,9,.35) 40%,
        rgba(13,11,9,.75) 100%);
      z-index: 0;
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 38%, rgba(212,168,67,.09) 0%, transparent 52%);
      z-index: 0;
      pointer-events: none;
    }

    .hero-content { position: relative; z-index: 1; max-width: 860px; }

    .hero-chips {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .75rem;
      flex-wrap: wrap;
      margin: 2.25rem 0 2.5rem;
    }

    .hero-chip {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(212,168,67,.06);
      border: 1px solid rgba(212,168,67,.2);
      border-radius: 100px;
      padding: .48rem 1.15rem;
      font-size: .74rem;
      font-weight: 500;
      color: rgba(240,235,227,.7);
      letter-spacing: .04em;
      backdrop-filter: blur(12px);
    }

    .hero-chip svg {
      width: 13px;
      height: 13px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }

    .hero-trust {
      margin-top: 2rem;
      margin-bottom: 0;
      max-width: none;
      white-space: nowrap;
      font-size: .74rem;
      color: var(--gray);
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 400;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .65rem;
    }

    .hero-trust::before,
    .hero-trust::after {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(212,168,67,.4));
    }

    .hero-trust::after {
      background: linear-gradient(to left, transparent, rgba(212,168,67,.4));
    }

    .hero-trust strong { color: var(--gold); font-weight: 700; }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(3rem, 6vw, 5.5rem);
      font-weight: 400;
      line-height: 1.12;
      letter-spacing: -.01em;
      margin-bottom: 2rem;
      animation: fadeInUp 1s ease both;
      animation-delay: .15s;
    }

    .hero h1 em {
      font-style: italic;
      font-weight: 400;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 50%, var(--gold) 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmer 4s linear infinite;
    }

    .hero p {
      font-size: clamp(.95rem, 1.8vw, 1.12rem);
      color: var(--gray-light);
      max-width: 560px;
      margin: 0 auto 3rem;
      line-height: 1.85;
      font-weight: 300;
      animation: fadeInUp 1s ease both;
      animation-delay: .3s;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease both;
      animation-delay: .45s;
    }

    .btn-primary {
      display: inline-block;
      padding: .95rem 2.6rem;
      background: linear-gradient(to bottom, var(--gold-bright) 0%, var(--gold) 100%);
      color: var(--black);
      font-family: var(--font-body);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
    }

    .btn-primary:hover {
      filter: brightness(1.08);
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(212,168,67,.32);
    }

    .btn-secondary {
      display: inline-block;
      padding: .95rem 2.6rem;
      background: transparent;
      color: var(--gray-light);
      font-family: var(--font-body);
      font-size: .75rem;
      font-weight: 400;
      letter-spacing: .14em;
      text-transform: uppercase;
      border: 1px solid var(--gray-border);
      border-radius: 8px;
      cursor: pointer;
      transition: border-color .3s ease, color .3s ease, transform .3s ease;
    }

    .btn-secondary:hover {
      border-color: var(--border-gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    /* ───────────────────── Divider ───────────────────── */
    .divider {
      width: 100%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
      margin: 0 auto;
      animation: lineGrow 1s ease both;
    }

    /* ───────────────────── Section Labels ───────────────────── */
    .section-label {
      font-size: .55rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
      font-weight: 600;
      display: inline-block;
      padding: .3rem .8rem;
      border: 1px solid rgba(212, 168, 67, .2);
      background: rgba(212, 168, 67, .04);
    }

    .section-label::before {
      display: none;
    }

    /* Centre-align variant for centered sections */
    .section-label.centered,
    .uk-launch-header .section-label,
    .sessions-header .section-label,
    .job-board .section-label,
    .cta-box .section-label,
    .testimonials-header .section-label,
    .global-vision-text .section-label {
      margin-left: auto;
      margin-right: auto;
    }

    .section-heading {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 400;
      line-height: 1.22;
      margin-bottom: 1.5rem;
    }

    .section-heading em {
      font-style: italic;
      color: var(--gold-bright);
    }

    /* ───────────────────── Testimonials Strip ───────────────────── */
    .testimonials-strip {
      padding: 7rem 0;
      border-top: 1px solid transparent;
      border-image: linear-gradient(90deg, transparent, var(--border-gold), transparent) 1;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    @media (min-width: 768px) {
      .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    }

    .testimonial-card {
      background: var(--surface-2);
      border: 1px solid var(--gray-border);
      border-radius: 16px;
      padding: 2.25rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: border-color .35s, transform .35s, box-shadow .35s;
    }

    .testimonial-card:hover {
      border-color: var(--border-gold);
      transform: translateY(-4px);
      box-shadow: 0 24px 64px rgba(0,0,0,.28);
    }

    .testimonial-stars {
      color: var(--gold);
      font-size: .78rem;
      letter-spacing: .15em;
    }

    .testimonial-card blockquote {
      font-size: .92rem;
      color: var(--white);
      line-height: 1.75;
      font-weight: 300;
      font-style: italic;
      flex: 1;
    }

    .testimonial-footer {
      display: flex;
      align-items: center;
      gap: .85rem;
      padding-top: 1rem;
      border-top: 1px solid var(--gray-border);
    }

    .testimonial-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--gold-dim);
      border: 1px solid var(--border-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .72rem;
      font-weight: 700;
      color: var(--gold);
      flex-shrink: 0;
      letter-spacing: .02em;
    }

    .testimonial-cite strong {
      display: block;
      font-size: .82rem;
      color: var(--white);
      font-weight: 500;
    }

    .testimonial-cite span {
      font-size: .74rem;
      color: var(--gray);
      font-weight: 300;
    }

    /* Mid-page CTA banner */
    .mid-cta {
      margin: 3rem 0 0;
      padding: 2.5rem;
      background: var(--gold-dim);
      border: 1px solid var(--border-gold);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .mid-cta p {
      font-size: clamp(.92rem, 1.6vw, 1rem);
      color: var(--white);
      font-weight: 400;
      line-height: 1.5;
    }

    .mid-cta p span { color: var(--gold); font-weight: 600; }

    .mid-cta a {
      display: inline-block;
      background: var(--gold);
      color: var(--black);
      border-radius: 8px;
      padding: .85rem 2rem;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-decoration: none;
      white-space: nowrap;
      transition: background .25s, box-shadow .25s;
      flex-shrink: 0;
    }

    .mid-cta a:hover { background: var(--gold-bright); box-shadow: 0 8px 28px rgba(212,168,67,.35); }

    /* ───────────────────── Profile / Ownership Section ───────────────────── */
    .ownership {
      padding: 8rem 0;
      border-top: 1px solid transparent;
      border-image: linear-gradient(90deg, transparent, var(--border-gold), transparent) 1;
    }

    .ownership-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: start;
    }

    @media (min-width: 768px) {
      .ownership-inner {
        grid-template-columns: 55fr 45fr;
      }
    }

    .ownership-text .section-label {
      font-size: .65rem;
      letter-spacing: .28em;
    }

    .ownership-text .section-heading {
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.15;
      margin-bottom: 1.8rem;
    }

    .ownership-text > p {
      color: var(--gray);
      line-height: 1.8;
      font-size: .95rem;
      font-weight: 300;
      max-width: 480px;
      margin-bottom: 2.5rem;
    }

    .ownership-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1.8rem;
    }

    .ownership-features li {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .ownership-features .feature-icon {
      width: 36px;
      height: 36px;
      min-width: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid var(--border-gold);
      border-radius: 8px;
      margin-top: .1rem;
      background: var(--gold-dim);
    }

    .ownership-features .feature-icon svg {
      width: 16px; height: 16px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .ownership-features h4 {
      font-size: .88rem;
      font-weight: 600;
      letter-spacing: .03em;
      margin-bottom: .3rem;
      color: var(--white);
    }

    .ownership-features p {
      font-size: .82rem;
      color: var(--gray);
      line-height: 1.7;
      font-weight: 300;
    }

    .ownership-right {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .image-block {
      width: 100%;
      aspect-ratio: 4 / 5;
      border: 1px solid var(--gray-border);
      border-radius: 12px;
      position: relative;
      overflow: hidden;
    }

    .image-block img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) brightness(.65);
      transition: filter .6s ease;
    }

    .image-block:hover img {
      filter: grayscale(100%) brightness(.8);
    }

    .image-block::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,11,9,.5), transparent 55%);
      pointer-events: none;
    }

    .ownership-quote {
      border: 1px solid var(--gray-border);
      border-top: none;
      border-radius: 0 0 12px 12px;
      padding: 1.75rem 2rem;
      background: var(--surface-1);
    }

    .quote-stars {
      color: var(--gold);
      font-size: 1rem;
      letter-spacing: .15em;
      margin-bottom: .9rem;
    }

    .ownership-quote blockquote {
      font-family: var(--font-display);
      font-style: italic;
      font-size: clamp(.9rem, 1.5vw, 1rem);
      line-height: 1.75;
      color: var(--white);
      margin-bottom: .85rem;
    }

    .ownership-quote cite {
      font-style: normal;
      font-family: var(--font-body);
      font-size: .65rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
    }

    /* ───────────────────── Job Board Section ───────────────────── */
    .job-board {
      padding: 8rem 0;
      text-align: center;
      border-top: 1px solid transparent;
      border-image: linear-gradient(90deg, transparent, var(--border-gold), transparent) 1;
    }

    .job-board .section-heading {
      font-size: clamp(2rem, 4vw, 3.2rem);
      margin-bottom: 1.5rem;
    }

    .job-board > .container > p {
      color: var(--gray);
      max-width: 620px;
      margin: 0 auto 3.5rem;
      font-size: clamp(.95rem, 1.8vw, 1.05rem);
      line-height: 1.8;
      font-weight: 300;
    }

    .job-board-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      align-items: stretch;
    }

    @media (min-width: 640px) {
      .job-board-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (min-width: 1024px) {
      .job-board-grid { grid-template-columns: repeat(4, 1fr); }
    }

    .job-card {
      padding: 2.2rem 1.8rem;
      border: 1px solid var(--gray-border);
      border-radius: 12px;
      background: var(--surface-1);
      text-align: left;
      transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
      position: relative;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .job-card .job-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      filter: grayscale(100%) brightness(.28);
      transition: filter .5s ease;
      z-index: 0;
    }

    .job-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,11,9,.85) 0%, rgba(13,11,9,.4) 50%, transparent 100%);
      z-index: 0;
      pointer-events: none;
      border-radius: 12px;
    }

    .job-card:hover .job-card-bg {
      filter: grayscale(100%) brightness(.38);
    }

    .job-card > * {
      position: relative;
      z-index: 1;
    }

    .job-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0);
      transition: transform .5s ease;
      z-index: 2;
    }

    .job-card:hover {
      border-color: var(--border-gold);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,.3);
    }

    .job-card:hover::before { transform: scaleX(1); }

    .job-card-icon {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-bottom: .8rem;
      color: var(--gold);
    }

    .job-card-icon svg {
      width: 24px; height: 24px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .job-card h3 {
      font-family: var(--font-body);
      font-size: .9rem;
      font-weight: 600;
      font-style: normal;
      color: var(--white);
      letter-spacing: .02em;
      margin-bottom: .5rem;
    }

    .job-card p {
      font-size: .82rem;
      color: var(--gray-light);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ───────────────────── Transition Section ───────────────────── */
    .transition-section {
      padding: 8rem 0;
      border-top: 1px solid transparent;
      border-image: linear-gradient(90deg, transparent, var(--border-gold), transparent) 1;
    }

    .transition-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .transition-inner {
        grid-template-columns: 45fr 55fr;
      }
    }

    .transition-section .section-heading {
      font-size: clamp(2rem, 3.5vw, 3.2rem);
    }

    .transition-section p {
      color: var(--gray);
      line-height: 1.8;
      font-size: .95rem;
      font-weight: 300;
      max-width: 480px;
    }

    /* ───────────────────── UK Launch Section ───────────────────── */
    .uk-launch {
      padding: 8rem 0 5rem;
      border-top: 1px solid transparent;
      border-image: linear-gradient(90deg, transparent, var(--border-gold), transparent) 1;
    }

    .uk-launch .section-heading {
      font-size: clamp(2rem, 3.5vw, 3.2rem);
    }

    .uk-pillars {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      margin-bottom: 3.5rem;
    }

    @media (min-width: 768px) {
      .uk-pillars {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .uk-pillar {
      background: var(--surface-2);
      border: 1px solid var(--gray-border);
      border-radius: 16px;
      padding: 2.25rem 2rem;
      position: relative;
      overflow: hidden;
      transition: border-color .3s;
    }

    .uk-pillar::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity .3s;
    }

    .uk-pillar:hover { border-color: var(--border-gold); }
    .uk-pillar:hover::before { opacity: 1; }

    .uk-pillar-icon {
      width: 44px;
      height: 44px;
      border: 1px solid var(--border-gold);
      border-radius: 10px;
      background: var(--gold-dim);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .uk-pillar-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .uk-pillar h3 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--white);
      margin-bottom: .65rem;
      font-weight: 600;
    }

    .uk-pillar p {
      font-size: .86rem;
      color: var(--gray);
      line-height: 1.8;
      font-weight: 300;
    }

    .uk-testimonials {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    @media (min-width: 640px) {
      .uk-testimonials {
        grid-template-columns: 1fr 1fr;
      }
    }

    .uk-testimonial {
      background: var(--surface-1);
      border: 1px solid var(--gray-border);
      border-radius: 16px;
      padding: 2rem 2rem 1.75rem;
    }

    .uk-testimonial-stars {
      color: var(--gold);
      font-size: .8rem;
      letter-spacing: .15em;
      margin-bottom: .9rem;
    }

    .uk-testimonial blockquote {
      font-size: .93rem;
      color: var(--white);
      line-height: 1.75;
      font-weight: 300;
      font-style: italic;
      margin-bottom: 1rem;
    }

    .uk-testimonial cite {
      font-size: .75rem;
      color: var(--gold);
      font-style: normal;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-weight: 500;
    }

    /* ───────────────────── Sessions Section ───────────────────── */
    .sessions {
      padding: 5rem 0 8rem;
      border-top: 1px solid transparent;
      border-image: linear-gradient(90deg, transparent, var(--border-gold), transparent) 1;
    }

    .sessions-header {
      margin-bottom: 4rem;
      text-align: center;
    }

    .sessions .section-heading {
      font-size: clamp(1.9rem, 2.8vw, 2.6rem);
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
    }

    .sessions-intro {
      color: var(--gray);
      font-size: clamp(.92rem, 1.6vw, 1rem);
      font-weight: 300;
      line-height: 1.85;
      max-width: 780px;
      margin: 1.25rem auto 1.75rem;
    }

    .sessions-callout {
      display: inline-block;
      background: var(--gold);
      border: 1px solid var(--gold);
      border-radius: 8px;
      padding: .9rem 2.25rem;
      font-size: .88rem;
      color: var(--black);
      font-weight: 600;
      letter-spacing: .04em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background .25s, box-shadow .25s;
    }

    .sessions-callout:hover {
      background: var(--gold-bright);
      box-shadow: 0 8px 32px rgba(212,168,67,.35);
    }

    /* ─── Global Vision ─── */
    .global-vision {
      margin-top: 5rem;
      background: #080604;
      border-radius: 24px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    /* Subtle gold halo from above */
    .global-vision::before {
      content: '';
      position: absolute;
      top: -60px; left: 50%; transform: translateX(-50%);
      width: 700px; height: 360px;
      background: radial-gradient(ellipse at top, rgba(212,168,67,.11) 0%, transparent 65%);
      pointer-events: none;
    }

    /* Thin gold top border */
    .global-vision::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    }

    .global-vision-text {
      padding: 5rem 3rem 4.5rem;
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }

    .global-vision h3 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.6rem);
      font-weight: 400;
      color: var(--white);
      margin-bottom: 1rem;
      line-height: 1.1;
    }

    .global-vision h3 em { color: var(--gold); font-style: italic; }

    .global-vision-text > p {
      font-size: .95rem;
      color: var(--gray);
      line-height: 1.85;
      font-weight: 300;
      max-width: 520px;
      margin: 0 auto;
    }

    /* Timeline */
    .global-timeline {
      display: flex;
      position: relative;
      padding: 0 4rem 4.5rem;
      z-index: 1;
    }

    /* Horizontal connecting line through the dots */
    .global-timeline::before {
      content: '';
      position: absolute;
      left: 4rem; right: 4rem;
      top: calc(2.6rem + 5px); /* fixed-height top section + half dot */
      height: 1px;
      background: linear-gradient(90deg, var(--gold) 0%, rgba(212,168,67,.12) 100%);
    }

    .global-timeline-item {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .timeline-top {
      height: 2.6rem;
      display: flex;
      align-items: flex-end;
      padding-bottom: .6rem;
      font-size: .67rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--gray);
    }

    .global-timeline-item.active .timeline-top { color: var(--gold); }

    .timeline-dot {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: rgba(212,168,67,.12);
      border: 1.5px solid rgba(212,168,67,.28);
      position: relative; z-index: 2;
      flex-shrink: 0;
      transition: box-shadow .3s;
    }

    .global-timeline-item.active .timeline-dot {
      width: 16px; height: 16px;
      background: var(--gold);
      border-color: var(--gold);
      box-shadow: 0 0 20px rgba(212,168,67,.8), 0 0 50px rgba(212,168,67,.35);
      margin: -3px 0; /* compensate size diff to keep alignment */
    }

    .timeline-bottom {
      padding-top: .75rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .3rem;
    }

    .timeline-country {
      font-size: .72rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      font-weight: 600;
      color: var(--gray);
    }

    .global-timeline-item.active .timeline-country {
      color: var(--white);
      font-weight: 700;
    }

    @media (max-width: 639px) {
      .global-timeline { flex-direction: column; padding: 0 2.5rem 3rem; gap: 1.5rem; }
      .global-timeline::before { display: none; }
      .global-timeline-item { flex-direction: row; gap: 1rem; align-items: center; }
      .timeline-top { height: auto; padding-bottom: 0; }
      .timeline-bottom { padding-top: 0; align-items: flex-start; }
    }

    .sessions-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 640px) {
      .sessions-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (min-width: 1024px) {
      .sessions-grid { grid-template-columns: repeat(3, 1fr); }
    }

    .session-card {
      padding: 2.5rem 2rem;
      border: 1px solid var(--gray-border);
      border-radius: 12px;
      background: var(--surface-1);
      transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
      position: relative;
      overflow: hidden;
    }

    .session-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      transform: scaleX(0);
      transition: transform .5s ease;
    }

    .session-card:hover {
      border-color: var(--border-gold);
      transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,.3);
    }

    .session-card:hover::before { transform: scaleX(1); }

    .session-card-icon {
      width: 44px; height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      border: 1px solid var(--border-gold);
      border-radius: 8px;
      background: var(--gold-dim);
      color: var(--gold);
    }

    .session-card-icon svg {
      width: 20px; height: 20px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .session-card h3 {
      font-size: .9rem;
      font-weight: 600;
      letter-spacing: .03em;
      margin-bottom: .6rem;
      color: var(--white);
    }

    .session-card p {
      font-size: .82rem;
      color: var(--gray);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ───────────────────── City Rollout ───────────────────── */
    .city-rollout {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      margin-top: 3rem;
      border: 1px solid var(--gray-border);
      border-radius: 12px;
      overflow: hidden;
    }

    @media (min-width: 640px) {
      .city-rollout { grid-template-columns: repeat(2, 1fr); }
    }

    @media (min-width: 1024px) {
      .city-rollout { grid-template-columns: repeat(3, 1fr); }
    }

    .city-item {
      display: flex;
      align-items: flex-start;
      gap: 1.2rem;
      padding: 1.8rem 2rem;
      border-bottom: 1px solid var(--gray-border);
      border-right: 1px solid var(--gray-border);
      transition: background .3s ease;
    }

    .city-item:hover { background: var(--surface-2); }

    .city-num {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-style: italic;
      color: var(--gold);
      opacity: .45;
      min-width: 2rem;
      line-height: 1;
      margin-top: .2rem;
    }

    .city-item h4 {
      font-size: .92rem;
      font-weight: 600;
      letter-spacing: .03em;
      margin-bottom: .3rem;
      color: var(--white);
    }

    .city-item p {
      font-size: .8rem;
      color: var(--gray);
      line-height: 1.65;
      font-weight: 300;
    }

    .city-item--more .city-num { opacity: .25; }

    /* ───────────────────── Payments Section ───────────────────── */
    .payments {
      padding: 8rem 0;
      border-top: 1px solid transparent;
      border-image: linear-gradient(90deg, transparent, var(--border-gold), transparent) 1;
    }

    .payments-top {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3.5rem;
      align-items: center;
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .payments-top { grid-template-columns: 55fr 45fr; }
    }

    .badge-exclusive {
      display: inline-block;
      background: var(--gold-dim);
      border: 1px solid var(--border-gold);
      border-radius: 100px;
      padding: .4rem 1.1rem;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }

    .payments .section-heading {
      font-size: clamp(2rem, 3.2vw, 3rem);
      margin-bottom: .75rem;
    }

    .payments-intro {
      color: var(--gray);
      font-size: clamp(.92rem, 1.6vw, 1rem);
      font-weight: 300;
      line-height: 1.85;
      margin-bottom: 1.5rem;
    }

    .payments-pain {
      display: block;
      background: rgba(212,168,67,.05);
      border-left: 2px solid var(--gold);
      padding: .9rem 1.5rem;
      font-size: .87rem;
      color: var(--gray-light);
      font-style: italic;
      line-height: 1.7;
      border-radius: 0 8px 8px 0;
    }

    .payments-image {
      border-radius: 16px;
      overflow: hidden;
      width: 100%;
      min-height: 380px;
      position: relative;
      align-self: stretch;
    }

    .payments-image img {
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      object-fit: cover;
      object-position: center center;
      display: block;
      filter: grayscale(100%);
    }

    .payments-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, transparent 50%, rgba(13,11,9,.6) 100%);
      border-radius: 16px;
    }

    .payments-cards {
      display: grid;
      grid-template-columns: 1fr;
      border: 1px solid var(--gray-border);
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 0;
    }

    @media (min-width: 640px) {
      .payments-cards { grid-template-columns: repeat(2, 1fr); }
    }

    .payments-card {
      background: var(--surface-2);
      padding: 3rem 2.75rem;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--gray-border);
      /* entrance animation start state */
      opacity: 0;
      transform: translateY(22px);
      transition: background .4s ease, opacity .75s cubic-bezier(0.22,1,0.36,1), transform .75s cubic-bezier(0.22,1,0.36,1);
    }

    .payments-card.is-visible { opacity: 1; transform: translateY(0); }

    @media (min-width: 640px) {
      .payments-card { border-bottom: none; border-right: 1px solid var(--gray-border); }
      .payments-card:last-child { border-right: none; }
    }

    /* Left gold sweep on hover */
    .payments-card::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(to bottom, var(--gold-bright), var(--gold));
      transform: scaleY(0);
      transform-origin: top;
      transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .payments-card:hover { background: var(--surface-3); }
    .payments-card:hover::before { transform: scaleY(1); }

    .payments-card-num {
      display: block;
      font-family: var(--font-display);
      font-size: .78rem;
      font-style: italic;
      color: var(--gold);
      opacity: .55;
      letter-spacing: .12em;
      margin-bottom: 1.75rem;
    }

    .payments-card-icon {
      margin-bottom: 1.5rem;
    }

    .payments-card-icon svg {
      width: 28px;
      height: 28px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.25;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 7px rgba(212,168,67,.28));
    }

    .payments-card h3 {
      font-family: var(--font-display);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: .9rem;
      letter-spacing: -.01em;
      line-height: 1.2;
    }

    .payments-card p {
      font-size: .87rem;
      color: var(--gray);
      line-height: 1.88;
      font-weight: 300;
    }

    /* Partnership exclusive banner — editorial centered style */
    .payments-exclusive {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.1rem;
      padding: 4rem 2rem 1rem;
      position: relative;
    }

    .payments-exclusive::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 60px; height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .payments-exclusive-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: .25rem;
    }

    .payments-exclusive-icon svg {
      width: 26px; height: 26px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.25;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 10px rgba(212,168,67,.45));
    }

    .payments-exclusive-text { max-width: 580px; }

    .payments-exclusive-text strong {
      display: block;
      font-family: var(--font-display);
      font-size: clamp(1.05rem, 2vw, 1.45rem);
      font-weight: 400;
      font-style: italic;
      color: var(--white);
      line-height: 1.5;
      margin-bottom: .65rem;
    }

    .payments-exclusive-text span {
      font-size: .82rem;
      color: var(--gray);
      font-weight: 300;
      letter-spacing: .02em;
    }

    .payments-exclusive-cta {
      display: inline-block;
      background: linear-gradient(to bottom, var(--gold-bright), var(--gold));
      border-radius: 8px;
      padding: .85rem 2.25rem;
      font-size: .75rem;
      color: var(--black);
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      margin-top: .4rem;
      transition: filter .3s, transform .3s, box-shadow .3s;
    }

    .payments-exclusive-cta:hover {
      filter: brightness(1.08);
      transform: translateY(-2px);
      box-shadow: 0 14px 40px rgba(212,168,67,.3);
    }

    /* ───────────────────── CTA / Join Section ───────────────────── */
    .cta-section {
      padding: 9rem 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at center, rgba(212,168,67,.08) 0%, transparent 60%);
      pointer-events: none;
    }

    .cta-box {
      position: relative;
      z-index: 1;
      border-radius: 20px;
      padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 4rem);
      max-width: 560px;
      margin: 0 auto;
      background: var(--surface-2);
      box-shadow: 0 0 0 1px var(--border-gold), 0 40px 100px rgba(0,0,0,.6);
    }

    .cta-box .section-heading {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      margin-bottom: .75rem;
    }

    .cta-box > p {
      color: var(--gray);
      max-width: 420px;
      margin: 0 auto 2.5rem;
      font-size: .95rem;
      line-height: 1.8;
      font-weight: 300;
    }

    /* ───────────────────── Affiliate Section ───────────────────── */
    .affiliate {
      padding: 8rem 0;
      border-top: 1px solid transparent;
      border-image: linear-gradient(90deg, transparent, var(--border-gold), transparent) 1;
      position: relative;
      overflow: hidden;
    }

    .affiliate::after {
      content: '';
      position: absolute;
      right: -5%;
      top: 50%;
      transform: translateY(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(212,168,67,.055) 0%, transparent 68%);
      pointer-events: none;
    }

    /* Top row */
    .affiliate-top {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      margin-bottom: 4rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .affiliate-top { grid-template-columns: 1fr 1fr; gap: 5rem; }
    }

    .affiliate-text .section-label { margin-bottom: 1.25rem; }

    .affiliate-text h2 {
      font-family: var(--font-display);
      font-size: clamp(1.9rem, 3vw, 2.8rem);
      font-weight: 400;
      line-height: 1.12;
      color: var(--white);
      margin-bottom: 1.25rem;
    }

    .affiliate-text h2 em { font-style: italic; color: var(--gold); }

    .affiliate-text > p {
      font-size: .9rem;
      color: var(--gray);
      line-height: 1.85;
      font-weight: 300;
    }

    /* Right: Earnings scale panel */
    .affiliate-scale-panel {
      background: var(--surface-2);
      border: 1px solid var(--border-gold);
      border-radius: 16px;
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }

    .affiliate-scale-panel::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }

    .affiliate-scale-label {
      font-size: .65rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gray);
      margin-bottom: 1.75rem;
    }

    .affiliate-tiers {
      display: flex;
      flex-direction: column;
      gap: 1.4rem;
      margin-bottom: 2rem;
    }

    .affiliate-tier { display: flex; flex-direction: column; gap: .55rem; }

    .affiliate-tier-meta {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }

    .affiliate-tier-refs {
      font-size: .82rem;
      font-weight: 500;
      color: var(--white);
    }

    .affiliate-tier-status {
      font-size: .7rem;
      color: var(--gray);
      font-weight: 300;
      letter-spacing: .04em;
    }

    .affiliate-tier-status.gold { color: var(--gold); font-weight: 500; }

    .affiliate-tier-bar {
      height: 3px;
      background: rgba(255,255,255,.06);
      border-radius: 100px;
      overflow: hidden;
    }

    .affiliate-tier-fill {
      height: 100%;
      width: 0;
      border-radius: 100px;
      background: linear-gradient(90deg, rgba(212,168,67,.45), var(--gold));
      transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .affiliate-scale-note {
      font-size: .71rem;
      color: var(--gray);
      font-weight: 300;
      text-align: center;
      margin-top: 1rem;
      letter-spacing: .02em;
    }

    /* Bottom: horizontal steps */
    .affiliate-steps-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      border: 1px solid var(--border-gold);
      border-radius: 16px;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .affiliate-steps-row { grid-template-columns: repeat(4, 1fr); }
    }

    .affiliate-step-cell {
      padding: 2rem 1.75rem;
      background: var(--surface-2);
      border-right: 1px solid var(--gray-border);
      position: relative;
    }

    .affiliate-step-cell:nth-child(even) { background: var(--surface-3); }
    .affiliate-step-cell:last-child { border-right: none; }

    @media (max-width: 767px) {
      .affiliate-step-cell:nth-child(2) { border-right: none; }
      .affiliate-step-cell:nth-child(1),
      .affiliate-step-cell:nth-child(2) { border-bottom: 1px solid var(--gray-border); }
    }

    .affiliate-step-num {
      font-family: var(--font-display);
      font-size: 2.2rem;
      font-weight: 400;
      color: var(--gold);
      line-height: 1;
      margin-bottom: .85rem;
      letter-spacing: -.02em;
    }

    .affiliate-step-content h3 {
      font-family: var(--font-body);
      font-size: .85rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: .35rem;
      line-height: 1.3;
    }

    .affiliate-step-content p {
      font-size: .75rem;
      color: var(--gray);
      line-height: 1.6;
      font-weight: 300;
    }

    /* ───────────────────── Pre-Signup Form ───────────────────── */
    .signup-form {
      max-width: 480px;
      margin: 0 auto;
      text-align: left;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: .4rem;
    }

    .form-group label {
      font-size: .68rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      opacity: .85;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      padding: .9rem 1.1rem;
      background: rgba(255,255,255,.04);
      border: 1px solid var(--gray-border);
      border-radius: 8px;
      color: var(--white);
      font-family: var(--font-body);
      font-size: .9rem;
      font-weight: 300;
      transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
      outline: none;
      -webkit-appearance: none;
      appearance: none;
    }

    .form-group input::placeholder {
      color: rgba(240,235,227,.2);
      font-weight: 300;
    }

    .form-group input:focus,
    .form-group select:focus {
      border-color: var(--gold);
      background: rgba(212,168,67,.04);
      box-shadow: 0 0 0 3px rgba(212,168,67,.1);
    }

    .form-group select {
      cursor: pointer;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A746C' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      background-color: rgba(255,255,255,.04);
      padding-right: 2.5rem;
    }

    .form-group select option {
      background: var(--surface-2);
      color: var(--white);
    }

    .form-checkbox {
      display: flex;
      align-items: flex-start;
      gap: .75rem;
      cursor: pointer;
      margin-top: .4rem;
    }

    .form-checkbox input[type="checkbox"] {
      width: 18px;
      height: 18px;
      min-width: 18px;
      margin-top: 2px;
      -webkit-appearance: none;
      appearance: none;
      background: rgba(255,255,255,.03);
      border: 1px solid var(--gray-border);
      border-radius: 4px;
      cursor: pointer;
      position: relative;
      transition: border-color .3s ease, background .3s ease;
    }

    .form-checkbox input[type="checkbox"]:checked {
      background: var(--gold);
      border-color: var(--gold);
    }

    .form-checkbox input[type="checkbox"]:checked::after {
      content: "";
      position: absolute;
      top: 3px; left: 6px;
      width: 4px; height: 8px;
      border: solid var(--black);
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    .form-checkbox span {
      font-size: .8rem;
      color: var(--gray);
      line-height: 1.6;
      font-weight: 300;
    }

    .signup-form .btn-primary {
      margin-top: .5rem;
      width: 100%;
      text-align: center;
    }

    .form-note {
      font-size: .7rem;
      color: rgba(240,235,227,.2);
      text-align: center;
      margin-top: .3rem;
      letter-spacing: .03em;
    }

    /* ───────────────────── Footer ───────────────────── */
    footer {
      padding: 5rem 0 3rem;
      border-top: 1px solid transparent;
      border-image: linear-gradient(90deg, transparent, var(--border-gold), transparent) 1;
    }

    .footer-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }

    .footer-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .footer-logo img {
      height: auto;
      max-height: 36px;
      max-width: 140px;
      width: auto;
      object-fit: contain;
      opacity: .7;
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .footer-links a {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--gray);
      transition: color .3s ease;
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-bottom {
      text-align: center;
      padding-top: 1.75rem;
      margin-top: 1.25rem;
      border-top: 1px solid var(--gray-border);
    }

    .footer-bottom p {
      font-size: .7rem;
      color: rgba(240,235,227,.18);
      letter-spacing: .06em;
    }

    /* ───────────────────── Scroll Animations ───────────────────── */
    @supports (animation-timeline: view()) {
      .scroll-reveal {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease both;
        animation-timeline: view();
        animation-range: entry 0% entry 35%;
      }

      .session-card {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp .8s ease both;
        animation-timeline: view();
        animation-range: entry 0% entry 30%;
      }
    }

    @supports not (animation-timeline: view()) {
      .scroll-reveal { opacity: 1; transform: none; }
      .session-card  { opacity: 1; transform: none; }
    }


    /* ───────────────────── Light / Professional Theme ───────────────────── */
    .theme-light {
      background: #EDE8DF;
    }

    /* Remove double borders — let the existing section border-tops handle separation */
    .theme-light .job-board,
    .theme-light .transition-section {
      border-top: none;
      border-image: none;
    }

    /* Headings */
    .theme-light .section-heading { color: #0D0B09; }
    .theme-light .section-heading em { color: #B8922A; }

    /* Section label — deeper gold that pops on cream */
    .theme-light .section-label { color: #B8922A; }
    .theme-light .section-label::before { background: #B8922A; }

    /* Body text */
    .theme-light .job-board > .container > p { color: #4A443C; }
    .theme-light .transition-section p { color: #4A443C; }

    /* Job cards on cream — the dark photo cards look like editorial windows */
    .theme-light .job-card { border-color: rgba(13,11,9,.18); }

    /* Mid-CTA inverted for cream bg */
    .theme-light .mid-cta {
      background: rgba(13,11,9,.06);
      border-color: rgba(13,11,9,.14);
    }
    .theme-light .mid-cta p { color: #0D0B09; }
    .theme-light .mid-cta p span { color: #B8922A; }
    .theme-light .mid-cta a {
      background: #0D0B09;
      color: #EDE8DF;
      transition: background .25s, box-shadow .25s;
    }
    .theme-light .mid-cta a:hover {
      background: #2A241E;
      box-shadow: 0 8px 28px rgba(0,0,0,.22);
    }

    /* Image block on cream — grayscale images look striking */
    .theme-light .image-block { border-color: rgba(13,11,9,.12); }
    .theme-light .image-block img { filter: grayscale(100%) brightness(.8); }

    /* Scroll-reveal sections within theme-light — these are fine */

    /* ───────────────────── Selection ───────────────────── */
    ::selection {
      background: rgba(212,168,67,.25);
      color: var(--white);
    }

    /* ───────────────────── Mobile Nav Overlay ───────────────────── */
    .mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(13,11,9,.97);
      backdrop-filter: blur(32px);
      -webkit-backdrop-filter: blur(32px);
      z-index: 998;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      opacity: 0;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity .3s ease, transform .3s ease;
    }

    .mobile-menu.is-open {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0);
    }

    /* Gold top line */
    .mobile-menu::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    }

    /* Subtle gold radial glow from centre */
    .mobile-menu::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 45%, rgba(212,168,67,.06) 0%, transparent 60%);
      pointer-events: none;
    }

    .mobile-menu-link {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 9vw, 2.8rem);
      color: rgba(163,156,147,.6);
      text-decoration: none;
      font-style: italic;
      font-weight: 400;
      padding: .9rem 0;
      width: 78%;
      text-align: center;
      border-bottom: 1px solid rgba(255,255,255,.05);
      transition: color .2s ease;
      letter-spacing: .01em;
      position: relative;
      z-index: 1;
    }

    .mobile-menu-link:last-of-type { border-bottom: none; }
    .mobile-menu-link:hover,
    .mobile-menu-link:active { color: var(--white); }

    .mobile-menu-cta {
      margin-top: 3rem;
      display: inline-block;
      background: linear-gradient(to bottom, var(--gold-bright), var(--gold));
      color: var(--black);
      font-family: var(--font-body);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      padding: .95rem 2.75rem;
      border-radius: 8px;
      position: relative;
      z-index: 1;
    }

    .mobile-menu-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: none;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 8px;
      color: var(--gray);
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1rem;
      transition: border-color .25s, color .25s;
      z-index: 1;
    }

    .mobile-menu-close:hover { border-color: var(--border-gold); color: var(--gold); }

    /* Hamburger → X animation */
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

    /* ───────────────────── Mobile Optimisation ───────────────────── */
    @media (max-width: 767px) {

      /* ── Global spacing ── */
      .ownership, .job-board, .transition-section,
      .uk-launch, .sessions, .payments, .affiliate, .cta-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
      }
      .testimonials-strip { padding: 4rem 0; }
      .container { padding: 0 1.25rem; }

      /* ── Header ── */
      header { padding: .8rem 0; }
      .logo img { height: 40px; }

      /* ── Hero ── */
      .hero {
        min-height: 100svh;
        padding: 0 1.5rem;
        align-items: center;
        justify-content: center;
      }
      /* Stronger overlay for mobile readability */
      .hero::before {
        background: linear-gradient(to bottom,
          rgba(13,11,9,.75) 0%,
          rgba(13,11,9,.42) 40%,
          rgba(13,11,9,.9) 100%);
      }
      .hero::after {
        background: radial-gradient(ellipse at 50% 38%, rgba(212,168,67,.12) 0%, transparent 55%);
      }
      .hero-video { opacity: .2; object-position: 65% center; }

      /* Hero content — reorder: headline → body → chips → CTA → trust */
      .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding-top: 5rem; /* clear the fixed nav */
        padding-bottom: 2.5rem;
      }
      .hero-content .section-label         { order: 0; }
      .hero-content h1                    { order: 1; }
      .hero-content > p:not(.hero-trust):not(.section-label) { order: 2; }
      .hero-chips                         { order: 3; }
      .hero-actions                       { order: 4; }
      .hero-content > p.hero-trust        { order: 5; }

      /* H1 — restore br so lines break intentionally */
      .hero h1 {
        font-size: clamp(2.5rem, 10.5vw, 3.4rem);
        line-height: 1.1;
        margin-bottom: 1.25rem;
        letter-spacing: -.02em;
      }
      /* br stays visible — gives "Your Industry." / "Finally Done Right." */

      /* Paragraph */
      .hero p {
        font-size: .93rem;
        line-height: 1.7;
        max-width: 100%;
        margin-bottom: 0;
        color: rgba(163,156,147,.85);
      }
      .hero-p-extra { display: none; }

      /* Chips — horizontal scroll strip */
      .hero-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        gap: .5rem;
        padding: 0 1.5rem;
        margin: 1.25rem -1.5rem 0;
        -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 90%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0, black 8%, black 90%, transparent 100%);
      }
      .hero-chips::-webkit-scrollbar { display: none; }
      .hero-chip { flex-shrink: 0; font-size: .69rem; padding: .38rem .9rem; gap: .38rem; }
      .hero-chip svg { width: 11px; height: 11px; }

      /* CTA */
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: .75rem;
        margin-top: 1.75rem;
        width: 100%;
      }
      .hero-actions .btn-primary {
        text-align: center;
        padding: 1.1rem 2rem;
        font-size: .8rem;
        width: 100%;
      }
      .hero-actions .btn-secondary { display: none; }

      /* Trust line */
      .hero-trust {
        white-space: normal;
        gap: .4rem;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid var(--gray-border);
        margin-bottom: .25rem;
        font-size: .69rem;
        justify-content: center;
      }
      .hero-trust::before, .hero-trust::after { display: none; }

      /* ── Section headings ── */
      .section-heading { font-size: clamp(1.7rem, 7vw, 2.3rem); line-height: 1.18; }

      /* ── Testimonials — horizontal scroll snap ── */
      .testimonials-header { margin-bottom: 2rem; }
      .testimonials-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 1.25rem 1rem;
        margin-left: -1.25rem;
        margin-right: -1.25rem;
      }
      .testimonials-grid::-webkit-scrollbar { display: none; }
      .testimonial-card {
        min-width: 82vw;
        max-width: 82vw;
        flex-shrink: 0;
        scroll-snap-align: start;
      }
      .testimonial-card blockquote { font-size: .88rem; }

      /* ── Ownership — hide image on mobile ── */
      .ownership-right .image-block { display: none; }
      .ownership-right .ownership-quote {
        border: 1px solid var(--gray-border);
        border-radius: 12px;
        padding: 1.5rem;
      }
      .ownership-features { gap: 1.25rem; }
      .ownership-features p { font-size: .8rem; }

      /* ── Mid-CTA — column layout ── */
      .mid-cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
      }
      .mid-cta a { width: 100%; text-align: center; }

      /* ── Job cards ── */
      .job-card { min-height: 260px; padding: 1.5rem 1.25rem; }
      .job-card h3 { font-size: 1.1rem; }
      .job-card p { font-size: .8rem; }

      /* ── Transition — hide image on mobile ── */
      .transition-inner .image-block { display: none; }
      .transition-inner { gap: 0; }
      .transition-section p { font-size: .92rem; }

      /* ── UK section ── */
      .uk-pillar { padding: 1.75rem 1.5rem; }
      .uk-pillar p { font-size: .84rem; }
      .uk-testimonial { padding: 1.75rem 1.5rem; }
      .uk-testimonial blockquote { font-size: .88rem; }

      /* ── Sessions ── */
      .sessions-header { text-align: left; }
      .sessions-header .section-label { justify-content: flex-start; }
      .sessions .section-heading { margin-left: 0; margin-right: 0; text-align: left; font-size: clamp(1.6rem, 7vw, 2.2rem); }
      .sessions-intro { font-size: .9rem; text-align: left; margin-left: 0; margin-right: 0; }
      .sessions-callout { display: block; width: 100%; text-align: center; }

      /* City rollout */
      .city-item { border-right: none; padding: 1.4rem 1.25rem; }
      .city-num { font-size: 1.2rem; }
      .city-item h4 { font-size: .88rem; }
      .city-item p { font-size: .78rem; }

      /* Global vision */
      .global-vision-text { padding: 3.5rem 1.5rem 2.5rem; }
      .global-vision h3 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
      .global-vision-text > p { font-size: .9rem; }

      /* ── Payments — hide image on mobile ── */
      .payments-image { display: none; }
      .payments-top { grid-template-columns: 1fr; gap: 0; margin-bottom: 2rem; }
      .payments-card { padding: 2.25rem 1.5rem; }
      .payments-card h3 { font-size: 1.15rem; }
      .payments-card p { font-size: .84rem; }
      .payments-intro { font-size: .9rem; }
      .payments-pain { font-size: .84rem; padding: .8rem 1.25rem; }
      .payments-exclusive { padding: 3rem 1.25rem 1rem; align-items: center; }
      .payments-exclusive-cta { width: 100%; text-align: center; }

      /* ── Affiliate ── */
      .affiliate-top { gap: 2rem; margin-bottom: 2.5rem; }
      .affiliate-scale-panel { padding: 2rem 1.5rem; }
      .affiliate-text h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
      .affiliate-step-cell { padding: 1.5rem 1.25rem; }
      .affiliate-step-num { font-size: 1.8rem; margin-bottom: .6rem; }
      .affiliate-step-content h3 { font-size: .82rem; }
      .affiliate-step-content p { font-size: .72rem; }

      /* ── CTA / Form ── */
      .cta-section { padding-bottom: 7rem; } /* space for sticky bar */
      .cta-box { padding: 2.5rem 1.5rem; }
      .cta-box .section-heading { font-size: clamp(1.6rem, 7vw, 2.2rem); }
      .form-group input, .form-group select { font-size: 1rem; padding: 1rem 1.1rem; } /* 1rem avoids iOS zoom */
      .form-group label { font-size: .72rem; }

      /* ── Footer ── */
      .footer-logo img { height: 32px; }
      .footer-links { gap: 1.1rem; }
      footer { padding-bottom: 6rem; } /* space for sticky bar */

      /* ── Sticky bottom CTA (mobile only) ── */
      .mobile-sticky-cta {
        display: flex;
      }
    }

    @media (max-width: 480px) {
      .hero h1 { font-size: clamp(2.3rem, 12vw, 3rem); }
      .hero-chip { font-size: .66rem; padding: .36rem .85rem; }
      .testimonial-card { min-width: 88vw; max-width: 88vw; }
    }

    /* ── Sticky Bottom CTA Bar (mobile only) ── */
    .mobile-sticky-cta {
      display: none; /* shown via mobile media query above */
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 200;
      padding: .85rem 1.25rem calc(.85rem + env(safe-area-inset-bottom));
      background: rgba(13,11,9,.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-top: 1px solid var(--border-gold);
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-sticky-cta.is-hidden {
      transform: translateY(110%);
    }

    .mobile-sticky-cta-text {
      font-size: .72rem;
      color: var(--gray-light);
      font-weight: 300;
      line-height: 1.4;
      flex: 1;
    }

    .mobile-sticky-cta-text strong {
      display: block;
      color: var(--gold);
      font-weight: 600;
      font-size: .75rem;
    }

    .mobile-sticky-cta a {
      flex-shrink: 0;
      display: inline-block;
      padding: .75rem 1.5rem;
      background: linear-gradient(to bottom, var(--gold-bright), var(--gold));
      color: var(--black);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      border-radius: 8px;
      text-decoration: none;
    }

/* ─── Page Heroes ─── */
.page-hero {
  padding: 10rem 1.5rem 5rem;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(ellipse at 50% 20%, rgba(212,168,67,.05) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-hero p {
  font-size: clamp(.9rem, 1.6vw, 1.05rem);
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto;
}

    /* ─── Tool Cards Grid ─── */
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
    }

    @media (max-width: 1024px) {
      .tools-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 640px) {
      .tools-grid { grid-template-columns: 1fr; }
    }

    .tool-card {
      padding: 2rem 1.8rem;
      border: 1px solid var(--gray-border);
      background: var(--surface-1);
      border-radius: 12px;
      transition: border-color .3s, transform .2s, background .3s;
    }

    .tool-card:hover {
      border-color: var(--border-gold);
      transform: translateY(-3px);
      background: rgba(212, 168, 67, .02);
    }

    .tool-icon {
      margin-bottom: 1rem;
      color: var(--gold);
    }

    .tool-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .tool-card h3 {
      font-family: var(--font-body);
      font-size: .9rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: .02em;
      margin-bottom: .5rem;
    }

    .tool-card p {
      font-size: .82rem;
      color: var(--gray-light);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ═══════════════════════════════════════════════════════════
       MOBILE RESPONSIVENESS FIXES
       Only mobile breakpoints. No desktop style changes.
       ═══════════════════════════════════════════════════════════ */

    /* ── Tablet (max-width: 768px) ── */
    @media (max-width: 768px) {

      /* Page heroes (about, features, affiliate) — reduce height and padding */
      .hero[style*="min-height:80vh"] {
        min-height: 60vh !important;
        padding-top: 6rem !important;
        padding-bottom: 3rem !important;
      }

      /* Tool cards — already handled by 640px breakpoint in CSS,
         but ensure 2-col at tablet */
      .tool-card { padding: 1.5rem 1.4rem; }

      /* Payments exclusive banner — stack on tablet */
      .payments-exclusive { padding: 3rem 1.5rem 1rem; }

      /* Join page form padding */
      .join-right .signup-form { padding: 2rem 1.5rem; }

      /* Affiliate steps — ensure 2-col wraps properly */
      .affiliate-steps-row { gap: 0; }

      /* Footer links wrap nicely */
      .footer-links { gap: 1.25rem; }
    }

    /* ── Small phone (max-width: 480px) ── */
    @media (max-width: 480px) {

      /* Container tighter padding */
      .container { padding: 0 1rem; }

      /* Page heroes — even more compact on small phones */
      .hero[style*="min-height:80vh"] {
        min-height: 50vh !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
      }

      /* Section headings — slightly smaller on small phones */
      .section-heading { font-size: clamp(1.5rem, 7vw, 2rem); }

      /* Section labels — ensure they don't overflow */
      .section-label { font-size: .5rem; letter-spacing: .18em; padding: .25rem .6rem; }

      /* Benefits grid (index.html inline) — already 1fr at 640px, reduce padding */
      .benefit-card { padding: 1.5rem 1.25rem; }
      .benefit-card h3 { font-size: .88rem; }
      .benefit-card p { font-size: .82rem; }

      /* Paths grid (index.html inline) — reduce card padding */
      .path-card { padding: 2rem 1.5rem; }
      .path-card h3 { font-size: .92rem; }
      .path-card p { font-size: .82rem; }

      /* Final CTA section (index.html inline) — reduce padding */
      .final-cta-section { padding: 3.5rem 0 !important; }
      .final-cta-inner { padding: 0 .5rem; }

      /* Urgency bar — smaller text on small phones */
      .urgency-bar { font-size: .6rem; padding: .35rem .75rem; gap: .4rem; }

      /* Testimonials — wider on small phones */
      .testimonial-card { padding: 1.75rem 1.25rem; }
      .testimonial-card blockquote { font-size: .84rem; }
      .testimonial-cite span { font-size: .68rem; }

      /* Mid-CTA — tighter padding */
      .mid-cta { padding: 1.5rem 1.25rem; border-radius: 12px; }
      .mid-cta p { font-size: .88rem; }
      .mid-cta a { padding: .75rem 1.5rem; font-size: .72rem; }

      /* Tool cards — single column, tighter */
      .tool-card { padding: 1.25rem 1.1rem; }
      .tool-card h3 { font-size: .85rem; }
      .tool-card p { font-size: .78rem; }

      /* Job cards — reduce min-height */
      .job-card { min-height: 220px; padding: 1.25rem 1rem; }

      /* Ownership section */
      .ownership-quote { padding: 1.25rem; }
      .ownership-quote blockquote { font-size: .88rem; }

      /* UK pillars */
      .uk-pillar { padding: 1.5rem 1.25rem; }
      .uk-pillar h3 { font-size: 1rem; }
      .uk-pillar p { font-size: .82rem; }

      /* UK testimonials */
      .uk-testimonial { padding: 1.5rem 1.25rem; }
      .uk-testimonial blockquote { font-size: .84rem; }

      /* Sessions */
      .sessions-intro { font-size: .86rem; }
      .sessions-callout { padding: .8rem 1.75rem; font-size: .82rem; }

      /* Payments */
      .payments-pain { font-size: .82rem; padding: .75rem 1rem; }
      .payments-exclusive-text strong { font-size: 1rem; }
      .payments-exclusive-text span { font-size: .78rem; }

      /* Affiliate */
      .affiliate-text h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
      .affiliate-scale-panel { padding: 1.75rem 1.25rem; }
      .affiliate-step-cell { padding: 1.25rem 1rem; }
      .affiliate-step-num { font-size: 1.5rem; margin-bottom: .5rem; }
      .affiliate-step-content h3 { font-size: .78rem; }
      .affiliate-step-content p { font-size: .68rem; }

      /* Join page */
      .join-layout { padding: 6rem 1rem 3rem !important; }
      .join-wrap { gap: 2rem !important; }
      .join-left h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
      .join-left > p { font-size: .88rem; }
      .join-benefits li { font-size: .82rem; }
      .join-testimonial blockquote { font-size: .82rem; }
      .join-right .signup-form { padding: 1.75rem 1.25rem; }
      .join-right .form-heading { font-size: 1.1rem; }
      .join-proof { font-size: .65rem; }
      .join-urgency { font-size: .65rem; }

      /* Footer — tighter on small phones */
      footer { padding: 3.5rem 0 2.5rem; padding-bottom: 5.5rem; }
      .footer-logo img { height: 28px; }
      .footer-links { gap: .85rem; flex-direction: column; align-items: center; }
      .footer-links a { font-size: .68rem; }
      .footer-bottom p { font-size: .62rem; }

      /* Sticky CTA bar — handle very small screens */
      .mobile-sticky-cta { padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom)); gap: .75rem; }
      .mobile-sticky-cta-text { font-size: .65rem; }
      .mobile-sticky-cta-text strong { font-size: .68rem; }
      .mobile-sticky-cta a { padding: .65rem 1.1rem; font-size: .65rem; letter-spacing: .08em; }

      /* CTA box */
      .cta-box { padding: 2rem 1.25rem; border-radius: 16px; }
      .cta-box .section-heading { font-size: clamp(1.4rem, 7vw, 2rem); }
      .cta-box > p { font-size: .88rem; }

      /* Buttons — ensure full width on small phones */
      .btn-primary { padding: .9rem 2rem; font-size: .72rem; }
      .btn-secondary { padding: .9rem 2rem; font-size: .72rem; }

      /* Hero inline form (index.html) */
      .hero-inline-form { max-width: 100%; }
      .hero-inline-form input { min-width: 100%; }
      .hero-inline-form button { width: 100%; }
    }

    /* ── Prevent horizontal overflow globally on mobile ── */
    @media (max-width: 768px) {
      html, body { overflow-x: hidden; }
      main { overflow-x: hidden; }

      /* Ensure all images scale properly */
      img { max-width: 100%; height: auto; }

      /* Prevent any element from causing horizontal scroll */
      .container, .container-wide { max-width: 100vw; overflow-x: hidden; }
    }
