    /* ─── Reset ─────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    /* ─── Tokens ─────────────────────────────── */
    :root {
      --cream:      #FEFCF8;
      --cream-2:    #F5EDE1;
      --cream-3:    #EBE1D3;
      --ink:        #2A2118;
      --ink-2:      #5C5347;
      --ink-3:      #8A8075;
      --gold:       #C9A96E;
      --gold-2:     #D9BC84;
      --gold-dark:  #B8944F;
      --border:     rgba(42, 33, 24, 0.10);
      --border-2:   rgba(42, 33, 24, 0.06);
      --nav-h:      72px;
      --section-py: clamp(80px, 12vw, 120px);
    }

    /* ─── Base ───────────────────────────────── */
    body.gdj-landing {
      background: var(--cream);
      color: var(--ink);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* ─── Typography Scale ───────────────────── */
    h1 { font-size: clamp(42px, 8vw, 72px); }
    h2 { font-size: clamp(32px, 5vw, 48px); }
    h3 { font-size: clamp(20px, 3vw, 24px); }

    /* ─── Logo ───────────────────────────────── */
    .logo {
      font-family: 'AustinDeck', 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-size: 36px;
      letter-spacing: 0.01em;
      text-decoration: none;
      color: var(--cream);
      line-height: 1;
      white-space: nowrap;
      display: inline-block;
      min-width: 160px;
    }
    .logo .du { color: var(--gold); }

    /* ─── Nav ────────────────────────────────── */
    nav.gdj-landing-nav {
      position: fixed;
      inset: 0 0 auto 0;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(24px, 5vw, 52px);
      z-index: 100;
      background: var(--ink);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 36px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-links a {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(254, 252, 248, 0.65);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--gold);
      border: none;
      padding: 8px 20px;
      border-radius: 999px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .nav-cta:hover { background: var(--gold-2); transform: translateY(-1px); }

    /* ─── Hero ───────────────────────────────── */
    .hero {
      min-height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: calc(var(--nav-h) + 20px) clamp(20px, 5vw, 40px) 40px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg,
        #E8DFD3 0%,
        #F2EBE1 20%,
        #FAF7F2 50%,
        var(--cream) 100%
      );
    }

    /* Subtle ring */
    .hero::after {
      content: '';
      position: absolute;
      width: min(560px, 90vw); height: min(560px, 90vw);
      border-radius: 50%;
      border: 1px solid rgba(201, 169, 110, 0.12);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-dark);
      background: rgba(201, 169, 110, 0.12);
      border: 1px solid rgba(201, 169, 110, 0.25);
      padding: 10px 20px;
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      font-family: 'AustinHeadline', 'Canela', Georgia, serif;
      font-weight: 300;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--ink);
      max-width: 800px;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--ink);
    }

    .hero-sub {
      font-size: clamp(16px, 2.5vw, 19px);
      font-weight: 400;
      color: var(--ink-3);
      max-width: 480px;
      line-height: 1.45;
      margin-bottom: 40px;
      position: relative;
      z-index: 1;
    }

    /* ─── Inline capture form ─── */
    .hero-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
      max-width: 400px;
      margin: 0 auto 16px;
      position: relative;
      z-index: 1;
    }

    .hero-form input {
      width: 100%;
      background: var(--cream);
      border: 1px solid rgba(42, 33, 24, 0.12);
      color: var(--ink);
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 400;
      padding: 14px 18px;
      outline: none;
      transition: border-color 0.2s ease;
      -webkit-appearance: none;
      border-radius: 6px;
    }
    .hero-form input::placeholder { color: rgba(42, 33, 24, 0.5); }
    .hero-form input:focus { border-color: var(--gold); }

    .hero-form .checkbox-wrap {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      background: var(--cream);
      border: 1px solid rgba(42, 33, 24, 0.12);
      border-radius: 6px;
      padding: 14px 18px;
      cursor: pointer;
    }
    .hero-form .checkbox-wrap input[type="checkbox"] {
      width: 18px;
      height: 18px;
      margin: 2px 0 0 0;
      padding: 0;
      flex-shrink: 0;
      accent-color: var(--gold);
      cursor: pointer;
      pointer-events: auto;
      -webkit-appearance: checkbox;
      appearance: checkbox;
    }
    .hero-form .checkbox-label {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      color: var(--ink);
      line-height: 1.4;
    }
    .hero-form .checkbox-label .highlight {
      color: var(--gold-dark);
      font-weight: 500;
    }

    .hero-form button {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--gold);
      border: none;
      padding: 14px 24px;
      border-radius: 100px;
      cursor: pointer;
      width: 100%;
      transition: all 0.2s ease;
    }
    .hero-form button:hover:not(:disabled) { background: var(--gold-2); }
    .hero-form button:disabled { opacity: 0.55; cursor: not-allowed; }

    .hero-proof {
      font-size: 13px;
      color: var(--ink-3);
      letter-spacing: 0.02em;
      position: relative;
      z-index: 1;
      margin-bottom: 32px;
    }
    .hero-proof strong {
      color: var(--ink-2);
      font-weight: 600;
    }
    #memberCount {
      display: inline-block;
      min-width: 28px;
      font-variant-numeric: tabular-nums;
    }

    .hero-testimonial-wrap {
      display: block;
      max-width: 520px;
      margin: 36px auto 0;
      position: relative;
      z-index: 2;
    }
    .testimonial-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center 20%;
      border: 2px solid var(--gold);
      flex-shrink: 0;
    }
    .hero-testimonial {
      font-family: 'AustinHeadline', 'Canela', Georgia, serif;
      font-size: 17px;
      font-style: italic;
      color: rgba(254,252,248,0.85);
      line-height: 1.55;
      text-align: left;
    }
    .hero-testimonial cite {
      display: block;
      margin-top: 8px;
      font-family: 'Inter', sans-serif;
      font-style: normal;
      font-size: 12px;
      font-weight: 500;
      color: var(--ink-3);
      letter-spacing: 0.02em;
    }

    .form-error {
      font-size: 13px;
      color: #C0544A;
      margin-top: 10px;
      display: none;
      position: relative;
      z-index: 1;
    }

    .form-success-wrap {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      position: relative;
      z-index: 1;
    }
    .form-success-wrap .tick {
      width: 52px; height: 52px;
      border: 2px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 22px;
      margin-bottom: 4px;
    }
    .form-success-wrap h3 {
      font-family: 'Canela', 'Cormorant Garamond', Georgia, serif;
      font-size: 28px;
      font-weight: 500;
      color: var(--ink);
    }
    .form-success-wrap p {
      font-size: 14px;
      color: var(--ink-2);
    }

    /* ─── Features Section (darker cream) ───── */
    .features-section {
      background: var(--cream-2);
    }
    .features-inner {
      max-width: 1000px;
      margin: 0 auto;
      padding: var(--section-py) clamp(24px, 5vw, 52px);
    }
    .section-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .section-label::before {
      content: '';
      width: 32px; height: 2px;
      background: var(--gold);
    }
    .features-headline {
      font-family: 'Canela', 'Cormorant Garamond', Georgia, serif;
      font-size: clamp(28px, 4.5vw, 42px);
      font-weight: 400;
      line-height: 1.2;
      color: var(--ink);
      max-width: 560px;
      margin-bottom: 56px;
    }
    .feature-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
    }
    .feature-card {
      background: var(--cream-2);
      padding: 36px 32px;
      border: 1px solid var(--border);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(42, 33, 24, 0.08);
    }
    .feature-icon-wrap {
      width: 56px; height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      background: rgba(201, 169, 110, 0.12);
      border-radius: 50%;
      margin-bottom: 20px;
    }
    .feature-card h3 {
      font-family: 'Canela', 'Cormorant Garamond', Georgia, serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 12px;
    }
    .feature-card p {
      font-size: 14px;
      color: var(--ink-2);
      line-height: 1.7;
    }

    /* ─── How it works ───────────────────────── */
    .how {
      background: var(--cream);
      padding: var(--section-py) clamp(24px, 5vw, 52px);
    }
    .how-inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
      margin-top: 48px;
    }
    .step-num {
      font-family: 'Canela', 'Cormorant Garamond', Georgia, serif;
      font-size: 48px;
      font-weight: 400;
      color: var(--gold);
      opacity: 0.4;
      line-height: 1;
      margin-bottom: 16px;
    }
    .step-title {
      font-family: 'Canela', 'Cormorant Garamond', Georgia, serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 12px;
    }
    .step-body {
      font-size: 14px;
      color: var(--ink-2);
      line-height: 1.7;
    }

    /* ─── CTA Section ───────────────────────── */
    .cta-section {
      background: var(--cream-2);
      padding: var(--section-py) clamp(24px, 5vw, 52px);
      text-align: center;
    }
    .cta-section h2 {
      font-family: 'Canela', 'Cormorant Garamond', Georgia, serif;
      font-weight: 400;
      font-style: italic;
      color: var(--ink);
      max-width: 600px;
      margin: 0 auto 20px;
      line-height: 1.2;
    }
    .cta-section p {
      font-size: 15px;
      color: var(--ink-2);
      max-width: 440px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .cta-btn {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink);
      background: var(--gold);
      border: 2px solid var(--gold);
      padding: 8px 20px;
      text-decoration: none;
      display: inline-block;
      transition: all 0.2s ease;
      cursor: pointer;
      border-radius: 100px;
    }
    .cta-btn:hover { background: var(--gold-2); transform: translateY(-2px); }

    /* ─── Footer ─────────────────────────────── */
    footer {
      background: var(--ink);
      padding: 56px clamp(24px, 5vw, 52px);
    }
    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
    }
    .footer-brand .logo {
      display: block;
      margin-bottom: 16px;
    }
    .footer-meta {
      font-size: 12px;
      color: rgba(254, 252, 248, 0.4);
      line-height: 1.9;
    }
    .footer-meta a {
      color: rgba(254, 252, 248, 0.4);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-meta a:hover { color: rgba(254, 252, 248, 0.7); }

    .footer-right {
      display: flex;
      gap: 48px;
    }
    .footer-col h4 {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(254, 252, 248, 0.6);
      margin-bottom: 16px;
    }
    .footer-col a {
      display: block;
      font-size: 13px;
      color: rgba(254, 252, 248, 0.5);
      text-decoration: none;
      margin-bottom: 10px;
      transition: color 0.2s;
    }
    .footer-col a:hover { color: var(--gold); }

    .social-links {
      display: flex;
      gap: 16px;
      margin-top: 20px;
    }
    .social-links a {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(254, 252, 248, 0.08);
      border-radius: 50%;
      color: rgba(254, 252, 248, 0.5);
      text-decoration: none;
      font-size: 14px;
      transition: all 0.2s;
    }
    .social-links a:hover {
      background: var(--gold);
      color: var(--ink);
    }

    /* ── Gift Grid (floating background icons) ── */
    .gift-grid {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 0;
    }
    .gc {
      position: absolute;
      font-size: 32px;
      opacity: 0;
      animation: gPulse var(--d, 5s) var(--dl, 0s) infinite ease-in-out;
      filter: grayscale(30%);
      user-select: none;
    }
    @keyframes gPulse {
      0%,100% { opacity: 0; transform: scale(0.92); }
      45%,55% { opacity: calc(var(--op, 0.055) * 1.8); transform: scale(1); }
    }

    /* ── Testimonial Grid Section ── */
    .testimonials-section {
      background: var(--cream);
      padding: 64px clamp(24px, 5vw, 52px);
    }
    .testimonials-heading {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-size: clamp(32px, 5vw, 44px);
      color: var(--ink);
      text-align: center;
      margin-bottom: 48px;
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .testimonial-card {
      background: #fff;
      border: 1px solid rgba(42, 33, 24, 0.12);
      border-radius: 4px;
      padding: 32px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .testimonial-card.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .testimonial-stars {
      color: var(--gold-dark);
      font-size: 18px;
      margin-bottom: 16px;
      letter-spacing: 2px;
    }
    .testimonial-quote {
      font-family: 'AustinHeadline', Georgia, serif;
      font-style: italic;
      font-size: clamp(17px, 2.1vw, 19px);
      color: var(--ink);
      line-height: 1.65;
      margin-bottom: 20px;
    }
    .testimonial-author {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--ink);
    }
    .testimonial-meta {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: var(--ink-3);
      margin-top: 4px;
    }
    @media (max-width: 800px) {
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 550px) {
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
    }
    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      object-fit: cover;
      object-position: center 10%;
      flex-shrink: 0;
      border: 2px solid rgba(201,169,110,0.3);
    }
    .testimonial-avatar-initials {
      color: #C9A96E !important;
      background: rgba(201,169,110,0.15) !important;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(201,169,110,0.15);
      border: 2px solid rgba(201,169,110,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--gold);
      flex-shrink: 0;
    }
    .testimonial-content blockquote {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-style: italic;
      font-size: clamp(17px, 2.1vw, 19px);
      color: var(--ink);
      line-height: 1.55;
      margin: 0 0 4px;
    }
    .testimonial-content cite {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      color: var(--ink-2);
      font-style: normal;
      letter-spacing: 0.06em;
    }
    .testimonial-dots {
      display: none;
      justify-content: center;
      gap: 6px;
      margin-top: 12px;
    }
    .testimonial-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(201,169,110,0.3);
      transition: background 0.3s;
      cursor: pointer;
    }
    .testimonial-dot.active {
      background: var(--gold);
    }

    /* ─── Animations ─────────────────────────── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-in.show { opacity: 1; transform: translateY(0); }

    /* ─── Responsive ─────────────────────────── */

    /* ─── Mobile Kebab Nav ───────────────────── */
    .kebab-btn {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 201;
    }
    .kebab-btn span {
      display: block;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: rgba(254,252,248,0.9) !important;
      transition: background 0.2s ease;
    }
    .kebab-btn:hover span { background: var(--gold); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0;
      right: 0;
      background: #1A1510 !important;
      border-top: 1px solid rgba(254,252,248,0.08);
      padding: 24px clamp(24px, 5vw, 52px) 32px;
      z-index: 199;
      flex-direction: column;
      gap: 0;
      transform: translateY(-8px);
      opacity: 0;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .mobile-menu.open {
      display: flex;
      opacity: 1;
      transform: translateY(0);
    }
    .mobile-menu a {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-size: 28px;
      color: rgba(254,252,248,0.88) !important;
      text-decoration: none;
      padding: 14px 0;
      border-bottom: 1px solid rgba(254,252,248,0.06);
      transition: color 0.2s ease;
      letter-spacing: 0.01em;
    }
    .mobile-menu a:last-child { border-bottom: none; }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu .mobile-cta {
      margin-top: 24px;
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink) !important;
      background: var(--gold);
      text-align: center;
      padding: 16px;
      border-bottom: none !important;
    }
    .mobile-menu .mobile-cta:hover { background: var(--gold-2); color: var(--ink) !important; }


    /* ─── Cookie Notice ──────────────────────── */
    .cookie-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: #1A1510 !important;
      border-top: 1px solid rgba(201,169,110,0.2);
      padding: 16px clamp(24px, 5vw, 52px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }
    .cookie-bar.visible { transform: translateY(0); }
    .cookie-bar p {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      color: rgba(254,252,248,0.8) !important;
      line-height: 1.5;
      margin: 0;
      flex: 1;
      min-width: 200px;
    }
    .cookie-bar p a {
      color: var(--gold);
      text-decoration: underline;
    }
    .cookie-bar p a:hover { color: var(--gold-2); }
    .cookie-bar-actions {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
    }
    .cookie-accept {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #1A1510 !important;
      background: #C9A96E !important;
      border: none;
      padding: 7px 18px;
      border-radius: 999px;
      cursor: pointer;
      transition: background 0.2s ease;
      white-space: nowrap;
    }
    .cookie-accept:hover { background: #D9BC84 !important; }
    .cookie-decline {
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: rgba(254,252,248,0.5) !important;
      background: none;
      border: none;
      padding: 10px 4px;
      cursor: pointer;
      text-decoration: underline;
      transition: color 0.2s ease;
    }
    .cookie-decline:hover { color: rgba(254,252,248,0.8) !important; }
    /* Tight split-screen previews are often 700–900px wide; 800px hid CTA + duped “mobile” with subpage CSS */
    @media (max-width: 640px) {
      nav.gdj-landing-nav .kebab-btn { display: flex; }
      nav.gdj-landing-nav .nav-cta { display: none; }
      nav.gdj-landing-nav .nav-links { display: none; }
    }
    @media (max-width: 800px) {
      .steps { grid-template-columns: 1fr; gap: 40px; }
      .footer-right { flex-direction: column; gap: 32px; }
    }

    @media (max-width: 600px) {
      nav.gdj-landing-nav { height: 64px; }
      .hero { padding-top: calc(64px + 40px); }
      .hero-form {
        flex-direction: column;
        box-shadow: none;
        gap: 12px;
      }
      .hero-form input {
        max-width: 100% !important;
        border: 2px solid rgba(42, 33, 24, 0.15) !important;
        border-radius: 0;
      }
      .hero-form input:focus { border-color: var(--gold) !important; }
      .hero-form button {
        width: 100%;
        padding: 16px;
      }
      .footer-inner { flex-direction: column; }
    }

    /* iOS input zoom prevention */
    @supports (-webkit-touch-callout: none) {
      .hero-form input { font-size: 16px; }
    }

    /* ── Dark Mode ─────────────────────────────────── */
    @media (prefers-color-scheme: dark) {
      :root {
        --cream:      #1E1A14;
        --cream-2:    #252018;
        --cream-3:    #2E2820;
        --ink:        #F0EBE0;
        --ink-2:      rgba(240,235,224,0.75);
        --gold:       #C9A96E;
        --gold-2:     #E8C988;
        --gold-dark:  #C9A96E;
        --border:     rgba(240,235,224,0.12);
      }
      body { background-color: var(--cream); color: var(--ink); }
      /* Fix hero - override hardcoded gradient */
      .hero {
        background: linear-gradient(180deg,
          #16120E 0%,
          #1A1610 20%,
          #1E1A14 50%,
          var(--cream) 100%
        ) !important;
      }
      /* Hero text must be light */
      .hero h1, .hero h1 em { color: #F0EBE0 !important; }
      .hero-sub { color: rgba(240,235,224,0.8) !important; }
      .hero-eyebrow { color: var(--gold) !important; }
      /* Logo */
      .logo { color: #F0EBE0 !important; }
      .logo .du { color: var(--gold) !important; }
      /* Nav */
      .nav, nav { background: rgba(22,18,14,0.97) !important; border-color: rgba(240,235,224,0.08) !important; }
      /* Features */
      .feature-card { background: var(--cream-2) !important; border-color: rgba(240,235,224,0.08) !important; }
      .features-section { background: var(--cream-3) !important; }
      /* How it works */
      .how { background: var(--cream) !important; }
      /* CTA section */
      .cta-section { background: var(--cream-2) !important; }
      /* Footer */
      footer, .footer-dark { background: #0D0B09 !important; color: rgba(240,235,224,0.7) !important; }
      .footer-links a, .footer-nav a { color: rgba(240,235,224,0.6) !important; }
      .footer-copy { color: rgba(240,235,224,0.4) !important; }
      /* Form inputs */
      .hero-form input { background: rgba(255,255,255,0.06) !important; color: #F0EBE0 !important; border-color: rgba(240,235,224,0.15) !important; }
      .hero-form input::placeholder { color: rgba(240,235,224,0.35) !important; }
      /* Form success */
      .form-success-wrap h3, .form-success-wrap p { color: #F0EBE0 !important; }
      img { opacity: 0.88; }
    }

    /* ── Platform Section ── */

    /* ── FAQ Section ── */
    .faq-section {
      background: #F5EDE3;
      padding: 64px clamp(24px, 5vw, 52px);
    }
    .faq-wrap {
      max-width: 760px;
      margin: 0 auto;
    }
    .faq-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .faq-header h2 {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-size: clamp(32px, 5vw, 44px);
      color: var(--ink);
    }
    .faq-item {
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(42, 33, 24, 0.1);
      padding-bottom: 20px;
    }
    .faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    .faq-question {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--ink);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .faq-question::after {
      content: '+';
      font-size: 20px;
      color: var(--gold);
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }
    .faq-item.open .faq-question::after {
      transform: rotate(45deg);
    }
    .faq-answer {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: var(--ink-2);
      line-height: 1.7;
      margin-top: 16px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .faq-item.open .faq-answer {
      max-height: 500px;
    }

    /* ── Stats Section ── */
    .stats-section {
      background: var(--cream);
      padding: 48px clamp(24px, 5vw, 52px);
      border-bottom: 1px solid rgba(42, 33, 24, 0.08);
    }
    .stats-inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 32px;
    }
    .stat-item {
      text-align: center;
    }
    .stat-number {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-size: clamp(32px, 5vw, 42px);
      color: var(--gold-dark);
      line-height: 1.1;
    }
    .stat-number .star {
      font-size: 0.7em;
      margin-left: 4px;
    }
    .stat-label {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      color: var(--ink-3);
      margin-top: 8px;
    }
    @media (max-width: 600px) {
      .stats-inner {
        flex-direction: column;
        gap: 28px;
      }
    }

    .platform-section {
      background: #f0e9db;
      padding: var(--section-py) clamp(24px, 5vw, 52px);
      border-top: 1px solid rgba(110,75,58,0.12);
      border-bottom: 1px solid rgba(110,75,58,0.12);
    }
    .platform-inner {
      max-width: 1000px;
      margin: 0 auto;
    }
    .platform-eyebrow {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: #6e4b3a;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .platform-eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: #6e4b3a;
      opacity: 0.5;
    }
    .platform-headline {
      font-family: 'Cormorant Garamond', 'AustinHeadline', Georgia, serif;
      font-size: clamp(26px, 4vw, 38px);
      font-weight: 400;
      line-height: 1.2;
      color: #241915;
      max-width: 520px;
      margin-bottom: 52px;
    }
    .platform-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .platform-card {
      background: #ede5d8;
      padding: 36px 28px 32px;
      border: 1px solid rgba(110,75,58,0.1);
      border-radius: 16px;
      transition: background 0.2s ease, transform 0.2s ease;
    }
    .platform-card:hover {
      background: #e8dece;
      transform: translateY(-2px);
    }
    .platform-icon-wrap {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(110,75,58,0.1);
      border: 1px solid rgba(110,75,58,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #6e4b3a;
      margin-bottom: 20px;
    }
    .platform-card-title {
      font-family: 'AustinHeadline', 'Cormorant Garamond', Georgia, serif;
      font-size: 19px;
      font-weight: 400;
      color: #241915;
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .platform-card-copy {
      font-size: 14px;
      color: #6b5744;
      line-height: 1.7;
    }
    @media (max-width: 700px) {
      .platform-grid { grid-template-columns: 1fr; gap: 2px; }
    }
    /* Dark mode for platform section */
    @media (prefers-color-scheme: dark) {

    /* ── FAQ Section ── */
    .faq-section {
      background: #F5EDE3;
      padding: 64px clamp(24px, 5vw, 52px);
    }
    .faq-wrap {
      max-width: 760px;
      margin: 0 auto;
    }
    .faq-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .faq-header h2 {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-size: clamp(32px, 5vw, 44px);
      color: var(--ink);
    }
    .faq-item {
      margin-bottom: 20px;
      border-bottom: 1px solid rgba(42, 33, 24, 0.1);
      padding-bottom: 20px;
    }
    .faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    .faq-question {
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--ink);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .faq-question::after {
      content: '+';
      font-size: 20px;
      color: var(--gold);
      flex-shrink: 0;
      transition: transform 0.2s ease;
    }
    .faq-item.open .faq-question::after {
      transform: rotate(45deg);
    }
    .faq-answer {
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      color: var(--ink-2);
      line-height: 1.7;
      margin-top: 16px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .faq-item.open .faq-answer {
      max-height: 500px;
    }

    /* ── Stats Section ── */
    .stats-section {
      background: var(--cream);
      padding: 48px clamp(24px, 5vw, 52px);
      border-bottom: 1px solid rgba(42, 33, 24, 0.08);
    }
    .stats-inner {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 32px;
    }
    .stat-item {
      text-align: center;
    }
    .stat-number {
      font-family: 'AustinHeadline', Georgia, serif;
      font-weight: 300;
      font-size: clamp(32px, 5vw, 42px);
      color: var(--gold-dark);
      line-height: 1.1;
    }
    .stat-number .star {
      font-size: 0.7em;
      margin-left: 4px;
    }
    .stat-label {
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      color: var(--ink-3);
      margin-top: 8px;
    }
    @media (max-width: 600px) {
      .stats-inner {
        flex-direction: column;
        gap: 28px;
      }
    }

    .platform-section { background: #1e1710 !important; border-color: rgba(201,169,110,0.1) !important; }
      .platform-card { background: #252018 !important; border-color: rgba(201,169,110,0.08) !important; }
      .platform-card:hover { background: #2d2820 !important; }
      .platform-icon-wrap { background: rgba(201,169,110,0.12) !important; border-color: rgba(201,169,110,0.2) !important; color: #C9A96E !important; }
      .platform-card-title { color: #F0EBE0 !important; }
      .platform-card-copy { color: rgba(240,235,224,0.65) !important; }
      .platform-headline { color: #F0EBE0 !important; }
      .platform-eyebrow { color: #C9A96E !important; }
    }

    /* ── Rounded CTA Button ── */
    .hero-form button, .nav-cta {
      border-radius: 100px !important;
    }

    /* ── Hero testimonial wrap fix ── */
    .hero-testimonial-wrap { display: contents !important; }
