
    /* ── Reset & Variables ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* ── Brand Primary Palette ── */
      --black-sheep:   #000000;
      --silver-mark:   #ADADAD;
      --foxx-core:     #253439;
      --soft-canvas:   #F7F7F3;

      /* ── Brand Secondary Palette ── */
      --aged-ember:      #B08A57;       /* decorative/large-text only — 2.95:1 on canvas */
      --aged-ember-text: #6B4F25;       /* AA text — 7.06:1 on canvas, 7.58:1 on white */
      --aged-ember-light:#C9975A;       /* AA text on dark bg — 4.95:1 on foxx-core */
      --slate-accent:    #3F5157;
      --warm-stone:      #CFCAC3;
      --parchment:       #ECE5D6;       /* Warm cream-gold for mid-tone sections */
      --heritage-taupe:  #8A8076;       /* decorative only */
      --taupe-text:      #5A524A;       /* AA microcopy — 7.66:1 on white, 4.70:1 on warm-stone */

      /* ── Semantic aliases ── */
      --accent:          var(--aged-ember-text);
      --accent-deco:     var(--aged-ember);       /* non-text decorative use only */
      --bg-page:         var(--soft-canvas);
      --bg-card:         #FFFFFF;
      --bg-section:      var(--warm-stone);
      --text-dark:       var(--foxx-core);
      --text-mid:        var(--slate-accent);
      --text-light:      var(--taupe-text);
      --border:          var(--warm-stone);
      --success:         #2A6B4A;

      /* ── Legacy aliases (kept for JS refs) ── */
      --fox-orange:    var(--aged-ember-text);
      --fox-amber:     var(--aged-ember-text);
      --fox-gold:      var(--aged-ember-text);
      --navy:          var(--foxx-core);
      --navy-mid:      var(--slate-accent);
      --cream:         var(--soft-canvas);
      --cream-dark:    var(--warm-stone);
      --white:         #FFFFFF;

      --radius:      14px;
      --radius-lg:   22px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--soft-canvas);
      color: var(--text-dark);
      min-height: 100vh;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── Skip Nav ── */
    .skip-nav {
      position: absolute; top: -100px; left: 16px; z-index: 9999;
      background: var(--fox-orange); color: white; padding: 10px 18px;
      border-radius: 0 0 10px 10px; font-size: 15px; font-weight: 700;
      text-decoration: none; transition: top 0.2s;
    }
    .skip-nav:focus { top: 0; }

    /* ── Focus Rings ── */
    *:focus-visible {
      outline: 3px solid var(--fox-gold) !important;
      outline-offset: 3px !important;
      border-radius: 4px;
    }

    /* ── Background ── */
    .page-bg {
      position: fixed; inset: 0; z-index: 0; overflow: hidden;
      background: linear-gradient(160deg, #EEEEE9 0%, var(--soft-canvas) 40%, #F7F7F3 70%, #E8E8E2 100%);
    }
    .bg-orb {
      position: absolute; border-radius: 50%;
      filter: blur(100px); opacity: 1;
      animation: drift 18s ease-in-out infinite alternate;
    }
    .bg-orb-1 { width: 600px; height: 600px; background: #B08A57; top: -150px; right: -100px; animation-delay: 0s; opacity: 0.07; }
    .bg-orb-2 { width: 400px; height: 400px; background: #253439; bottom: 100px; left: -100px; animation-delay: -6s; opacity: 0.06; }
    .bg-orb-3 { width: 300px; height: 300px; background: #CFCAC3; top: 50%; left: 50%; animation-delay: -12s; opacity: 0.15; }
    @keyframes drift { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,-30px) scale(1.08); } }

    /* ── Layout ── */
    .page-wrap { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; }

    /* ── Nav ── */
    .nav {
      padding: 20px 40px;
      display: flex; align-items: center; gap: 16px;
      background: rgba(247,247,243,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(37,52,57,0.12);
      position: sticky; top: 0; z-index: 100;
    }
    .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .logo-icon {
      width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
      background: var(--foxx-core);
      display: flex; align-items: center; justify-content: center;
    }
    .logo-icon img {
      height: 26px; width: auto; filter: brightness(0) invert(1);
      object-fit: contain;
    }
    .logo-icon svg { display: none; }
    .logo-icon img[src=""] ~ svg,
    .logo-icon:not(:has(img)) svg { display: block; }
    .logo-text {
      font-family: 'DM Serif Display', serif;
      font-size: 22px; font-weight: 400;
      color: var(--foxx-core); letter-spacing: -0.01em;
    }
    .logo-text span { color: var(--aged-ember-text); }
    .nav-tagline {
      margin-left: auto; font-size: 14px; color: var(--text-light);
      font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase;
    }

    /* ── Hero ── */
    .hero {
      flex: 1; display: flex; align-items: center;
      padding: 40px 40px 80px;
      max-width: 1180px; margin: 0 auto; width: 100%;
      gap: 64px;
    }

    .hero-left { flex: 1; min-width: 0; }

    .launch-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(37,52,57,0.07); border: 1.5px solid rgba(37,52,57,0.2);
      border-radius: 100px; padding: 7px 16px; margin-bottom: 28px;
      font-size: 13px; font-weight: 600; color: var(--aged-ember-text);
      letter-spacing: 0.04em; text-transform: uppercase;
      animation: fadeInDown 0.6s ease both;
    }
    .launch-pill .dot {
      width: 8px; height: 8px; border-radius: 50%; background: var(--aged-ember);
      animation: pulse-dot 2s ease infinite;
    }
    @keyframes pulse-dot {
      0%,100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(0.75); }
    }

    .hero-headline {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(36px, 5vw, 62px);
      font-weight: 400; line-height: 1.12;
      color: var(--foxx-core); margin-bottom: 24px;
      animation: fadeInUp 0.7s ease 0.1s both;
    }
    .hero-headline .accent { color: var(--aged-ember-text); font-style: italic; }

    .hero-sub {
      font-size: 18px; color: var(--text-mid);
      line-height: 1.75; margin-bottom: 36px; max-width: 520px;
      animation: fadeInUp 0.7s ease 0.2s both;
    }

    /* Countdown */
    .countdown {
      display: flex; gap: 16px; margin-bottom: 40px;
      animation: fadeInUp 0.7s ease 0.3s both;
    }
    .cd-unit {
      text-align: center;
      background: var(--white);
      border: 1.5px solid rgba(37,52,57,0.15);
      border-radius: var(--radius); padding: 14px 18px; min-width: 72px;
      box-shadow: 0 2px 12px rgba(37,52,57,0.06);
    }
    .cd-num {
      font-family: 'DM Serif Display', serif;
      font-size: 32px; font-weight: 400; color: var(--foxx-core);
      line-height: 1; display: block;
    }
    .cd-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; display: block; }

    /* Stats */
    .hero-stats {
      display: flex; gap: 28px; flex-wrap: wrap;
      animation: fadeInUp 0.7s ease 0.4s both;
    }
    .hstat { }
    .hstat-num {
      font-family: 'DM Serif Display', serif;
      font-size: 26px; font-weight: 400; color: var(--aged-ember-text);
      display: block;
    }
    .hstat-label { font-size: 13px; color: var(--text-mid); }

    /* Separator */
    .hero-sep { width: 1px; background: rgba(37,52,57,0.12); align-self: stretch; flex-shrink: 0; }

    /* ── Form Card ── */
    .form-card {
      width: 440px; flex-shrink: 0;
      background: var(--white);
      border: 1.5px solid rgba(37,52,57,0.12);
      border-radius: var(--radius-lg); padding: 36px;
      animation: fadeInUp 0.7s ease 0.2s both;
      box-shadow: 0 8px 48px rgba(37,52,57,0.10), 0 2px 16px rgba(37,52,57,0.05);
    }
    .form-card-header { margin-bottom: 28px; }
    .form-card-header h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 24px; font-weight: 400; color: var(--foxx-core); margin-bottom: 6px;
    }
    .form-card-header p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

    /* Form fields */
    .field { margin-bottom: 18px; }
    .field label {
      display: block; font-size: 14px; font-weight: 600;
      color: var(--text-dark); margin-bottom: 7px;
    }
    .field label .optional {
      font-weight: 400; font-size: 12px; color: rgba(255,255,255,0.35); margin-left: 4px;
    }
    .field input, .field select {
      width: 100%; padding: 13px 16px;
      background: var(--soft-canvas);
      border: 1.5px solid var(--border);
      border-radius: var(--radius); color: var(--text-dark);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px; outline: none;
      transition: border-color 0.2s, background 0.2s;
      -webkit-appearance: none;
    }
    .field input::placeholder { color: var(--text-light); }
    .field input:focus, .field select:focus {
      border-color: var(--foxx-core);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(37,52,57,0.10);
    }
    .field select option { background: var(--white); color: var(--text-dark); }

    /* Role selector — custom pills */
    .role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .role-pill {
      padding: 11px 14px; border-radius: 10px;
      border: 1.5px solid var(--border);
      background: var(--soft-canvas);
      color: var(--text-mid); font-size: 14px; font-weight: 500;
      cursor: pointer; transition: all 0.2s; text-align: center;
      min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 6px;
      user-select: none;
    }
    .role-pill:hover { border-color: var(--foxx-core); color: var(--foxx-core); background: rgba(37,52,57,0.06); }
    .role-pill.selected {
      border-color: var(--foxx-core); background: rgba(37,52,57,0.08);
      color: var(--foxx-core); font-weight: 600;
    }
    .role-pill .ricon { font-size: 16px; }

    /* Submit */
    /* ── Flowing gold-gradient animation for primary CTAs ── */
    @keyframes ctaGoldFlow {
      from { background-position: 0% 50%; }
      to   { background-position: 200% 50%; }
    }
    @keyframes ctaGoldFlowDual {
      from { background-position: 0% 0%, 0% 50%; }
      to   { background-position: 0% 0%, 200% 50%; }
    }
    /* Glistening shine sweep that passes across each CTA periodically */
    @keyframes ctaGlisten {
      0%, 30% {
        transform: skewX(-22deg) translateX(-250%);
        opacity: 0;
      }
      40% {
        transform: skewX(-22deg) translateX(-120%);
        opacity: 1;
      }
      65% {
        transform: skewX(-22deg) translateX(220%);
        opacity: 1;
      }
      78%, 100% {
        transform: skewX(-22deg) translateX(450%);
        opacity: 0;
      }
    }
    .whynow-cta-btn-inner {
      position: relative;
      overflow: hidden;
    }
    .whynow-cta-btn-inner::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 50%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.42), rgba(247,247,243,0.58), rgba(255,255,255,0.42), transparent);
      transform: skewX(-22deg) translateX(-250%);
      pointer-events: none;
      animation: ctaGlisten 4.2s ease-in-out infinite;
      animation-delay: 1.4s;
    }
    .final-cta-btn {
      position: relative;
      overflow: hidden;
    }
    .final-cta-btn::after {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 50%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.40), rgba(247,247,243,0.55), rgba(255,255,255,0.40), transparent);
      transform: skewX(-22deg) translateX(-250%);
      pointer-events: none;
      animation: ctaGlisten 4.2s ease-in-out infinite;
      animation-delay: 2.8s;
    }
    @media (prefers-reduced-motion: reduce) {
      .submit-btn, .final-cta-btn, .whynow-cta-btn { animation: none !important; }
      .submit-btn .btn-shine,
      .whynow-cta-btn-inner::after,
      .final-cta-btn::after { animation: none !important; opacity: 0; }
    }

    .submit-btn {
      width: 100%; padding: 16px;
      background:
        linear-gradient(var(--slate-accent), var(--slate-accent)) padding-box,
        linear-gradient(135deg,
          var(--aged-ember-light) 0%,
          var(--aged-ember) 20%,
          var(--aged-ember-light) 40%,
          var(--aged-ember) 60%,
          var(--aged-ember-light) 80%,
          var(--aged-ember) 100%) border-box;
      background-size: 100% 100%, 250% 100%;
      animation: ctaGoldFlowDual 3.5s linear infinite;
      border: 3px solid transparent;
      border-radius: var(--radius);
      color: var(--soft-canvas); font-family: 'DM Sans', sans-serif;
      font-size: 16px; font-weight: 700; cursor: pointer;
      margin-top: 24px; min-height: 56px;
      transition: transform 0.2s ease, box-shadow 0.25s ease;
      letter-spacing: 0.02em;
      box-shadow: 0 8px 28px rgba(176,138,87,0.30), 0 2px 8px rgba(0,0,0,0.18);
      position: relative; overflow: hidden;
    }
    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(176,138,87,0.40), 0 4px 12px rgba(0,0,0,0.22);
    }
    .submit-btn:active { transform: translateY(0); }
    .submit-btn .btn-shine {
      position: absolute;
      top: 0; left: 0;
      width: 50%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.40), rgba(247,247,243,0.55), rgba(255,255,255,0.40), transparent);
      transform: skewX(-22deg) translateX(-250%);
      pointer-events: none;
      animation: ctaGlisten 4.2s ease-in-out infinite;
      animation-delay: 0s;
    }

    /* ── Final-call rectangular CTA (gold border + slate inner) ── */
    .final-cta-btn {
      display: inline-block;
      padding: 16px 38px;
      background:
        linear-gradient(var(--slate-accent), var(--slate-accent)) padding-box,
        linear-gradient(135deg,
          var(--aged-ember-light) 0%,
          var(--aged-ember) 20%,
          var(--aged-ember-light) 40%,
          var(--aged-ember) 60%,
          var(--aged-ember-light) 80%,
          var(--aged-ember) 100%) border-box;
      background-size: 100% 100%, 250% 100%;
      animation: ctaGoldFlowDual 3.5s linear infinite;
      border: 3px solid transparent;
      border-radius: var(--radius);
      color: var(--soft-canvas);
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.02em;
      box-shadow: 0 8px 28px rgba(176,138,87,0.30), 0 2px 8px rgba(0,0,0,0.18);
      transition: transform 0.2s ease, box-shadow 0.25s ease;
    }
    .final-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(176,138,87,0.40), 0 4px 12px rgba(0,0,0,0.22);
    }

    .form-note {
      text-align: center; font-size: 12px; color: var(--text-light);
      margin-top: 14px; line-height: 1.6;
    }
    .form-note a { color: var(--aged-ember-text); text-decoration: underline; }

    /* Count bar — replaced by spots progress bar */
    .spots-bar {
      margin-top: 20px;
      background: var(--soft-canvas);
      border-radius: 12px;
      padding: 14px 16px;
      border: 1px solid rgba(37,52,57,0.10);
    }
    .spots-bar-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 10px;
    }
    .spots-bar-label {
      font-size: 13px; font-weight: 600; color: var(--foxx-core);
    }
    .spots-bar-count {
      font-size: 13px; color: var(--text-mid);
    }
    .spots-bar-count strong { color: var(--foxx-core); }
    .spots-track {
      width: 100%; height: 6px; background: var(--warm-stone);
      border-radius: 100px; overflow: hidden;
    }
    .spots-fill {
      height: 100%; border-radius: 100px;
      background: var(--foxx-core);
      transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
      width: 0%;
    }
    .spots-fill.almost { background: var(--aged-ember-text); }
    .spots-fill.full   { background: #8A0000; }
    .spots-caption {
      font-size: 11px; color: var(--text-light);
      margin-top: 7px; text-align: right;
      letter-spacing: 0.02em;
    }

    /* Full / closed state */
    .form-closed {
      display: none;
      text-align: center;
      padding: 28px 20px;
      background: var(--soft-canvas);
      border-radius: var(--radius);
      border: 1.5px solid rgba(37,52,57,0.12);
      margin-top: 20px;
    }
    .form-closed.show { display: block; }
    .form-closed-icon { font-size: 28px; margin-bottom: 10px; }
    .form-closed h3 {
      font-family: 'DM Serif Display', serif;
      font-size: 18px; font-weight: 400;
      color: var(--foxx-core); margin-bottom: 8px;
    }
    .form-closed p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

    /* ── Features Strip ── */
    .features-strip {
      padding: 60px 40px;
      width: 100%;
    }
    .features-title {
      text-align: center; margin: 0 auto 40px;
      max-width: 1080px;
    }
    .features-title h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(26px, 3.5vw, 38px); font-weight: 400;
      color: var(--foxx-core); margin-bottom: 10px;
    }
    .features-title p { font-size: 17px; color: var(--text-mid); max-width: 560px; margin: 0 auto; }

    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1180px; margin: 0 auto; }
    .feature-card {
      background: var(--white);
      border: 1.5px solid rgba(37,52,57,0.10);
      border-radius: var(--radius-lg); padding: 28px;
      transition: all 0.25s;
      box-shadow: 0 2px 12px rgba(37,52,57,0.05);
    }
    .feature-card:hover {
      background: var(--white);
      border-color: rgba(37,52,57,0.25);
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(37,52,57,0.10);
    }
    .feature-icon {
      width: 52px; height: 52px; border-radius: 14px; margin-bottom: 18px;
      background: rgba(37,52,57,0.08);
      border: 1px solid rgba(37,52,57,0.12);
      display: flex; align-items: center; justify-content: center; font-size: 24px;
    }
    .feature-card h3 { font-size: 17px; font-weight: 700; color: var(--foxx-core); margin-bottom: 8px; }
    .feature-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
    .feature-tag {
      display: inline-block; margin-top: 14px;
      background: rgba(37,52,57,0.10); border: 1px solid rgba(37,52,57,0.22);
      color: var(--foxx-core); font-size: 11px; font-weight: 700;
      padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.08em;
    }

    .features-strip { background: var(--parchment); }

    /* ── Timeline ── */
    .timeline-section {
      background: var(--soft-canvas);
      padding: 80px 40px 80px;
      margin-top: 4px;
    }
    .timeline-strip {
      max-width: 900px;
      margin: 0 auto;
      background: var(--white);
      border: 1.5px solid rgba(37,52,57,0.08);
      border-radius: 24px;
      padding: 48px 48px;
      box-shadow: 0 4px 32px rgba(37,52,57,0.06);
    }
    .timeline-strip h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(22px, 3vw, 32px); font-weight: 400;
      color: var(--foxx-core); text-align: center; margin-bottom: 48px;
    }
    .timeline { display: flex; gap: 0; position: relative; }
    .timeline::before {
      content: ''; position: absolute; top: 26px; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--foxx-core), rgba(207,202,195,0.2));
      z-index: 0;
    }
    .tl-step { flex: 1; text-align: center; position: relative; z-index: 1; }
    .tl-dot {
      width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 14px;
      display: flex; align-items: center; justify-content: center; font-size: 20px;
      border: 2px solid rgba(207,202,195,0.4);
    }
    .tl-dot.done { background: var(--foxx-core); border-color: var(--foxx-core); color: white; }
    .tl-dot.active { background: rgba(37,52,57,0.12); border-color: var(--foxx-core); animation: pulse-ring 2s ease infinite; }
    .tl-dot.soon { background: rgba(207,202,195,0.3); border-color: rgba(207,202,195,0.6); }
    @keyframes pulse-ring {
      0%,100% { box-shadow: 0 0 0 0 rgba(37,52,57,0.35); }
      50% { box-shadow: 0 0 0 10px rgba(37,52,57,0); }
    }
    .tl-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 4px; }
    .tl-title { font-size: 14px; font-weight: 600; color: var(--foxx-core); margin-bottom: 4px; }
    .tl-step.active .tl-title { color: var(--aged-ember-text); }
    .tl-desc { font-size: 12px; color: var(--text-light); line-height: 1.5; max-width: 120px; margin: 0 auto; }

    /* ── Footer ── */
    .footer {
      padding: 28px 40px;
      border-top: 1.5px solid rgba(37,52,57,0.12);
      background: var(--white);
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer p { font-size: 13px; color: var(--text-light); }
    .footer a { color: var(--text-light); font-size: 13px; text-decoration: underline; }
    .footer a:hover { color: var(--aged-ember-text); }

    /* Required star */
    .req-star { color: var(--aged-ember-text); font-weight: 700; }

    /* Field hint (below field) */
    .field-hint { font-size: 12px; color: var(--taupe-text); margin-top: 4px; display: block; }

    /* Step indicator */
    .ty-steps {
      display: flex; align-items: center; margin-bottom: 28px;
    }
    .ty-step {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 600;
    }
    .ty-step-active .ty-step-num {
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--foxx-core); color: white;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700; flex-shrink: 0;
    }
    .ty-step-active .ty-step-label { color: var(--foxx-core); }
    .ty-step-locked .ty-step-num {
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--warm-stone); color: var(--taupe-text);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; flex-shrink: 0;
    }
    .ty-step-locked .ty-step-label { color: var(--taupe-text); }
    .ty-step-complete .ty-step-num {
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--success); color: white;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; flex-shrink: 0;
    }
    .ty-step-complete .ty-step-label { color: var(--success); }
    .ty-step-connector {
      flex: 1; height: 1.5px; background: var(--warm-stone); margin: 0 10px;
    }

    /* Step 1 intro copy */
    .ty-step1-intro {
      font-size: 14px; color: var(--text-mid); line-height: 1.6;
      margin-bottom: 14px; padding: 12px 16px;
      background: rgba(107,79,37,0.07); border-radius: 10px;
      border-left: 3px solid var(--aged-ember);
    }

    /* Confirm 55+ checkbox */
    /* Side-by-side field row (first + last name) */
    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    @media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

    /* 55+ confirmation checkbox — amber hint treatment matching hiring-hint */
    .confirm-check-field { margin-bottom: 4px; }
    .confirm-check-label {
      display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
      margin-top: 8px; padding: 10px 12px;
      background: rgba(176,138,87,0.10);
      border: 1px solid rgba(107,79,37,0.22);
      border-radius: 8px;
      transition: border-color 0.2s;
    }
    .confirm-check-label:hover { border-color: var(--aged-ember-text); }
    .confirm-check-label input[type=checkbox] {
      position: absolute; opacity: 0; width: 0; height: 0;
    }
    .confirm-check-box {
      width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0; margin-top: 1px;
      background: var(--aged-ember-text);
      border: 2px solid var(--aged-ember-text);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    .confirm-check-box::after {
      content: '✓'; color: white; font-size: 11px; font-weight: 700;
    }
    .confirm-check-label input[type=checkbox]:not(:checked) ~ .confirm-check-box {
      background: white;
      border-color: rgba(107,79,37,0.35);
    }
    .confirm-check-label input[type=checkbox]:not(:checked) ~ .confirm-check-box::after {
      display: none;
    }
    .confirm-check-text {
      font-size: 13px; color: var(--aged-ember-text); font-weight: 500; line-height: 1.5;
    }

    /* SMB role chips */
    .role-chips {
      display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
    }
    .role-chip {
      padding: 7px 14px; border-radius: 100px;
      border: 1.5px solid var(--warm-stone); background: var(--soft-canvas);
      font-size: 13px; font-weight: 500; color: var(--text-mid);
      cursor: pointer; transition: all 0.2s; user-select: none;
    }
    .role-chip:hover { border-color: var(--foxx-core); color: var(--foxx-core); }
    .role-chip.selected {
      background: rgba(37,52,57,0.08); border-color: var(--foxx-core);
      color: var(--foxx-core); font-weight: 600;
    }

    /* ── Thank You Page ── */
    .thankyou-page {
      display: none; position: fixed; inset: 0; z-index: 300;
      background: var(--soft-canvas);
      overflow-y: auto;
    }
    .thankyou-page.show { display: block; animation: fadeInUp 0.4s ease both; }
    .ty-nav {
      display: flex; align-items: center; gap: 16px; padding: 16px 40px;
      background: rgba(247,247,243,0.92); backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(37,52,57,0.10);
      position: sticky; top: 0; z-index: 10;
    }
    .ty-body {
      max-width: 780px; margin: 0 auto; padding: 36px 40px 72px;
    }
    .ty-hero {
      display: flex; align-items: center; gap: 20px;
      margin-bottom: 28px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(37,52,57,0.08);
    }
    .ty-icon {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--foxx-core); flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(37,52,57,0.22);
    }
    .ty-hero-text { flex: 1; min-width: 0; }
    .ty-seat-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(107,79,37,0.10); border: 1px solid rgba(107,79,37,0.22);
      border-radius: 100px; padding: 3px 12px; margin-bottom: 8px;
      font-size: 11px; font-weight: 700; color: var(--aged-ember-text);
      letter-spacing: 0.05em; text-transform: uppercase;
    }
    .ty-hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(20px, 2.8vw, 28px); font-weight: 400;
      color: var(--foxx-core); margin-bottom: 6px; line-height: 1.2;
    }
    .ty-hero p {
      font-size: 14px; color: var(--text-mid); line-height: 1.6; margin: 0;
    }

    /* Profile section */
    .ty-section {
      background: var(--white); border: 1.5px solid rgba(37,52,57,0.10);
      border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 16px;
      box-shadow: 0 2px 12px rgba(37,52,57,0.04);
    }
    .ty-section-header { margin-bottom: 18px; }
    .ty-section-eyebrow {
      font-size: 10px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--aged-ember-text);
      margin-bottom: 4px; display: block;
    }
    .ty-section-header h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 18px; font-weight: 400; color: var(--foxx-core);
    }
    .ty-section-header p { font-size: 13px; color: var(--text-mid); margin-top: 2px; }

    /* Two-column field grid — tighter gaps */
    .ty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .ty-grid .field-full { grid-column: 1 / -1; }
    @media (max-width: 600px) { .ty-grid { grid-template-columns: 1fr; } }

    /* Tighter field spacing inside ty-grid */
    .ty-grid .field label { font-size: 13px; margin-bottom: 4px; }
    .ty-grid .field input,
    .ty-grid .field select { padding: 10px 13px; font-size: 14px; }

    /* File upload */
    .file-upload-label {
      display: flex; align-items: center; gap: 10px;
      border: 1.5px dashed var(--warm-stone); border-radius: var(--radius);
      padding: 12px 16px; cursor: pointer;
      background: var(--soft-canvas); transition: all 0.2s;
      font-size: 13px; color: var(--text-mid);
    }
    .file-upload-label:hover { border-color: var(--foxx-core); color: var(--foxx-core); }
    .file-upload-label input[type=file] { display: none; }
    .file-upload-label .upload-icon { font-size: 18px; }
    #resume-filename { font-size: 12px; color: var(--aged-ember-text); margin-top: 4px; display: block; }

    /* Referral section — tighter */
    .ty-referral {
      background: var(--foxx-core); border-radius: var(--radius-lg);
      padding: 24px 28px; margin-bottom: 16px;
      position: relative; overflow: hidden;
    }
    .ty-referral::before {
      content: ''; position: absolute; top: -40px; right: -40px;
      width: 200px; height: 200px; border-radius: 50%;
      background: radial-gradient(circle, rgba(176,138,87,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .ty-referral-inner { position: relative; z-index: 1; }
    .ty-referral h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 18px; font-weight: 400; color: var(--soft-canvas);
      margin-bottom: 4px;
    }
    .ty-referral p { font-size: 13px; color: rgba(247,247,243,0.72); margin-bottom: 14px; line-height: 1.5; }
    .referral-perks {
      display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
    }
    .referral-perk {
      display: flex; align-items: center; gap: 6px;
      background: rgba(247,247,243,0.08); border: 1px solid rgba(247,247,243,0.14);
      border-radius: 6px; padding: 5px 10px;
      font-size: 12px; color: var(--soft-canvas); font-weight: 500;
    }
    .referral-link-box {
      display: flex; gap: 8px; align-items: stretch;
    }
    .referral-link-input {
      flex: 1; padding: 10px 12px; border-radius: var(--radius);
      background: rgba(247,247,243,0.10); border: 1.5px solid rgba(247,247,243,0.18);
      color: var(--soft-canvas); font-family: 'DM Sans', sans-serif; font-size: 13px;
      outline: none;
    }
    .referral-link-input:focus { border-color: var(--aged-ember-light); }
    .btn-copy {
      padding: 10px 18px; border-radius: var(--radius);
      background: var(--aged-ember); border: none;
      color: white; font-family: 'DM Sans', sans-serif;
      font-size: 13px; font-weight: 700; cursor: pointer;
      white-space: nowrap; transition: all 0.2s;
    }
    .btn-copy:hover { background: var(--aged-ember-light); }
    .btn-copy.copied { background: var(--success); }
    .referral-share-btns {
      display: flex; gap: 7px; margin-top: 10px; flex-wrap: wrap;
    }
    .btn-share {
      display: flex; align-items: center; gap: 6px;
      padding: 7px 12px; border-radius: 7px;
      background: rgba(247,247,243,0.10); border: 1px solid rgba(247,247,243,0.18);
      color: var(--soft-canvas); font-size: 12px; font-weight: 600;
      cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
      text-decoration: none;
    }
    .btn-share:hover { background: rgba(247,247,243,0.18); }
    .referral-count {
      margin-top: 12px; display: flex; align-items: center; gap: 8px;
      background: rgba(247,247,243,0.07); border-radius: 7px; padding: 8px 12px;
    }
    .referral-count-num {
      font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--aged-ember);
    }
    .referral-count-label { font-size: 12px; color: rgba(247,247,243,0.65); }

    /* Save CTA */
    .ty-save-btn {
      width: 100%; padding: 14px;
      background: var(--foxx-core); border: none; border-radius: var(--radius);
      color: white; font-family: 'DM Sans', sans-serif;
      font-size: 15px; font-weight: 700; cursor: pointer;
      transition: all 0.2s; letter-spacing: 0.02em;
      box-shadow: 0 6px 20px rgba(37,52,57,0.22);
    }
    .ty-save-btn:hover { background: var(--slate-accent); transform: translateY(-1px); }
    .ty-skip { display: block; text-align: center; margin-top: 12px;
      font-size: 13px; color: var(--text-light); cursor: pointer;
      background: none; border: none; font-family: 'DM Sans', sans-serif;
    }
    .ty-skip:hover { color: var(--text-mid); text-decoration: underline; }

    /* ── Success State (kept as a fallback mini modal) ── */
    .success-overlay {
      display: none; position: fixed; inset: 0; z-index: 200;
      background: rgba(247,247,243,0.92); backdrop-filter: blur(12px);
      align-items: center; justify-content: center; padding: 24px;
    }
    .success-overlay.show { display: flex; }
    .success-card {
      background: var(--white); border: 1.5px solid rgba(37,52,57,0.15);
      border-radius: var(--radius-lg); padding: 48px 40px; max-width: 480px; width: 100%;
      text-align: center; animation: scaleIn 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
    }
    @keyframes scaleIn { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
    .success-icon {
      width: 80px; height: 80px; border-radius: 50%;
      background: var(--foxx-core);
      display: flex; align-items: center; justify-content: center;
      font-size: 36px; margin: 0 auto 24px;
      box-shadow: 0 16px 40px rgba(37,52,57,0.30);
    }
    .success-card h2 {
      font-family: 'DM Serif Display', serif; font-size: 28px; font-weight: 400;
      color: var(--foxx-core); margin-bottom: 12px;
    }
    .success-card p { font-size: 16px; color: var(--text-mid); line-height: 1.7; margin-bottom: 28px; }
    .success-details {
      background: var(--soft-canvas); border-radius: var(--radius); padding: 16px 20px;
      margin-bottom: 24px; text-align: left;
    }
    .success-details p { font-size: 14px; color: var(--text-mid); margin-bottom: 4px; }
    .success-details strong { color: var(--foxx-core); }
    .success-actions { display: flex; gap: 10px; }
    .btn-download {
      flex: 1; padding: 13px; border-radius: var(--radius);
      background: var(--foxx-core);
      color: white; border: none; cursor: pointer; font-size: 14px; font-weight: 600;
      font-family: 'DM Sans', sans-serif; min-height: 48px;
      transition: all 0.2s;
    }
    .btn-download:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,52,57,0.30); background: var(--slate-accent); }
    .btn-close-success {
      flex: 1; padding: 13px; border-radius: var(--radius);
      background: var(--soft-canvas); border: 1.5px solid var(--border);
      color: var(--text-dark); cursor: pointer; font-size: 14px; font-weight: 600;
      font-family: 'DM Sans', sans-serif; min-height: 48px;
      transition: all 0.2s;
    }
    .btn-close-success:hover { background: var(--warm-stone); }

    /* ── Animations ── */
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeInDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }

    /* ── Inline hero timeline ── */
    .hero-timeline {
      margin-top: 32px;
      padding-top: 28px;
      border-top: 1px solid rgba(37,52,57,0.10);
    }
    .hero-timeline-label {
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.1em; color: var(--taupe-text); margin-bottom: 16px;
    }
    .hero-tl { display: flex; gap: 0; position: relative; }
    .hero-tl::before {
      content: ''; position: absolute; top: 13px; left: 14px; right: 14px; height: 1.5px;
      background: linear-gradient(90deg, var(--foxx-core) 40%, rgba(207,202,195,0.35) 100%);
      z-index: 0;
    }
    .hero-tl-step { flex: 1; text-align: center; position: relative; z-index: 1; }
    .hero-tl-dot {
      width: 28px; height: 28px; border-radius: 50%;
      margin: 0 auto 8px; display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 700; border: 1.5px solid rgba(207,202,195,0.5);
    }
    .hero-tl-dot.done { background: var(--foxx-core); border-color: var(--foxx-core); color: white; }
    .hero-tl-dot.now  { background: var(--soft-canvas); border-color: var(--foxx-core); border-width: 2px;
                        animation: pulse-ring 2s ease infinite; font-size: 13px; }
    .hero-tl-dot.soon { background: var(--warm-stone); border-color: var(--warm-stone); color: var(--taupe-text); }
    .hero-tl-title { font-size: 11px; font-weight: 600; color: var(--foxx-core); line-height: 1.3; }
    .hero-tl-step.now .hero-tl-title { color: var(--aged-ember-text); }
    .hero-tl-meta  { font-size: 10px; color: var(--taupe-text); margin-top: 2px; }
    @media (max-width: 540px) { .hero-tl-meta { display: none; } }

    /* Hiring company email hint */
    .hiring-hint {
      display: flex; align-items: flex-start; gap: 8px;
      margin-top: 8px; padding: 10px 12px;
      background: rgba(176,138,87,0.10);
      border: 1px solid rgba(107,79,37,0.22);
      border-radius: 8px;
      font-size: 13px; color: var(--aged-ember-text);
      line-height: 1.5;
      animation: fadeInDown 0.25s ease both;
    }
    .hiring-hint[hidden] { display: none; }
    .hiring-hint-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }

    /* ── Error state ── */
    .field-error { font-size: 13px; color: #FF8A80; margin-top: 5px; display: none; }
    .field.has-error input, .field.has-error select { border-color: #FF8A80; }
    .field.has-error .field-error { display: block; }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .hero { flex-direction: column; gap: 40px; padding: 24px 24px 64px; }
      .form-card { width: 100%; }
      .features-grid { grid-template-columns: 1fr; }
      .timeline { flex-direction: column; gap: 20px; }
      .timeline::before { display: none; }
      .tl-step { display: flex; align-items: flex-start; gap: 16px; text-align: left; }
      .tl-dot { margin: 0; flex-shrink: 0; }
      .features-strip { padding: 40px 24px; }
      .timeline-section { padding: 60px 20px; }
      .timeline-strip { padding: 32px 24px; }
      .nav { padding: 20px 24px; }
      .footer { padding: 20px 24px; }
    }

    @media (max-width: 540px) {
      .countdown { gap: 10px; }
      .cd-unit { padding: 10px 12px; min-width: 60px; }
      .cd-num { font-size: 26px; }
      .role-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }

    /* ── Mission Section ── */
    .mission-strip {
      padding: 80px 40px;
      background: var(--foxx-core);
      position: relative;
      overflow: hidden;
    }
    .mission-strip::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 360px; height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(176,138,87,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .mission-strip::after {
      content: '';
      position: absolute;
      bottom: -40px; left: -40px;
      width: 280px; height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(176,138,87,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .mission-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 72px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .mission-left {}
    .mission-eyebrow {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--aged-ember-light);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .mission-eyebrow::before {
      content: '';
      width: 28px;
      height: 2px;
      background: var(--aged-ember-light);
      display: inline-block;
    }
    .mission-headline {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 400;
      color: var(--soft-canvas);
      line-height: 1.15;
      margin-bottom: 0;
    }
    .mission-headline .accent {
      color: var(--aged-ember);
      font-style: italic;
    }
    .mission-ornament {
      width: 56px;
      height: 4px;
      background: linear-gradient(90deg, var(--aged-ember), rgba(176,138,87,0.2));
      border-radius: 2px;
      margin-top: 28px;
    }
    .mission-right {}
    .mission-body {
      font-size: 17px;
      color: rgba(247,247,243,0.75);
      line-height: 1.8;
      margin-bottom: 24px;
    }
    .mission-body strong {
      color: var(--soft-canvas);
      font-weight: 600;
    }
    @media (max-width: 900px) {
      .mission-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .mission-strip { padding: 56px 24px; }
    }

    /* ── Demo page toggle (top of page) ── */
    .page-toggle-bar {
      width: 100%;
      padding: 26px 32px 18px;
      background: var(--soft-canvas);
      border-bottom: 1px solid rgba(37,52,57,0.06);
      display: flex;
      justify-content: center;
    }
    .page-toggle-wrap {
      width: 100%;
      max-width: 1080px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .page-toggle {
      width: 100%;
      padding: 2.5px;
      border-radius: 100px;
      background: linear-gradient(135deg, var(--aged-ember) 0%, var(--aged-ember-light) 35%, var(--aged-ember) 65%, var(--aged-ember-light) 100%);
      background-size: 200% 200%;
      box-shadow: 0 6px 22px rgba(176,138,87,0.22), 0 2px 8px rgba(37,52,57,0.05);
      animation: toggleShimmer 8s ease-in-out infinite;
    }
    @keyframes toggleShimmer {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    .page-toggle-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px;
      padding: 6px;
      background: var(--white);
      border-radius: 98px;
    }
    .page-toggle-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 14px 24px;
      min-height: 52px;
      background: transparent;
      border: none;
      border-radius: 100px;
      color: var(--text-mid);
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.01em;
      cursor: pointer;
      transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    }
    .page-toggle-btn:hover:not(.active) {
      color: var(--foxx-core);
      background: rgba(37,52,57,0.04);
    }
    .page-toggle-btn.active {
      background: var(--foxx-core);
      color: var(--soft-canvas);
      box-shadow: 0 3px 14px rgba(37,52,57,0.22);
    }
    .page-toggle-btn:focus-visible {
      outline: 2px solid var(--aged-ember-text);
      outline-offset: 3px;
    }
    .page-toggle-icon { font-size: 18px; line-height: 1; }
    .page-toggle-cue {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      color: var(--aged-ember-text);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin: 0;
      text-align: center;
    }
    @media (max-width: 560px) {
      .page-toggle-bar { padding: 18px 16px 12px; }
      .page-toggle-btn { padding: 12px 14px; font-size: 14px; min-height: 48px; gap: 8px; }
      .page-toggle-icon { font-size: 16px; }
      .page-toggle-cue { font-size: 11px; letter-spacing: 0.12em; }
    }

    /* ── Curved Road to Launch + integrated countdown ── */
    .roadmap {
      display: block;       /* override flex inherited from .countdown class */
      margin: 22px 0 14px;
      padding: 16px 0 0;
    }
    .roadmap-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--aged-ember-text);
      margin-bottom: 22px;
    }
    .roadmap-canvas {
      position: relative;
      width: 100%;
      min-height: 300px;
    }
    .roadmap-path {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 180px;
      overflow: visible;
    }
    .rm-stage {
      position: absolute;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      z-index: 2;
      width: 96px;
    }
    .rm-stage > .rm-dot,
    .rm-stage > .rm-dot-now { margin-bottom: 4px; }
    .rm-dot {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      background: var(--white);
      border: 2px solid var(--warm-stone);
      box-shadow: 0 2px 6px rgba(0,0,0,0.06);
      line-height: 1;
    }
    .rm-done .rm-dot {
      background: var(--aged-ember);
      color: var(--white);
      border-color: var(--aged-ember);
      font-size: 14px;
      font-weight: 700;
    }
    .rm-now .rm-dot-now {
      background: var(--soft-canvas);
      border: 2.5px solid var(--aged-ember);
      width: 42px;
      height: 42px;
      font-size: 19px;
      box-shadow: 0 0 0 5px rgba(176,138,87,0.16), 0 6px 16px rgba(176,138,87,0.30);
      position: relative;
    }
    /* All rm-now text pinned above the dot, with breathing room between label and dot */
    .rm-now .rm-date { order: -2; }
    .rm-now .rm-label { order: -1; margin-bottom: 8px; margin-top: 0; }
    .rm-now .rm-dot-now::before {
      content: '';
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      border: 2px solid var(--aged-ember);
      opacity: 0;
      animation: rmPulse 2.4s ease-out infinite;
    }
    @keyframes rmPulse {
      0% { transform: scale(0.85); opacity: 0.55; }
      100% { transform: scale(1.65); opacity: 0; }
    }
    .rm-soon .rm-dot {
      background: var(--soft-canvas);
      border-color: rgba(37,52,57,0.20);
      opacity: 0.85;
    }
    .rm-pb .rm-dot {
      border-color: var(--aged-ember);
      box-shadow: 0 0 0 3px rgba(176,138,87,0.12), 0 3px 10px rgba(37,52,57,0.10);
      opacity: 1;
    }
    .rm-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 11.5px;
      font-weight: 700;
      color: var(--foxx-core);
      letter-spacing: 0.01em;
      white-space: nowrap;
      text-align: center;
      line-height: 1.2;
      margin-top: 4px;
    }
    .rm-now .rm-label {
      color: var(--aged-ember-text);
    }
    .rm-date {
      font-size: 10px;
      color: var(--text-mid);
      letter-spacing: 0.03em;
      white-space: nowrap;
      line-height: 1.2;
    }
    .rm-now .rm-date {
      color: var(--aged-ember-text);
      font-weight: 700;
      font-size: 10.5px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .rm-pb { z-index: 3; }
    .rm-pb .rm-countdown-box {
      position: relative;
      margin-top: 14px;
      background: var(--foxx-core);
      color: var(--soft-canvas);
      padding: 10px 14px 8px;
      border-radius: 12px;
      box-shadow: 0 10px 28px rgba(37,52,57,0.25), 0 0 0 1.5px rgba(176,138,87,0.45);
      min-width: 200px;
      width: max-content;
    }
    .rm-cd-arrow {
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 12px;
      height: 12px;
      background: var(--foxx-core);
      border-top: 1.5px solid rgba(176,138,87,0.45);
      border-left: 1.5px solid rgba(176,138,87,0.45);
    }
    .rm-cd-row {
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 4px;
    }
    .rm-cd-unit {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 30px;
    }
    .rm-cd-num {
      font-family: 'DM Serif Display', serif;
      font-size: 22px;
      line-height: 1;
      font-variant-numeric: tabular-nums;
      color: var(--aged-ember-light);
    }
    .rm-cd-lab {
      font-size: 8.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.10em;
      margin-top: 4px;
      opacity: 0.75;
    }
    .rm-cd-sep {
      font-family: 'DM Serif Display', serif;
      font-size: 22px;
      line-height: 1;
      color: rgba(176,138,87,0.55);
      padding: 0 1px;
    }
    .rm-cd-foot {
      font-size: 9.5px;
      text-align: center;
      margin-top: 8px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      opacity: 0.65;
    }
    @media (max-width: 720px) {
      .roadmap-canvas { min-height: 320px; }
      .rm-stage { width: 80px; }
      .rm-label { font-size: 10.5px; }
      .rm-date { font-size: 9.5px; }
      .rm-pb .rm-countdown-box { min-width: 180px; padding: 8px 10px 6px; }
      .rm-cd-num { font-size: 19px; }
    }

    /* ── Combined Why-Now + CTA section ── */
    .whynow-cta-wrap {
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .whynow-cta-btn {
      display: inline-block;
      position: relative;
      padding: 3px;
      border-radius: 100px;
      text-decoration: none;
      background: linear-gradient(135deg,
        var(--aged-ember-light) 0%,
        var(--aged-ember) 20%,
        var(--aged-ember-light) 40%,
        var(--aged-ember) 60%,
        var(--aged-ember-light) 80%,
        var(--aged-ember) 100%);
      background-size: 250% 100%;
      animation: ctaGoldFlow 3.5s linear infinite;
      box-shadow: 0 8px 28px rgba(176,138,87,0.30), 0 2px 8px rgba(0,0,0,0.18);
      transition: transform 0.2s ease, box-shadow 0.25s ease;
    }
    .whynow-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(176,138,87,0.40), 0 4px 12px rgba(0,0,0,0.22);
    }
    .whynow-cta-btn-inner {
      display: inline-flex;
      align-items: center;
      padding: 16px 38px;
      background: var(--slate-accent);
      color: var(--soft-canvas);
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      font-weight: 700;
      letter-spacing: 0.02em;
      border-radius: 98px;
    }
    .whynow-cta-sub {
      font-size: 13px;
      color: rgba(247,247,243,0.62);
      letter-spacing: 0.04em;
      margin: 0;
      text-align: center;
    }

    /* ── Benefits & features with graphic placeholders ── */
    .benefits-graphic-row {
      max-width: 1180px;
      margin: 0 auto;
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px 24px;
    }
    .benefit-graphic-item {
      display: flex;
      flex-direction: column;
      gap: 14px;
      text-align: left;
    }
    .benefit-graphic {
      width: 100%;
      aspect-ratio: 4 / 3;
      background: rgba(247,247,243,0.55);
      border: 1px solid rgba(37,52,57,0.10);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      box-shadow: 0 2px 10px rgba(37,52,57,0.04) inset;
    }
    .benefit-graphic svg {
      width: 100%;
      max-width: 130px;
      height: auto;
    }
    /* ── Gold-tier treatment scoped to "What founding members get" ── */
    .benefits-graphic-row .benefit-graphic {
      position: relative;
      background:
        linear-gradient(160deg, #F6F1E1 0%, #EAE3D1 55%, #F2ECD9 100%) padding-box,
        linear-gradient(135deg,
          var(--aged-ember-light) 0%,
          var(--aged-ember) 18%,
          var(--aged-ember-light) 36%,
          var(--aged-ember) 54%,
          var(--aged-ember-light) 72%,
          var(--aged-ember) 100%) border-box;
      background-size: 100% 100%, 280% 100%;
      border: 2px solid transparent;
      box-shadow:
        0 1px 0 rgba(255,255,255,0.55) inset,
        0 0 0 1px rgba(176,138,87,0.06),
        0 8px 22px rgba(176,138,87,0.16),
        0 2px 8px rgba(37,52,57,0.07);
      animation: goldBorderDrift 9s linear infinite;
      transition: transform 0.3s ease, box-shadow 0.35s ease;
    }
    .benefits-graphic-row .benefit-graphic::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 12px;
      background: radial-gradient(ellipse 80% 55% at 25% 0%, rgba(255,255,255,0.28), transparent 70%);
      pointer-events: none;
      opacity: 0.9;
      z-index: 1;
    }
    /* Subtle glisten sweep — occasional shine across each gold card */
    .benefits-graphic-row .benefit-graphic {
      overflow: hidden;
    }
    .benefits-graphic-row .benefit-graphic::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 45%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), rgba(247,247,243,0.26), rgba(255,255,255,0.18), transparent);
      transform: skewX(-22deg) translateX(-200%);
      pointer-events: none;
      animation: goldCardGlisten 8s ease-in-out infinite;
      z-index: 2;
    }
    .benefits-graphic-row .benefit-graphic-item:nth-child(1) .benefit-graphic::after { animation-delay: 0.5s; }
    .benefits-graphic-row .benefit-graphic-item:nth-child(2) .benefit-graphic::after { animation-delay: 2.5s; }
    .benefits-graphic-row .benefit-graphic-item:nth-child(3) .benefit-graphic::after { animation-delay: 4.5s; }
    .benefits-graphic-row .benefit-graphic-item:nth-child(4) .benefit-graphic::after { animation-delay: 6.5s; }
    @keyframes goldCardGlisten {
      0%, 70% {
        transform: skewX(-22deg) translateX(-200%);
        opacity: 0;
      }
      78% {
        transform: skewX(-22deg) translateX(-80%);
        opacity: 1;
      }
      92% {
        transform: skewX(-22deg) translateX(180%);
        opacity: 1;
      }
      100% {
        transform: skewX(-22deg) translateX(350%);
        opacity: 0;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      .benefits-graphic-row .benefit-graphic::after { animation: none !important; opacity: 0; }
    }
    @keyframes goldBorderDrift {
      from { background-position: 0% 0%, 0% 50%; }
      to   { background-position: 0% 0%, 280% 50%; }
    }
    .benefits-graphic-row .benefit-graphic-item { cursor: default; }
    .benefits-graphic-row .benefit-graphic-item:hover .benefit-graphic {
      transform: translateY(-5px) scale(1.012);
      box-shadow:
        0 1px 0 rgba(255,255,255,0.7) inset,
        0 0 0 1px rgba(176,138,87,0.14),
        0 22px 44px rgba(176,138,87,0.34),
        0 6px 16px rgba(37,52,57,0.13);
    }
    .benefits-graphic-row .benefit-graphic-title { transition: color 0.3s ease; }
    .benefits-graphic-row .benefit-graphic-item:hover .benefit-graphic-title {
      color: var(--aged-ember-text);
    }
    @media (prefers-reduced-motion: reduce) {
      .benefits-graphic-row .benefit-graphic { animation: none; }
      .benefits-graphic-row .benefit-graphic-item:hover .benefit-graphic { transform: none !important; }
    }
    .benefit-graphic-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 16.5px;
      font-weight: 700;
      color: var(--foxx-core);
      margin: 0;
      line-height: 1.3;
    }
    .benefit-graphic-desc {
      font-size: 14px;
      color: var(--text-mid);
      line-height: 1.6;
      margin: 0;
    }
    .features-strip-graphics-grid {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 36px 28px;
      list-style: none;
      padding: 0;
    }
    /* ── Features section box overrides — smaller frames, brown gradient border, bigger darker text ── */
    .features-strip-graphics-grid .benefit-graphic-item {
      text-align: center;
      align-items: center;
      gap: 16px;
    }
    .features-strip-graphics-grid .benefit-graphic {
      max-width: 180px;
      margin: 0 auto;
      aspect-ratio: 4 / 3;
      background:
        linear-gradient(rgba(247,247,243,0.7), rgba(247,247,243,0.7)) padding-box,
        linear-gradient(135deg,
          var(--aged-ember-light) 0%,
          var(--aged-ember-text) 30%,
          var(--aged-ember) 60%,
          var(--aged-ember-text) 100%) border-box;
      border: 1.5px solid transparent;
      box-shadow:
        0 1px 0 rgba(255,255,255,0.5) inset,
        0 3px 10px rgba(107,79,37,0.10),
        0 8px 22px rgba(107,79,37,0.12);
      transition: transform 0.25s ease, box-shadow 0.3s ease;
    }
    .features-strip-graphics-grid .benefit-graphic svg {
      max-width: 100px;
    }
    .features-strip-graphics-grid .benefit-graphic-item:hover .benefit-graphic {
      transform: translateY(-2px);
      box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 6px 18px rgba(107,79,37,0.16),
        0 12px 30px rgba(107,79,37,0.20);
    }
    .features-strip-graphics-grid .benefit-graphic-title {
      font-size: 18px;
      color: var(--foxx-core);
      line-height: 1.3;
      margin-top: 4px;
    }
    .features-strip-graphics-grid .benefit-graphic-desc {
      font-size: 15px;
      color: var(--foxx-core);
      opacity: 0.86;
      line-height: 1.55;
      max-width: 280px;
      margin: 0 auto;
    }
    .features-strip-graphics-grid .flat-tag {
      margin-top: 4px;
    }
    @media (max-width: 900px) {
      .benefits-graphic-row { grid-template-columns: repeat(2, 1fr); }
      .features-strip-graphics-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 520px) {
      .benefits-graphic-row { grid-template-columns: 1fr; }
      .features-strip-graphics-grid { grid-template-columns: 1fr; }
    }

    /* ── Testimonial cards in "What people are saying" ── */
    .testimonials-grid {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 24px;
    }
    .testimonial-card {
      position: relative;
      background: linear-gradient(160deg, #FFFFFF 0%, #FBF7EE 100%);
      border: 1px solid rgba(176,138,87,0.18);
      border-radius: 14px;
      padding: 36px 28px 26px;
      box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 4px 18px rgba(37,52,57,0.06),
        0 10px 30px rgba(176,138,87,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
    }
    .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0; left: 24px; right: 24px;
      height: 3px;
      background: linear-gradient(90deg,
        rgba(176,138,87,0) 0%,
        var(--aged-ember-light) 18%,
        var(--aged-ember) 50%,
        var(--aged-ember-light) 82%,
        rgba(176,138,87,0) 100%);
      border-radius: 0 0 3px 3px;
    }
    .testimonial-card:hover {
      transform: translateY(-4px);
      box-shadow:
        0 1px 0 rgba(255,255,255,0.7) inset,
        0 10px 28px rgba(37,52,57,0.10),
        0 18px 44px rgba(176,138,87,0.20);
    }
    .testimonial-mark {
      position: absolute;
      top: 6px;
      right: 22px;
      font-family: 'DM Serif Display', serif;
      font-size: 92px;
      line-height: 1;
      color: var(--aged-ember);
      opacity: 0.18;
      pointer-events: none;
      user-select: none;
    }
    .testimonial-eyebrow {
      font-size: 10.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--aged-ember-text);
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }
    .testimonial-quote {
      font-family: 'DM Serif Display', serif;
      font-size: 18px;
      font-style: italic;
      color: var(--foxx-core);
      line-height: 1.55;
      margin: 0 0 24px;
      position: relative;
      z-index: 1;
    }
    .testimonial-attribution {
      display: flex;
      align-items: center;
      gap: 14px;
      padding-top: 18px;
      border-top: 1px solid rgba(37,52,57,0.08);
      position: relative;
      z-index: 1;
    }
    .testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--aged-ember-light), var(--aged-ember));
      color: var(--soft-canvas);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(176,138,87,0.32), 0 0 0 3px rgba(247,247,243,0.7);
    }
    .testimonial-avatar svg { width: 18px; height: 18px; }
    .testimonial-name {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--foxx-core);
      line-height: 1.3;
    }
    .testimonial-credential {
      font-size: 12px;
      color: var(--text-mid);
      line-height: 1.35;
      margin-top: 2px;
    }
    @media (prefers-reduced-motion: reduce) {
      .testimonial-card:hover { transform: none !important; }
    }

    /* ── Flat-row benefits & features layout (added in merged version) ── */
    .flat-row {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 36px 32px;
    }
    .flat-row.cols-4 { grid-template-columns: repeat(4, 1fr); }
    .flat-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
    .flat-item {
      padding: 22px 4px 8px;
      position: relative;
    }
    .flat-item::before {
      content: '';
      position: absolute;
      top: 0; left: 4px; right: 4px;
      height: 2px;
      background: linear-gradient(90deg, var(--aged-ember), rgba(176,138,87,0.05));
      border-radius: 2px;
    }
    .flat-icon {
      font-size: 30px;
      line-height: 1;
      display: block;
      margin-bottom: 14px;
    }
    .flat-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--foxx-core);
      line-height: 1.3;
      margin: 0 0 8px;
    }
    .flat-desc {
      font-size: 14.5px;
      color: var(--text-mid);
      line-height: 1.65;
      margin: 0;
    }
    .flat-tag {
      display: inline-block;
      margin-top: 10px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: var(--aged-ember-text);
      text-transform: uppercase;
    }
    @media (max-width: 980px) {
      .flat-row.cols-4 { grid-template-columns: repeat(2, 1fr); }
      .flat-row.cols-3 { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 560px) {
      .flat-row.cols-4, .flat-row.cols-3 { grid-template-columns: 1fr; gap: 22px; }
    }

    /* ── Story stepper (Who's behind / interactive story) ── */
    .story-strip {
      width: 100%;
      padding: 80px 40px;
    }
    .story-header {
      max-width: 1080px;
      margin: 0 auto 48px;
      text-align: center;
    }
    .story-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 12px;
      font-weight: 700;
      color: var(--aged-ember-text);
      margin-bottom: 18px;
    }
    .story-eyebrow::before {
      content: '';
      width: 26px;
      height: 1.5px;
      background: var(--aged-ember);
    }
    .story-headline {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 400;
      color: var(--foxx-core);
      line-height: 1.15;
      margin: 0;
    }
    .story-accent {
      color: var(--aged-ember-text);
      font-style: italic;
    }
    .story-stepper {
      max-width: 1080px;
      margin: 0 auto 40px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .story-dot {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      padding: 18px 18px 16px;
      background: transparent;
      border: none;
      border-top: 2.5px solid rgba(37,52,57,0.10);
      cursor: pointer;
      text-align: left;
      font-family: 'DM Sans', sans-serif;
      transition: border-top-color 0.2s ease, background 0.2s ease;
      min-height: 80px;
    }
    .story-dot:hover {
      border-top-color: var(--aged-ember);
      background: rgba(176,138,87,0.04);
    }
    .story-dot[aria-selected="true"] {
      border-top-color: var(--aged-ember);
    }
    .story-dot:focus-visible {
      outline: 2px solid var(--aged-ember-text);
      outline-offset: 2px;
    }
    .story-dot-num {
      font-family: 'DM Serif Display', serif;
      font-size: 24px;
      color: var(--aged-ember-text);
      font-weight: 400;
      line-height: 1;
      opacity: 0.55;
      transition: opacity 0.2s ease;
    }
    .story-dot[aria-selected="true"] .story-dot-num {
      opacity: 1;
      color: var(--foxx-core);
    }
    .story-dot-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-mid);
      line-height: 1.35;
    }
    .story-dot[aria-selected="true"] .story-dot-label {
      color: var(--foxx-core);
    }
    .story-content {
      max-width: 720px;
      margin: 0 auto;
      min-height: 160px;
    }
    .story-panel {
      animation: fadeInUp 0.4s ease both;
    }
    .story-panel[hidden] { display: none; }
    .story-text {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(20px, 2.2vw, 26px);
      line-height: 1.5;
      color: var(--foxx-core);
      text-align: center;
      margin: 0;
      font-style: italic;
    }
    .story-nav {
      max-width: 720px;
      margin: 40px auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }
    .story-prev, .story-next {
      background: transparent;
      border: 1.5px solid var(--foxx-core);
      color: var(--foxx-core);
      padding: 12px 22px;
      border-radius: 100px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
      min-height: 44px;
    }
    .story-prev:hover:not([disabled]),
    .story-next:hover:not([disabled]) {
      background: var(--foxx-core);
      color: var(--soft-canvas);
    }
    .story-prev[disabled], .story-next[disabled] {
      opacity: 0.35;
      cursor: not-allowed;
    }
    .story-progress {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--text-mid);
      font-weight: 600;
      letter-spacing: 0.04em;
    }
    @media (max-width: 760px) {
      .story-stepper { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .story-dot { padding: 14px 14px 12px; min-height: 70px; }
      .story-dot-num { font-size: 20px; }
      .story-dot-label { font-size: 13px; }
      .story-text { font-size: 18px; }
    }
    @media (max-width: 440px) {
      .story-stepper { grid-template-columns: 1fr; }
      .story-nav { flex-direction: column; }
      .story-prev, .story-next { width: 100%; }
    }

    /* ── Compact 2-column FAQ (added in merged version) ── */
    .faq-grid {
      max-width: 1080px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 24px;
    }
    .faq-item {
      background: transparent;
      border: none;
      border-bottom: 1px solid rgba(37,52,57,0.15);
      padding: 14px 4px 14px 36px;
      position: relative;
    }
    .faq-item summary {
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      color: var(--foxx-core);
      font-size: 15.5px;
      line-height: 1.45;
      cursor: pointer;
      list-style: none;
      padding-right: 28px;
      position: relative;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item::before {
      content: '+';
      position: absolute;
      left: 8px; top: 12px;
      width: 22px; height: 22px;
      display: flex; align-items: center; justify-content: center;
      color: var(--aged-ember-text);
      font-size: 18px;
      font-weight: 400;
      transition: transform 0.2s ease;
      line-height: 1;
    }
    .faq-item[open]::before {
      content: '–';
      transform: none;
    }
    .faq-item p {
      margin: 10px 0 4px;
      font-size: 14.5px;
      color: var(--text-mid);
      line-height: 1.7;
    }
    @media (max-width: 720px) {
      .faq-grid { grid-template-columns: 1fr; }
    }

    /*Custom CSS */

    .field.has-error .confirm-check-box {
        border-color: #FF8A80 !important;
    }