/* ── Variables ── */
    :root {
      --bg:         #0B0B0B;
      --bg-2:       #121212;
      --gold:       #C9A84C;
      --gold-lt:    #E6C96A;
      --gold-dim:   rgba(201,168,76,0.15);
      --gold-bd:    rgba(201,168,76,0.25);
      --white:      #FFFFFF;
      --white-60:   rgba(255,255,255,0.6);
      --white-08:   rgba(255,255,255,0.08);
    }

    /* ── Reset ── */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--white); font-family: "DM Sans", sans-serif; overflow-x: hidden;  }

    /* ── Cursor ── */


    /* ── Font Consistency Rules ── */
    /* Headlines: always Cormorant Garamond */
    h1, h2, h3, .headline, .hero-headline, .bv-stat, .cost-number, .rd-success h3 {
      font-family: "Cormorant Garamond", serif;
    }
    /* Labels, buttons, nav, UI elements: always Syne */
    .label, .nav-links a, .nav-cta, .hero-cta, .hero-ghost, .hero-ghost-clear,
    .card-title, .benefit-title, .uc-title, .faq-q span, .roi-field-label,
    .cost-number-label, .cost-bridge, .cost-breakdown-label, .rd-label,
    .solution-eyebrow, .pricing-label, .pricing-daily, .roi-result-label,
    .benefit-title, .tl-toggle-btn {
      font-family: "Syne", sans-serif;
    }
    /* Body copy, descriptions, answers: always DM Sans */
    .subline, .card-desc, .benefit-text, .uc-desc, .faq-a p,
    .solution-desc, .cost-number-suffix, .cost-prose, .rd-input,
    .rd-textarea, .rd-select, .roi-result-sub, .roi-payback-inner {
      font-family: "DM Sans", sans-serif;
    }
    /* Exception: cost-prose stays Cormorant for editorial feel */
    .cost-prose {
      font-family: "Cormorant Garamond", serif;
    }

    /* ── Nav ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 24px; height: 44px;
      display: flex; align-items: center; justify-content: space-between;
      transition: background .4s, border-color .4s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      background: rgba(11,11,11,.97);
      backdrop-filter: blur(12px);
      border-bottom-color: rgba(201,168,76,.1);
    }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a {
      font-family: "Syne", sans-serif; font-size: 12px; font-weight: 500;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--white-60); text-decoration: none; transition: color .3s;
    }
    .nav-links a:hover { color: var(--gold-lt); }
    .nav-cta {
      font-family: "Syne", sans-serif; font-size: 12px; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--bg); background: var(--gold);
      padding: 10px 24px; border-radius: 2px;
      text-decoration: none; transition: background .3s, transform .2s;
    }
    .nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

    /* ── Shared ── */
    .divider { width: 100%; height: 1px; background: linear-gradient(to right, transparent, var(--gold-bd), transparent); }

    .label {
      font-family: "Syne", sans-serif; font-size: 10px; font-weight: 600;
      letter-spacing: .35em; text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
    }
    .label::after { content: ""; display: block; width: 40px; height: 1px; background: var(--gold); opacity: .4; }
    .label.center { justify-content: center; }
    .label.center::before { content: ""; display: block; width: 40px; height: 1px; background: var(--gold); opacity: .4; }
    .label.center::after { display: block; }

    .headline {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(36px, 5vw, 64px); font-weight: 600;
      line-height: 1.1; letter-spacing: -.01em; color: var(--white);
    }
    .headline em { color: var(--gold); font-style: italic; }
    .subline { font-size: 16px; color: var(--white-60); line-height: 1.7; max-width: 540px; margin-top: 16px; }

    .btn-gold {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: "Syne", sans-serif; font-size: 13px; font-weight: 600;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--bg); background: var(--gold);
      padding: 16px 36px; border-radius: 2px;
      text-decoration: none; border: none; 
      transition: background .3s, transform .2s, box-shadow .3s;
    }
    .btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,.3); }

    .btn-outline {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: "Syne", sans-serif; font-size: 13px; font-weight: 600;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--gold); background: transparent;
      padding: 15px 35px; border-radius: 2px;
      text-decoration: none; border: 1px solid var(--gold-bd); 
      transition: border-color .3s, background .3s, transform .2s;
    }
    .btn-outline:hover { border-color: var(--gold); background: var(--gold-dim); transform: translateY(-2px); }

    .fade-in { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

    /* ══════════════════════════════════════
       HERO — Cinematic Minimal Redesign
       ══════════════════════════════════════ */

    #hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      grid-template-rows: 1fr auto;
      overflow: hidden;
      background: radial-gradient(ellipse at 65% 75%, rgba(201,168,76,0.1) 0%, rgba(11,11,11,1) 55%);
    }

    /* ── Animation container — lower half, centered ── */
    #hero-unicorn {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 1440px;
      height: 65%;           /* sits in the lower ~65% of the hero */
      z-index: 0;
      pointer-events: none;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }
    #hero-unicorn > div {
      width: 1440px !important;
      height: 900px !important;
      flex-shrink: 0;
    }
    #hero-unicorn canvas,
    #hero-unicorn iframe {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
    }

    /* ── Layered gradient overlays ──
       Top: solid dark so text above animation is always crisp
       Center: radial vignette pulling focus to the eclipse
       Bottom: fades into the next section                        */
    #hero-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        /* solid ceiling — keeps text clean */
        linear-gradient(to bottom,
          rgba(11,11,11,1)    0%,
          rgba(11,11,11,0.96) 18%,
          rgba(11,11,11,0.80) 38%,
          rgba(11,11,11,0.35) 58%,
          rgba(11,11,11,0.15) 72%,
          rgba(11,11,11,0.55) 88%,
          rgba(11,11,11,1)    100%),
        /* side vignettes keep edges dark */
        radial-gradient(ellipse 90% 100% at 50% 50%,
          transparent 40%, rgba(11,11,11,0.7) 100%);
    }

    /* ── Thin gold rule at the very top ── */
    .hero-scanline {
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,.55), transparent);
      z-index: 3; pointer-events: none;
    }

    /* ── Bottom bleed into next section ── */
    .hero-fade-bottom {
      position: absolute; bottom: 0; left: 0; right: 0; height: 260px;
      background: linear-gradient(to bottom, transparent, var(--bg));
      z-index: 2; pointer-events: none;
    }

    /* ── All content: lives in the upper portion ── */
    .hero-inner {
      position: relative;
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 100%;
      padding: 0 32px;
      /* Push content into the upper ~45% of the viewport */
      padding-top: clamp(140px, 18vh, 210px);
      padding-bottom: clamp(40px, 6vh, 80px);
    }

    /* ── Label ── */
    /* ── Hero pill badge (Auth0-style) ── */
    .hero-label {
      display: inline-flex;
      align-items: center;
      gap: 0;
      margin-bottom: 36px;
      opacity: 0;
      animation: hFadeUp 0.7s cubic-bezier(.22,1,.36,1) 0.1s forwards;
      text-decoration: none;
      
    }
    .hero-label-tag {
      font-family: "Syne", sans-serif;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(255,255,255,0.07);
      border: none;
      padding: 6px 12px;
      border-radius: 2px 0 0 2px;
      transition: background 0.2s;
    }
    .hero-label-text {
      font-family: "Syne", sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      background: rgba(255,255,255,0.04);
      border: none;
      padding: 6px 14px 6px 12px;
      border-radius: 0 2px 2px 0;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }
    .hero-label-text svg {
      opacity: 0.4;
      transition: transform 0.2s, opacity 0.2s;
    }
    .hero-label:hover .hero-label-tag {
      background: rgba(255,255,255,0.11);
    }
    .hero-label:hover .hero-label-text {
      color: rgba(255,255,255,0.8);
    }
    .hero-label:hover .hero-label-text svg {
      transform: translateX(3px);
      opacity: 0.7;
    }

    /* ── Headline ── */
    .hero-headline {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(52px, 7.5vw, 110px);
      font-weight: 300;
      line-height: 1.02;
      letter-spacing: -0.025em;
      color: var(--white);
      margin: 0 0 52px;
      /* no sub-text below the headline — big breathing room */
      max-width: 820px;
      opacity: 0;
      animation: hFadeUp 0.85s cubic-bezier(.22,1,.36,1) 0.25s forwards;
    }
    /* Second line slightly offset for rhythm */
    .hero-headline .line2 {
      display: block;
      color: var(--gold);
      font-style: italic;
      font-weight: 300;
    }

    /* ── Trust line ── */
    .hero-trust {
      display: block;
      overflow: hidden;
      height: 1.4em;
      font-family: "DM Sans", sans-serif;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.04em;
      color: rgba(255,255,255,0.55);
      margin: 0 0 40px;
      opacity: 0;
      animation: hFadeUp 0.85s cubic-bezier(.22,1,.36,1) 0.35s forwards;
    }

    /* ── CTA button — single, premium ── */
    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-family: "Syne", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--bg);
      background: linear-gradient(
        110deg,
        #b8922e 0%,
        #c9a84c 25%,
        #e8c96a 50%,
        #c9a84c 75%,
        #b8922e 100%
      );
      background-size: 250% auto;
      animation: hFadeUp 0.85s cubic-bezier(.22,1,.36,1) 0.45s forwards,
                 ctaShimmer 5s ease-in-out infinite 1.35s;
      padding: 17px 40px;
      border-radius: 2px;
      text-decoration: none;
      border: none;
      
      opacity: 0;
      transition: transform 0.2s ease, box-shadow 0.3s ease;
    }
    @keyframes ctaShimmer {
      0%   { background-position: 0% center; }
      50%  { background-position: 100% center; }
      100% { background-position: 0% center; }
    }
    .hero-cta:hover {
      background: var(--gold-lt);
      transform: translateY(-2px);
      box-shadow: 0 16px 48px rgba(201,168,76,0.28);
    }
    .hero-cta svg {
      transition: transform 0.25s ease;
    }
    .hero-cta:hover svg {
      transform: translateX(3px);
    }

    /* ── Hero button row ── */
    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      opacity: 0;
      animation: hFadeUp 0.85s cubic-bezier(.22,1,.36,1) 0.45s forwards;
    }
    .hero-actions .hero-cta {
      opacity: 1;
      animation: none;
    }

    /* Ghost / outline button — Auth0-style */
    .hero-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: "Syne", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(11,11,11,0.45);
      padding: 17px 40px;
      border-radius: 2px;
      text-decoration: none;
      border: none;
      
      position: relative;
      transition: color 0.3s ease, background 0.3s ease, transform 0.2s ease;
    }
    /* Animated gold border via pseudo-element */
    .hero-ghost::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 2px;
      padding: 1px;
      background: linear-gradient(
        90deg,
        rgba(201,168,76,0.15) 0%,
        rgba(201,168,76,0.9) 40%,
        rgba(255,220,100,1)   55%,
        rgba(201,168,76,0.9) 70%,
        rgba(201,168,76,0.15) 100%
      );
      background-size: 200% 100%;
      animation: goldSweep 5s linear infinite;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      pointer-events: none;
    }
    @keyframes goldSweep {
      0%   { background-position: 100% 0; }
      100% { background-position: -100% 0; }
    }
    .hero-ghost:hover {
      color: var(--gold-lt);
      background: rgba(201,168,76,0.08);
      transform: translateY(-2px);
    }
    .hero-ghost svg {
      transition: transform 0.25s ease;
      opacity: 0.7;
    }
    .hero-ghost:hover svg {
      transform: translateX(3px);
      opacity: 1;
    }

    /* ── Try The Demo Free shimmer ── */
    .hero-ghost-clear {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: "Syne", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      background: linear-gradient(
        90deg,
        rgba(255,255,255,0.3) 0%,
        rgba(201,168,76,0.9) 35%,
        rgba(255,220,100,1)  50%,
        rgba(201,168,76,0.9) 65%,
        rgba(255,255,255,0.3) 100%
      );
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: shimmerText 7s linear infinite;
      padding: 17px 40px;
      border-radius: 2px;
      text-decoration: none;
      border: none;
      
      transition: transform 0.2s ease;
    }
    @keyframes shimmerText {
      0%   { background-position: 100% center; }
      100% { background-position: -100% center; }
    }
    .hero-ghost-clear:hover {
      transform: translateY(-2px);
    }
    .hero-ghost-clear svg {
      transition: transform 0.25s ease;
      opacity: 0.5;
      stroke: rgba(255,255,255,0.6) !important;
    }
    .hero-ghost-clear:hover svg {
      transform: translateX(3px);
      opacity: 1;
      stroke: rgba(255,255,255,0.9) !important;
    }

    @media (max-width: 600px) {
      .hero-ghost-clear { width: 100%; justify-content: center; padding: 17px 28px; }
    }
    @media (max-width: 1024px) {
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions .hero-cta,
      .hero-actions .hero-ghost { width: 100%; justify-content: center; padding: 17px 28px; }
    }

    /* ── Scroll hint at bottom ── */
    .hero-scroll-hint {
      position: absolute;
      bottom: 36px;
      left: 0;
      right: 0;
      margin: 0 auto;
      width: fit-content;
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      opacity: 0;
      animation: hFadeUp 0.8s ease 1s forwards;
    }
    .hero-scroll-hint span {
      font-family: "Syne", sans-serif;
      font-size: 9px;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.45);
    }
    .hero-scroll-line {
      width: 1px;
      height: 36px;
      background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50%       { opacity: 0.9; transform: scaleY(1.15); }
    }

    /* ── Entry animation ── */
    @keyframes hFadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .hero-inner {
        padding-top: clamp(120px, 16vh, 170px);
      }
      .hero-headline {
        font-size: clamp(44px, 9vw, 72px);
      }
    }
    @media (max-width: 600px) {
      .hero-inner {
        padding-top: clamp(110px, 20vh, 150px);
        padding-left: 24px;
        padding-right: 24px;
      }
      .hero-headline {
        font-size: clamp(38px, 11vw, 58px);
        margin-bottom: 40px;
      }
      .hero-label { margin-bottom: 28px; }
      /* hero-actions handles mobile button layout */
      .hero-scroll-hint { display: none; }
    }


    #demo { background: var(--bg); padding: 120px 60px; display: flex; flex-direction: column; align-items: center; }
    #demo .demo-headline {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(28px, 3.5vw, 48px); font-weight: 400;
      color: var(--white); text-align: center; margin-bottom: 52px; letter-spacing: -.01em;
    }
    #demo .demo-headline em { color: var(--gold); font-style: italic; }
    .demo-frame {
      width: 100%; max-width: 1000px;
      border-radius: 8px; overflow: hidden;
      border: 1px solid var(--gold-bd);
      box-shadow: 0 0 100px rgba(201,168,76,.1), 0 40px 80px rgba(0,0,0,.6);
    }
    .demo-frame video { width: 100%; display: block; aspect-ratio: 16/9; background: #0a0a0a; }

    /* ── How It Works ── */
    #how { background: var(--bg); padding: 120px 60px; }
    .how-header { text-align: center; margin-bottom: 72px; }
    .cards-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 1px; background: var(--gold-bd);
      border: 1px solid var(--gold-bd); border-radius: 4px; overflow: hidden;
    }
    .card {
      background: var(--bg-2); padding: 48px 36px;
      display: flex; flex-direction: column; gap: 20px;
      position: relative; overflow: hidden;
      transition: background 0.8s ease, box-shadow 0.8s ease, border-color 0.8s ease, transform 0.5s ease;
      border: 1px solid transparent;
    }
    .card::after {
      content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      transform: scaleX(0); transform-origin: left; transition: transform 0.8s ease;
    }
    .card:hover {
      background: linear-gradient(
        160deg,
        rgba(40,28,5,1) 0%,
        rgba(18,14,3,1) 50%,
        rgba(30,22,4,1) 100%
      );
      border-color: rgba(201,168,76,0.45);
      box-shadow: 0 0 60px rgba(201,168,76,0.12), 0 20px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(201,168,76,0.25);
      transform: translateY(-4px);
    }
    .card:hover::after { transform: scaleX(1); }
    .card-num {
      font-family: "Cormorant Garamond", serif;
      font-size: 48px;
      font-weight: 300;
      line-height: 1;
      background: linear-gradient(
        90deg,
        #6b4c10 0%,
        #c9a84c 35%,
        #e0bc5a 50%,
        #c9a84c 65%,
        #6b4c10 100%
      );
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: costShimmer 5s linear infinite;
    }
    .card-icon {
      width: 44px; height: 44px; border: 1px solid var(--gold-bd);
      border-radius: 6px; display: flex; align-items: center; justify-content: center;
    }
    .card-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .card-title { font-family: "Syne", sans-serif; font-size: 16px; font-weight: 700; color: var(--white); transition: color 0.8s ease; }
    .card:hover .card-title { color: var(--gold); }
    .card-desc { font-size: 14px; color: var(--white-60); line-height: 1.65; transition: color 0.8s ease; }
    .card:hover .card-desc { color: rgba(255,255,255,0.9); }

    /* ── Benefits ── */
    #benefits { background: var(--bg-2); padding: 120px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    #benefits .benefits-roi-cta { grid-column: 1 / -1; width: 100%; display: flex; justify-content: center; padding-top: 48px; border-top: 1px solid rgba(201,168,76,0.1); }
    .benefits-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 48px;
    }
    .benefit {
      background: linear-gradient(160deg, rgba(20,15,4,0.9) 0%, rgba(10,10,10,1) 100%);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 6px;
      padding: 24px 20px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.4s, background 0.4s, transform 0.3s, box-shadow 0.4s;
    }
    .benefit::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .benefit:hover {
      border-color: rgba(201,168,76,0.35);
      background: linear-gradient(160deg, rgba(30,22,4,1) 0%, rgba(12,10,2,1) 100%);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 20px rgba(201,168,76,0.06);
    }
    .benefit:hover::before { opacity: 1; }
    .benefit-icon {
      width: 40px; height: 40px;
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(201,168,76,0.07);
      transition: border-color 0.3s, background 0.3s;
      flex-shrink: 0;
    }
    .benefit:hover .benefit-icon {
      border-color: var(--gold);
      background: rgba(201,168,76,0.14);
    }
    .benefit-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .benefit-title {
      font-family: "Syne", sans-serif;
      font-size: 13px; font-weight: 700;
      color: var(--white);
      line-height: 1.3;
      transition: color 0.3s;
    }
    .benefit:hover .benefit-title { color: var(--gold-lt); }
    .benefit-text { font-size: 13px; color: var(--white-60); line-height: 1.55; }

    @media (max-width: 1024px) {
      .benefits-list { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .benefits-list { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .benefit { padding: 18px 14px; }
    }    .benefits-visual { position: relative; height: 460px; }
    .bv-card {
      position: absolute; background: var(--bg);
      border: 1px solid var(--gold-bd); border-radius: 8px; padding: 28px;
      transition: transform .4s;
    }
    .bv-card:hover { transform: translateY(-4px) !important; }
    .bv-card-1 { top: 0; left: 0; right: 100px; }
    .bv-card-2 { top: 140px; left: 80px; right: 0; }
    .bv-card-3 { top: 280px; left: 20px; width: 220px; }
    .bv-stat { font-family: "Cormorant Garamond", serif; font-size: 48px; font-weight: 600; color: var(--gold); line-height: 1; }
    .bv-label { font-size: 13px; color: var(--white-60); margin-top: 6px; }
    .bv-bar-row { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
    .bv-bar-bg { flex: 1; height: 4px; background: var(--white-08); border-radius: 2px; overflow: hidden; }
    .bv-bar-fill { height: 100%; background: linear-gradient(to right, var(--gold), var(--gold-lt)); border-radius: 2px; }
    .bv-pct { font-size: 12px; color: var(--gold); font-family: "Syne", sans-serif; font-weight: 600; min-width: 36px; text-align: right; }
    .bv-pill {
      display: inline-block; background: rgba(201,168,76,.12);
      border: 1px solid var(--gold-bd); color: var(--gold);
      font-family: "Syne", sans-serif; font-size: 11px; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 20px; margin-bottom: 12px;
    }

    /* ── Use Cases ── */
    #usecases { background: var(--bg); padding: 120px 60px; }
    .uc-stack { display: flex; flex-direction: column; }
    .uc-row {
      display: flex; align-items: center; gap: 48px; padding: 36px 48px;
      border: 1px solid var(--gold-bd); border-bottom: none;
      position: relative; overflow: hidden;
      transition: background .35s, transform .35s, box-shadow .35s;
    }
    .uc-row:first-child { border-radius: 6px 6px 0 0; }
    .uc-row:last-child { border-bottom: 1px solid var(--gold-bd); border-radius: 0 0 6px 6px; }
    .uc-row::before {
      content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
      background: linear-gradient(to bottom, var(--gold), var(--gold-lt));
      transform: scaleY(0); transform-origin: top; transition: transform .35s;
    }
    .uc-row:hover { background: rgba(201,168,76,.04); transform: translateX(4px); box-shadow: 0 4px 40px rgba(201,168,76,.07); }
    .uc-row:hover::before { transform: scaleY(1); }
    .uc-icon {
      flex-shrink: 0; width: 56px; height: 56px;
      border: 1px solid var(--gold-bd); border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(201,168,76,.04); transition: border-color .3s, background .3s;
    }
    .uc-row:hover .uc-icon { border-color: var(--gold); background: var(--gold-dim); }
    .uc-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
    .uc-body { flex: 1; }
    .uc-title {
      font-family: "Syne", sans-serif; font-size: 17px; font-weight: 700;
      color: var(--white); margin-bottom: 6px; transition: color .3s;
    }
    .uc-row:hover .uc-title { color: var(--gold-lt); }
    .uc-desc { font-size: 14px; color: var(--white-60); line-height: 1.6; }
    .uc-arrow {
      flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
      opacity: 0; transform: translateX(-8px); transition: opacity .3s, transform .3s;
    }
    .uc-row:hover .uc-arrow { opacity: 1; transform: translateX(0); }
    .uc-arrow svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }

    /* ── Cost ── */
    #cost {
      background: var(--bg);
      padding: 140px 60px;
      position: relative;
      overflow: hidden;
    }
    /* Atmospheric glow */
    #cost::before {
      content: "";
      position: absolute;
      bottom: -100px; left: 50%; transform: translateX(-50%);
      width: 800px; height: 500px;
      background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 65%);
      pointer-events: none;
    }
    #cost > div:first-child {
      max-width: 680px;
      position: relative;
      z-index: 1;
    }
    /* Headline override — bigger and more commanding */
    #cost .headline {
      font-size: clamp(42px, 6vw, 80px);
      line-height: 1.05;
      margin-bottom: 0;
    }
    /* Prose paragraphs */
    .cost-prose {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(18px, 2vw, 22px);
      font-weight: 300;
      font-style: italic;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
      max-width: 620px;
      margin-top: 32px;
    }
    .cost-prose strong {
      color: rgba(255,255,255,0.75);
      font-style: normal;
      font-weight: 400;
    }
    /* Side-by-side contrast */
    .cost-contrast {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 48px;
    }
    @keyframes borderSwipeRed {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    @keyframes borderSwipeGold {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    .cost-contrast-col {
      border-radius: 6px;
      padding: 28px 24px;
      position: relative;
      overflow: hidden;
      transition: transform .3s ease, box-shadow .3s ease;
      cursor: default;
    }
    /* Animated border via pseudo-element overlay technique */
    .cost-contrast-col::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 6px;
      padding: 1px;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      pointer-events: none;
    }
    .cost-contrast-col::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; height: 1px;
    }
    .cost-contrast-bad {
      background: rgba(255,60,60,0.04);
      border: 1px solid rgba(255,60,60,0.08);
    }
    .cost-contrast-bad::after {
      background: linear-gradient(
        90deg,
        rgba(255,60,60,0.08) 0%,
        rgba(255,60,60,0.08) 30%,
        rgba(255,120,100,0.9) 48%,
        rgba(255,80,60,1) 50%,
        rgba(255,120,100,0.9) 52%,
        rgba(255,60,60,0.08) 70%,
        rgba(255,60,60,0.08) 100%
      );
      background-size: 200% 100%;
      animation: borderSwipeRed 10s linear infinite;
    }
    .cost-contrast-bad:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(255,60,60,0.1);
    }
    .cost-contrast-bad::before {
      background: linear-gradient(to right, transparent, rgba(255,80,80,0.25), transparent);
    }
    .cost-contrast-good {
      background: rgba(201,168,76,0.05);
      border: 1px solid rgba(201,168,76,0.08);
    }
    .cost-contrast-good::after {
      background: linear-gradient(
        90deg,
        rgba(201,168,76,0.08) 0%,
        rgba(201,168,76,0.08) 30%,
        rgba(240,210,120,0.9) 48%,
        rgba(255,230,140,1) 50%,
        rgba(240,210,120,0.9) 52%,
        rgba(201,168,76,0.08) 70%,
        rgba(201,168,76,0.08) 100%
      );
      background-size: 200% 100%;
      animation: borderSwipeGold 10s linear infinite;
      animation-delay: -5s;
    }
    .cost-contrast-good:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(201,168,76,0.12);
    }
    .cost-contrast-good::before {
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.35), transparent);
    }
    .cost-contrast-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 20px;
      font-family: "Syne", sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .cost-contrast-bad .cost-contrast-header { color: rgba(255,120,120,0.7); }
    .cost-contrast-good .cost-contrast-header { color: var(--gold); }
    .cost-contrast-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .cost-contrast-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .cost-contrast-list li {
      font-family: "DM Sans", sans-serif;
      font-size: 13px;
      line-height: 1.5;
      padding-left: 14px;
      position: relative;
    }
    .cost-contrast-bad .cost-contrast-list li {
      color: rgba(255,255,255,0.4);
    }
    .cost-contrast-bad .cost-contrast-list li::before {
      content: "×";
      position: absolute;
      left: 0;
      color: rgba(255,80,80,0.6);
      font-size: 12px;
    }
    .cost-contrast-good .cost-contrast-list li {
      color: rgba(255,255,255,0.7);
    }
    .cost-contrast-good .cost-contrast-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 11px;
    }
    @media (max-width: 640px) {
      .cost-contrast { grid-template-columns: 1fr; }
    }

    /* ── Divider rule ── */
    .cost-rule {
      width: 60px;
      height: 1px;
      background: linear-gradient(to right, var(--gold), transparent);
      margin: 48px 0;
      opacity: 0.5;
    }
    /* Big cost number — now only label and suffix, number is watermark */
    .cost-number-block { margin-top: 0; text-align: center; }
    .cost-number-label {
      font-family: "Syne", sans-serif; font-size: 10px; font-weight: 600;
      letter-spacing: .35em; text-transform: uppercase;
      color: rgba(255,255,255,0.3); margin-bottom: 12px;
    }
    .cost-number {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(52px, 8vw, 100px);
      font-weight: 600;
      line-height: 0.95;
      letter-spacing: -.02em;
      background: linear-gradient(90deg, #6b4c10 0%, #c9a84c 35%, #e0bc5a 50%, #c9a84c 65%, #6b4c10 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: costShimmer 5s linear infinite;
    }
    @keyframes costShimmer {
      0%   { background-position: 100% center; }
      100% { background-position: -100% center; }
    }
    .cost-number-suffix {
      font-family: "DM Sans", sans-serif;
      font-size: 14px;
      color: rgba(255,255,255,0.35);
      margin-top: 12px;
      letter-spacing: 0.02em;
      text-align: center;
    }
    .cost-bridge {
      font-family: "Syne", sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.6);
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 12px;
    }
    .cost-bridge::before {
      content: "";
      display: block;
      flex: 1;
      max-width: 60px;
      height: 1px;
      background: linear-gradient(to left, rgba(201,168,76,0.4), transparent);
    }
    .cost-bridge::after {
      content: "";
      display: block;
      flex: 1;
      max-width: 60px;
      height: 1px;
      background: linear-gradient(to right, rgba(201,168,76,0.4), transparent);
    }
    /* Daily price callout */
    .pricing-daily { margin-top: 10px; font-family: "Syne", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(201,168,76,.65); }
    .solution-card {
      border: 1px solid rgba(201,168,76,0.25);
      border-radius: 8px;
      padding: 40px;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(201,168,76,0.07) 0%, transparent 60%),
        linear-gradient(160deg, rgba(20,15,4,1) 0%, rgba(8,8,8,1) 50%, rgba(12,10,2,1) 100%);
      box-shadow:
        0 0 80px rgba(201,168,76,0.06),
        0 24px 60px rgba(0,0,0,0.7),
        inset 0 1px 0 rgba(201,168,76,0.15);
    }
    /* Top gold bar */
    .solution-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), var(--gold-lt), var(--gold), transparent);
    }
    /* Atmospheric glow orb */
    .solution-card::after {
      content: "";
      position: absolute;
      top: -60px; left: 50%;
      transform: translateX(-50%);
      width: 300px; height: 300px;
      background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .solution-eyebrow {
      font-family: "Syne", sans-serif; font-size: 10px; font-weight: 600;
      letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
    }
    .solution-desc { font-size: 15px; color: var(--white-60); line-height: 1.7; margin-bottom: 32px; }
    .solution-benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
    .solution-benefit { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--white-60); }
    .solution-benefit-icon {
      flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
      background: var(--gold-dim); border: 1px solid var(--gold-bd);
      display: flex; align-items: center; justify-content: center;
    }
    .solution-benefit-icon svg { width: 10px; height: 10px; stroke: var(--gold); fill: none; stroke-width: 2.5; }
    .pricing { border-top: 1px solid var(--white-08); padding-top: 24px; }
    .pricing-label {
      font-family: "Syne", sans-serif; font-size: 10px; font-weight: 600;
      letter-spacing: .3em; text-transform: uppercase; color: var(--white-60); opacity: .5; margin-bottom: 16px;
    }
    .pricing-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
    .pricing-item { font-size: 14px; color: var(--white-60); }
    .pricing-value {
      font-family: "Syne", sans-serif;
      font-size: 42px;
      font-weight: 700;
      line-height: 1;
      background: linear-gradient(
        90deg,
        #6b4c10 0%,
        #c9a84c 35%,
        #e0bc5a 50%,
        #c9a84c 65%,
        #6b4c10 100%
      );
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: costShimmer 5s linear infinite;
    }
    .pricing-divider { height: 1px; background: var(--white-08); }

    /* ── FAQ ── */
    #faq {
      background: var(--bg);
      padding: 120px 60px;
      position: relative;
      overflow: hidden;
    }
    #faq::before {
      content: "";
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 600px; height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
    }
    #faq::after {
      content: "";
      position: absolute;
      top: -200px; left: 50%; transform: translateX(-50%);
      width: 500px; height: 400px;
      background: radial-gradient(ellipse, rgba(201,168,76,0.04) 0%, transparent 70%);
      pointer-events: none;
    }
    .faq-inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
    .faq-header { text-align: center; margin-bottom: 64px; }
    .faq-list { display: flex; flex-direction: column; }
    .faq-item {
      border-bottom: 1px solid rgba(201,168,76,0.1);
      position: relative;
      transition: background 0.4s ease;
    }
    .faq-item:first-child { border-top: 1px solid rgba(201,168,76,0.1); }
    .faq-item.open {
      background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, rgba(11,11,11,0) 60%);
    }
    .faq-item::before {
      content: "";
      position: absolute;
      left: 0; top: 0; bottom: 0; width: 2px;
      background: linear-gradient(to bottom, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    .faq-item.open::before { opacity: 1; }
    .faq-q {
      width: 100%; display: flex; align-items: center; justify-content: space-between;
      padding: 28px 32px;
      background: transparent; border: none; text-align: left;
      gap: 24px; transition: background 0.3s ease;
    }
    .faq-q:hover { background: rgba(201,168,76,0.03); }
    .faq-q span {
      font-family: "Syne", sans-serif;
      font-size: 15px; font-weight: 600;
      color: var(--white);
      transition: color 0.3s ease;
      line-height: 1.5;
    }
    .faq-item.open .faq-q span { color: var(--gold-lt); }
    .faq-icon {
      flex-shrink: 0; stroke: var(--gold);
      opacity: 0.6;
      transition: transform 0.4s cubic-bezier(.22,1,.36,1), opacity 0.3s;
    }
    .faq-item.open .faq-icon { transform: rotate(180deg); opacity: 1; }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(.22,1,.36,1); }
    .faq-item.open .faq-a { max-height: 400px; }
    .faq-a p {
      padding: 0 32px 28px;
      font-size: 15px; color: var(--white-60);
      line-height: 1.8;
      border-top: 1px solid rgba(201,168,76,0.08);
      margin: 0 32px;
      padding: 16px 0 28px;
    }

    /* ── ROI Calculator ── */
    @keyframes roiBorderSweep {
      0%   { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }
    .roi-card {
      background: linear-gradient(160deg, rgba(20,15,4,1) 0%, rgba(8,8,8,1) 50%, rgba(12,10,2,1) 100%);
      border: 1px solid transparent;
      border-radius: 8px;
      padding: 48px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 0 80px rgba(201,168,76,0.05), 0 24px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,168,76,0.12);
    }
    .roi-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 8px;
      padding: 1px;
      background: linear-gradient(
        90deg,
        rgba(201,168,76,0.15) 0%,
        rgba(201,168,76,0.15) 25%,
        rgba(240,210,120,0.9) 48%,
        rgba(255,235,150,1)   50%,
        rgba(240,210,120,0.9) 52%,
        rgba(201,168,76,0.15) 75%,
        rgba(201,168,76,0.15) 100%
      );
      background-size: 200% 100%;
      animation: roiBorderSweep 18s linear infinite;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      pointer-events: none;
      z-index: 1;
    }
    .roi-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), var(--gold-lt), var(--gold), transparent);
      z-index: 2;
    }
    .roi-inputs { display: flex; flex-direction: column; gap: 32px; }
    .roi-field {}
    .roi-field-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 12px;
    }
    .roi-field-label {
      font-family: "Syne", sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white-60);
    }
    .roi-field-val {
      font-family: "Syne", sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--gold);
    }
    .roi-slider {
      width: 100%;
      -webkit-appearance: none;
      appearance: none;
      height: 2px;
      background: rgba(201,168,76,0.2);
      border-radius: 2px;
      outline: none;
    }
    .roi-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--gold);
      cursor: pointer;
      box-shadow: 0 0 10px rgba(201,168,76,0.5);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .roi-slider::-webkit-slider-thumb:hover {
      transform: scale(1.2);
      box-shadow: 0 0 20px rgba(201,168,76,0.7);
    }
    .roi-slider::-moz-range-thumb {
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--gold);
      cursor: pointer;
      border: none;
      box-shadow: 0 0 10px rgba(201,168,76,0.5);
    }
    .roi-slider-range {
      display: flex;
      justify-content: space-between;
      margin-top: 6px;
      font-size: 11px;
      color: rgba(255,255,255,0.25);
      font-family: "DM Sans", sans-serif;
    }
    .roi-results {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 16px;
      align-items: center;
    }
    .roi-result-card {
      border-radius: 6px;
      padding: 24px;
      text-align: center;
    }
    .roi-result-bad {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .roi-result-good {
      background: rgba(201,168,76,0.07);
      border: 1px solid rgba(201,168,76,0.25);
      box-shadow: 0 0 30px rgba(201,168,76,0.08);
    }
    .roi-result-label {
      font-family: "Syne", sans-serif;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--white-60);
      margin-bottom: 10px;
    }
    .roi-result-number {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 600;
      line-height: 1;
      background: linear-gradient(90deg, #6b4c10 0%, #c9a84c 35%, #e0bc5a 50%, #c9a84c 65%, #6b4c10 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: costShimmer 5s linear infinite;
    }
    .roi-result-bad .roi-result-number {
      background: none;
      -webkit-text-fill-color: rgba(255,255,255,0.4);
      animation: none;
    }
    .roi-result-sub {
      font-size: 12px;
      color: rgba(255,255,255,0.35);
      margin-top: 6px;
      line-height: 1.4;
    }
    .roi-result-arrow { display: flex; justify-content: center; }
    .roi-payback {
      margin-top: 28px;
      display: flex;
      justify-content: center;
    }
    .roi-payback-inner {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,168,76,0.07);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 2px;
      padding: 12px 20px;
      font-size: 13px;
      color: var(--white-60);
      line-height: 1.5;
      text-align: center;
    }
    .roi-payback-inner strong { color: var(--gold-lt); }

    @media (max-width: 640px) {
      .roi-results { grid-template-columns: 1fr; }
      .roi-result-arrow { transform: rotate(90deg); }
      .roi-card { padding: 28px 20px; }
      #roi-calc { padding: 80px 30px; }
    }

    /* ── Request Demo ── */
    #request-demo {
      background: var(--bg);
      padding: 120px 60px;
      position: relative;
      overflow: hidden;
    }
    #request-demo::before {
      content: "";
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 600px; height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
    }
    #request-demo::after {
      content: "";
      position: absolute;
      top: -200px; left: 50%; transform: translateX(-50%);
      width: 500px; height: 400px;
      background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 70%);
      pointer-events: none;
    }
    .rd-inner { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
    .rd-header { text-align: center; margin-bottom: 52px; }
    @keyframes rdBorderSweep {
      0%   { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }
    .rd-card {
      background: linear-gradient(
        160deg,
        rgba(20,15,4,1) 0%,
        rgba(8,8,8,1) 50%,
        rgba(12,10,2,1) 100%
      );
      border: 1px solid transparent;
      border-radius: 8px; padding: 52px 48px;
      position: relative; overflow: hidden;
      box-shadow: 0 0 80px rgba(201,168,76,0.05), 0 24px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(201,168,76,0.12);
    }
    .rd-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), var(--gold-lt), var(--gold), transparent);
      z-index: 2;
    }
    .rd-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 8px;
      padding: 1px;
      background: linear-gradient(
        90deg,
        rgba(201,168,76,0.12) 0%,
        rgba(201,168,76,0.12) 25%,
        rgba(240,210,120,0.9) 48%,
        rgba(255,235,150,1)   50%,
        rgba(240,210,120,0.9) 52%,
        rgba(201,168,76,0.12) 75%,
        rgba(201,168,76,0.12) 100%
      );
      background-size: 200% 100%;
      animation: rdBorderSweep 18s linear infinite;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      pointer-events: none;
      z-index: 1;
    }
    .rd-logo { text-align: center; margin-bottom: 32px; padding-bottom: 28px; border-bottom: 1px solid rgba(201,168,76,0.12); }
    .rd-group { margin-bottom: 24px; }
    .rd-label {
      font-family: "Syne", sans-serif; font-size: 11px; font-weight: 600;
      letter-spacing: .2em; text-transform: uppercase; color: var(--white-60); display: block; margin-bottom: 8px;
    }
    .rd-label span { color: var(--gold); }
    .rd-input, .rd-select, .rd-textarea {
      width: 100%;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(201,168,76,0.15);
      border-radius: 4px; padding: 14px 18px;
      font-family: "DM Sans", sans-serif; font-size: 15px; color: var(--white);
      outline: none; transition: border-color .3s, box-shadow .3s, background .3s;
      appearance: none; -webkit-appearance: none;
    }
    .rd-input::placeholder, .rd-textarea::placeholder { color: rgba(255,255,255,.2); }
    .rd-input:focus, .rd-select:focus, .rd-textarea:focus {
      border-color: rgba(201,168,76,0.6);
      background: rgba(201,168,76,0.04);
      box-shadow: 0 0 0 3px rgba(201,168,76,.06);
    }
    .rd-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; }
    .rd-select option { background: #121212; }
    .rd-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
    .rd-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .rd-submit {
      width: 100%; font-family: "Syne", sans-serif; font-size: 13px; font-weight: 600;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--bg); background: var(--gold);
      padding: 18px 36px; border-radius: 2px; border: none; 
      transition: background .3s, transform .2s, box-shadow .3s; margin-top: 8px;
    }
    .rd-submit:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,.25); }
    .rd-reassurance { text-align: center; margin-top: 20px; font-size: 14px; color: var(--white-60); line-height: 1.6; opacity: .7; }
    .rd-success { display: none; text-align: center; padding: 40px 20px; }
    .rd-success-icon {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--gold-dim); border: 1px solid var(--gold-bd);
      display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    }
    .rd-success-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 2; }
    .rd-success h3 { font-family: "Cormorant Garamond", serif; font-size: 32px; font-weight: 400; color: var(--white); margin-bottom: 12px; }
    .rd-success p { font-size: 15px; color: var(--white-60); line-height: 1.7; }

    /* ── Footer ── */
    footer {
      background: var(--bg-2); padding: 48px 60px;
      display: flex; align-items: center; justify-content: space-between;
      border-top: 1px solid var(--white-08);
    }
    .footer-links { display: flex; gap: 28px; }
    .footer-links a { font-size: 13px; color: var(--white-60); text-decoration: none; opacity: .5; transition: opacity .3s, color .3s; }
    .footer-links a:hover { opacity: 1; color: var(--gold); }
    .footer-copy { font-size: 13px; color: var(--white-60); opacity: .5; }

    /* ── Hamburger button ── */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: transparent;
      border: none;
      border-radius: 2px;
      padding: 8px;
    }
    .nav-hamburger:hover { border-color: transparent; }
    .nav-hamburger span {
      display: block;
      width: 18px;
      height: 1.5px;
      background: var(--gold);
      transition: transform .3s ease, opacity .3s ease;
      transform-origin: center;
    }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* ── Mobile dropdown ── */
    .nav-mobile-dropdown {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 99;
      background: rgba(11,11,11,0.98);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--gold-bd);
      padding: 90px 30px 32px;
      transform: translateY(-100%);
      transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .nav-mobile-dropdown.open {
      transform: translateY(0);
    }
    .nav-mobile-dropdown ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .nav-mobile-link {
      display: block;
      font-family: "Syne", sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--white-60);
      text-decoration: none;
      padding: 16px 0;
      border-bottom: 1px solid var(--white-08);
      transition: color .2s, padding-left .2s;
    }
    .nav-mobile-link:hover { color: var(--gold-lt); padding-left: 8px; }
    .nav-mobile-dropdown ul li:last-child .nav-mobile-link { border-bottom: none; }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      nav { padding: 0 24px; }
      .nav-links { display: none; }
      .nav-cta-desktop { display: none; }
      .nav-hamburger { display: flex; }
      .nav-mobile-dropdown { display: block; }
      #cta, #demo, #how, #usecases, #cost, #faq, #request-demo, #trylive { padding: 80px 30px; }
      #pricing-a { padding: 60px 16px; }
      #benefits { padding: 80px 30px; grid-template-columns: 1fr; gap: 50px; }
      .benefits-visual { display: none; }
      .cards-grid { grid-template-columns: repeat(2,1fr); }
      .cost-grid { grid-template-columns: 1fr; gap: 48px; }
      .uc-row { padding: 28px 24px; gap: 24px; }
      .uc-stack { display: none; }
      .rd-card { padding: 36px 24px; }
      .rd-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 20px; text-align: center; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }
    @media (max-width: 640px) {
      .cards-grid { grid-template-columns: 1fr; }
      .cta-actions { flex-direction: column; align-items: center; }
    }
    @media (max-width: 1024px) {
      .uc-carousel-wrap {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding-bottom: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }
      .uc-carousel-wrap::-webkit-scrollbar { display: none; }
      .uc-card-mob {
        flex: 0 0 78vw;
        max-width: 320px;
        scroll-snap-align: start;
        background: var(--bg-2);
        border: 1px solid var(--gold-bd);
        border-radius: 8px;
        padding: 28px 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: relative;
        overflow: hidden;
        transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
      }
      .uc-card-mob::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; height: 1px;
        background: linear-gradient(to right, transparent, rgba(201,168,76,0.6), transparent);
      }
      .uc-card-mob:active {
        border-color: var(--gold);
        background: linear-gradient(160deg, rgba(30,22,4,1) 0%, rgba(12,10,2,1) 100%);
        box-shadow: 0 0 30px rgba(201,168,76,0.1);
      }
      .uc-card-mob .uc-icon {
        width: 44px; height: 44px;
        border: 1px solid var(--gold-bd);
        border-radius: 6px;
        display: flex; align-items: center; justify-content: center;
        background: var(--gold-dim);
      }
      .uc-card-mob .uc-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
      .uc-card-mob .uc-title {
        font-family: "Syne", sans-serif; font-size: 15px; font-weight: 700; color: var(--white);
      }
      .uc-card-mob .uc-desc {
        font-size: 13px; color: var(--white-60); line-height: 1.6;
      }
      /* Scroll hint dots */
      .uc-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin-top: 16px;
      }
      .uc-dot {
        width: 20px; height: 2px;
        background: rgba(201,168,76,0.2);
        border-radius: 2px;
        transition: background 0.3s, width 0.3s;
      }
      .uc-dot.active {
        background: var(--gold);
        width: 32px;
      }
    }
    @media (min-width: 1025px) {
      .uc-carousel-wrap { display: none; }
      .uc-dots { display: none; }
    }

/* ── Try It Live ── */

/* ── Try It Live section ── */
    #trylive {
      background: var(--bg);
      padding: 140px 60px;
      position: relative;
      overflow: hidden;
    }
    #trylive::before {
      content: "";
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      width: 600px; height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.4), transparent);
    }
    #trylive::after {
      content: "";
      position: absolute;
      top: -160px; left: 50%; transform: translateX(-50%);
      width: 700px; height: 500px;
      background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 65%);
      pointer-events: none;
    }
    .trylive-header {
      text-align: center;
      margin-bottom: 0;
      position: relative;
      z-index: 1;
    }
    .trylive-header .headline {
      font-size: clamp(42px, 6vw, 80px);
      margin-bottom: 0;
    }
    .tool-wrap {
      max-width: 720px;
      margin: 0 auto;
    }

    /* ── Tool panel styles (scoped via .tool-wrap) ── */
    :root {
      --black2: #0a0a0a;
      --black3: #111;
      --gold-bd: rgba(201,168,76,0.22);
      --muted:  rgba(255,255,255,0.38);
      --muted2: rgba(255,255,255,0.65);
    }
    /* ── Try It Live toggle button ── */
    .tl-toggle-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: "Syne", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--bg);
      background: linear-gradient(110deg, #b8922e 0%, #c9a84c 25%, #e8c96a 50%, #c9a84c 75%, #b8922e 100%);
      background-size: 250% auto;
      animation: ctaShimmer 5s ease-in-out infinite;
      padding: 17px 48px;
      border-radius: 2px;
      border: none;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.3s ease;
    }
    .tl-toggle-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(201,168,76,0.3);
    }

    /* ── Try It Live panel reveal ── */
    #tlToolWrap {
      animation: fadeUp 0.5s cubic-bezier(.22,1,.36,1) forwards;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.4; transform: scale(0.7); }
    }

    /* ── Try It Live toggle tabs ── */
    .tl-tabs {
      display: flex;
      gap: 0;
      margin-bottom: 3px;
      border: 1px solid var(--gold-bd);
      border-radius: 4px;
      overflow: hidden;
      background: var(--black2);
    }
    .tl-tab {
      flex: 1;
      font-family: 'Syncopate', sans-serif;
      font-size: .38rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      background: transparent;
      border: none;
      padding: 14px 10px;
      cursor: pointer;
      position: relative;
      transition: color 0.3s ease, background 0.3s ease;
      border-right: 1px solid var(--gold-bd);
    }
    .tl-tab:last-child { border-right: none; }
    .tl-tab::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .tl-tab.active {
      color: var(--gold);
      background: rgba(201,168,76,0.06);
    }
    .tl-tab.active::after { opacity: 1; }
    .tl-tab:hover:not(.active) {
      color: rgba(255,255,255,0.6);
      background: rgba(255,255,255,0.02);
    }

    .tl-panel { display: none; }
    .tl-panel.active { display: block; }
      border: 1px solid var(--gold-bd);
      margin-bottom: 3px;
      position: relative;
      overflow: hidden;
    }
    .panel::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(201,168,76,.3), transparent);
    }
    .panel-body { padding: 24px 26px; }
    .panel-label {
      font-family: 'Syncopate', sans-serif;
      font-size: .46rem;
      letter-spacing: .28em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .panel-label::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
    .layout-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      width: 100%;
    }
    .layout-card {
      cursor: pointer;
      border: 2px solid rgba(255,255,255,0.1);
      transition: all .25s;
      position: relative;
      overflow: hidden;
    }
    .layout-card:hover { border-color: rgba(255,255,255,0.3); }
    .layout-card.active {
      border-color: rgba(180,180,180,0.7);
      box-shadow: 0 0 16px rgba(180,180,180,0.12);
    }
    .layout-card.active::after {
      content: '✓';
      position: absolute;
      top: 5px; right: 7px;
      color: #bbb;
      font-size: 11px;
      font-weight: bold;
    }
    .layout-thumb { width: 100%; height: 80px; overflow: hidden; }
    .layout-name {
      font-family: 'Syncopate', sans-serif;
      font-size: 9px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      padding: 6px 8px;
      text-align: center;
      background: #111;
    }
    .layout-card.active .layout-name { color: #bbb; }
    .upload-zone {
      border: 1px dashed var(--gold-bd);
      padding: 28px 20px;
      text-align: center;
      cursor: pointer;
      transition: all .25s;
      background: var(--black3);
      position: relative;
    }
    .upload-zone:hover, .upload-zone.drag-over {
      border-color: var(--gold);
      background: rgba(201,168,76,.04);
    }
    .upload-icon {
      width: 42px; height: 42px;
      border: 1px solid var(--gold-bd);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 10px;
      color: var(--gold);
    }
    .file-ok {
      display: none;
      align-items: center;
      gap: 10px;
      padding: 10px 13px;
      margin-top: 10px;
      background: rgba(201,168,76,.06);
      border: 1px solid var(--gold-bd);
      font-size: .78rem;
      color: var(--muted2);
    }
    .file-ok.show { display: flex; }
    .file-ok svg  { color: var(--gold); flex-shrink: 0; }
    .preview-box {
      display: none;
      margin-top: 10px;
      padding: 11px 13px;
      background: var(--black3);
      border: 1px solid rgba(201,168,76,.1);
      font-size: .72rem;
      color: var(--muted);
      line-height: 1.8;
    }
    .preview-box.show { display: block; }
    .analytics-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 3px;
      margin-top: 12px;
    }
    .analytics-cell {
      background: var(--black3);
      border: 1px solid rgba(201,168,76,0.1);
      padding: 14px 16px;
    }
    .analytics-label {
      font-family: 'Syncopate', sans-serif;
      font-size: .38rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-bottom: 8px;
    }
    .analytics-value       { font-size: .82rem; color: rgba(255,255,255,0.75); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .analytics-value--lg   { font-size: 1.4rem; font-weight: 500; color: #fff; line-height: 1; }
    .analytics-value--gold { font-size: 1.4rem; font-weight: 500; color: var(--gold); line-height: 1; }
    .logo-mode-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 8px;
      margin-bottom: 10px;
    }
    .logo-mode-btn {
      border: 1px solid rgba(255,255,255,0.1);
      padding: 10px 8px;
      cursor: pointer;
      text-align: center;
      transition: all .2s;
      background: var(--black3);
    }
    .logo-mode-btn.active { border-color: rgba(180,180,180,0.7); }
    .logo-mode-btn svg   { display: block; margin: 0 auto 5px; color: var(--muted); }
    .logo-mode-btn.active svg { color: #bbb; }
    .logo-mode-btn span  { font-family: 'Syncopate', sans-serif; font-size: .38rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
    .logo-mode-btn.active span { color: #bbb; }
    .logo-upload-zone {
      border: 1px dashed var(--gold-bd);
      padding: 16px;
      cursor: pointer;
      transition: all .25s;
      background: var(--black3);
      position: relative;
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .logo-upload-zone:hover { border-color: var(--gold); background: rgba(201,168,76,.04); }
    .logo-upload-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
    .logo-preview-wrap {
      width: 56px; height: 56px;
      border: 1px solid var(--gold-bd);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      background: var(--black2);
      overflow: hidden;
    }
    .logo-preview-wrap img { width: 100%; height: 100%; object-fit: contain; }
    .logo-upload-text p    { font-size: .82rem; color: var(--muted2); margin-bottom: 2px; }
    .logo-upload-text span { font-size: .7rem;  color: var(--muted); }
    .logo-info-box {
      padding: 12px 14px;
      background: var(--black3);
      border: 1px solid rgba(255,255,255,0.08);
      font-size: .82rem;
    }
    .tool-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 11px;
    }
    .field               { display: flex; flex-direction: column; gap: 4px; }
    .field.full          { grid-column: 1 / -1; }
    .field-label {
      font-family: 'Syncopate', sans-serif;
      font-size: .43rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .field-input {
      background: var(--black3);
      border: 1px solid rgba(201,168,76,.15);
      padding: 9px 11px;
      font-family: 'DM Sans', sans-serif;
      font-size: .84rem;
      color: #fff;
      transition: border-color .2s;
      width: 100%;
    }
    .field-input:focus      { outline: none; border-color: var(--gold); }
    .field-input::placeholder { color: var(--muted); }
    .preview-section        { display: none; margin-bottom: 3px; }
    .preview-section.show   { display: block; }
    .invoice-preview        { width: 100%; font-family: helvetica,arial,sans-serif; font-size: 11px; overflow: hidden; }
    .btn-row     { display: flex; gap: 10px; }
    .preview-btn {
      flex: 1;
      padding: 14px;
      background: transparent;
      border: 1px solid var(--gold-bd);
      color: var(--gold);
      cursor: pointer;
      font-family: 'Syncopate', sans-serif;
      font-size: .46rem;
      letter-spacing: .16em;
      font-weight: 700;
      text-transform: uppercase;
      transition: all .25s;
    }
    .preview-btn:hover { background: rgba(201,168,76,.08); }
    .gen-btn {
      flex: 2;
      padding: 15px;
      background: linear-gradient(135deg, var(--gold), #8a6018);
      color: #040404;
      border: none;
      cursor: pointer;
      font-family: 'Syncopate', sans-serif;
      font-size: .48rem;
      letter-spacing: .16em;
      font-weight: 700;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all .3s;
    }
    .gen-btn:hover:not(:disabled) { background: linear-gradient(135deg, #e8c96a, var(--gold)); box-shadow: 0 10px 28px rgba(201,168,76,.25); }
    .gen-btn:disabled { opacity: .35; cursor: not-allowed; }
    .progress       { display: none; margin-bottom: 10px; }
    .progress.show  { display: block; }
    .prog-bg        { height: 3px; background: rgba(201,168,76,.1); margin-bottom: 7px; }
    .prog-fill      { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), #e8c96a); transition: width .25s; }
    .prog-text {
      font-family: 'Syncopate', sans-serif;
      font-size: .42rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
      text-align: center;
    }
    .tool-success {
      display: none;
      align-items: center;
      gap: 10px;
      padding: 13px;
      margin-bottom: 12px;
      background: rgba(201,168,76,.06);
      border: 1px solid var(--gold-bd);
      font-size: .8rem;
      color: #e8c96a;
    }
    .tool-success.show { display: flex; }
    .tool-error {
      display: none;
      padding: 10px 13px;
      margin-bottom: 10px;
      background: rgba(180,60,30,.1);
      border: 1px solid rgba(180,60,30,.3);
      font-size: .76rem;
      color: #e08060;
    }
    .tool-error.show { display: block; }
    .privacy-note {
      display: flex;
      align-items: flex-start;
      gap: 7px;
      margin-top: 10px;
    }
    .privacy-note svg  { flex-shrink: 0; margin-top: 1px; }
    .privacy-note span { font-size: .7rem; color: rgba(255,255,255,0.3); line-height: 1.5; }
    .reset-btn {
      background: none;
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.5);
      font-family: 'Syncopate', sans-serif;
      font-size: .38rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 4px 10px;
      cursor: pointer;
      flex-shrink: 0;
      transition: all .2s;
    }
    .reset-btn:hover { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.8); }


    @media (max-width: 560px) {
      .layout-grid    { grid-template-columns: 1fr 1fr; }
      .tool-grid      { grid-template-columns: 1fr; }
      .field.full     { grid-column: 1; }
      .btn-row        { flex-direction: column; }
      .analytics-grid { grid-template-columns: 1fr; }
    }



    /* ── Pricing Version B: Editorial ── */
    #pricing-b {
      padding: 120px 60px;
      max-width: 860px;
      margin: 0 auto;
    }
    .pricing-b-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .pricing-b-left {}
    .pricing-b-prose {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(22px, 3vw, 30px);
      font-weight: 300;
      line-height: 1.55;
      color: rgba(255,255,255,0.85);
      margin-bottom: 32px;
    }
    .pricing-b-prose strong {
      font-weight: 600;
      background: linear-gradient(135deg, #C9A84C, #E6C96A);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .pricing-b-sub {
      font-family: "Syne", sans-serif;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.4);
      margin-bottom: 36px;
    }
    .pricing-b-right {
      padding-top: 8px;
    }
    .pricing-b-features {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 36px;
    }
    .pricing-b-feature {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-family: "DM Sans", sans-serif;
      font-size: 14px;
      color: rgba(255,255,255,0.65);
      line-height: 1.5;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(201,168,76,0.08);
    }
    .pricing-b-feature:last-child { border-bottom: none; }
    .pricing-b-feature svg { flex-shrink: 0; margin-top: 2px; }


  </style>
/* ── Hero rotating trust text ── */

.hero-rotate-wrap {
  display: block;
  overflow: hidden;
  height: 1.4em;
}
.hero-rotate-inner {
  display: flex;
  flex-direction: column;
  animation: heroRotate 20s cubic-bezier(.4,0,.2,1) infinite;
}
.hero-rotate-inner span {
  display: block;
  height: 1.4em;
  line-height: 1.4em;
  text-align: center;
}
@keyframes heroRotate {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(0); }
  25%  { transform: translateY(-1.4em); }
  45%  { transform: translateY(-1.4em); }
  50%  { transform: translateY(-2.8em); }
  70%  { transform: translateY(-2.8em); }
  75%  { transform: translateY(-4.2em); }
  95%  { transform: translateY(-4.2em); }
  100% { transform: translateY(-5.6em); }
}


    /* ── Pricing card with aurora background ── */
    #pricing-a {
      position: relative;
      overflow: hidden;
      padding: 0;
      background: #030206;
      min-height: 100vh;
    }
    #aurora-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
    }
    .pricing-topbar {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, #c9a84c, #e8c96a, #c9a84c, transparent);
      z-index: 3;
    }
    .pricing-inner {
      position: relative;
      z-index: 2;
      padding: 120px 60px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .pricing-eyebrow {
      font-family: "Syne", sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.6);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 32px;
    }
    .pricing-eyebrow::before,
    .pricing-eyebrow::after {
      content: "";
      display: block;
      width: 36px;
      height: 1px;
      background: rgba(201,168,76,0.35);
    }
    .pricing-price {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(100px, 18vw, 160px);
      font-weight: 300;
      line-height: 0.88;
      letter-spacing: -0.03em;
      background: linear-gradient(90deg, #6b4c10 0%, #c9a84c 30%, #f0d878 50%, #c9a84c 70%, #6b4c10 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: costShimmer 7s linear infinite;
    }
    .pricing-period {
      font-family: "Syne", sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.45);
      margin-top: 14px;
      margin-bottom: 52px;
    }
    .pricing-divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,168,76,0.18), transparent);
      margin-bottom: 44px;
    }
    .pricing-features {
      display: flex;
      flex-direction: column;
      gap: 0;
      width: 100%;
      max-width: 420px;
      margin: 0 auto 48px;
    }
    .pricing-feat {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.04);
      font-family: "DM Sans", sans-serif;
      font-size: 15px;
      color: rgba(255,255,255,0.68);
      text-align: center;
    }
    .pricing-feat:last-child { border-bottom: none; }
    .feat-mark {
      flex-shrink: 0;
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .feat-mark::before {
      content: "";
      display: block;
      width: 7px;
      height: 7px;
      background: linear-gradient(135deg, #e8c96a, #c9a84c);
      transform: rotate(45deg);
      box-shadow: 0 0 8px rgba(201,168,76,0.6);
    }
    .pricing-sub {
      font-family: "Syne", sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(201,168,76,0.5);
      margin-bottom: 36px;
    }
    .pricing-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      max-width: 420px;
      font-family: "Syne", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #080500;
      background: linear-gradient(110deg, #b8922e 0%, #c9a84c 25%, #e8c96a 50%, #c9a84c 75%, #b8922e 100%);
      background-size: 250% auto;
      animation: ctaShimmer 5s ease-in-out infinite;
      padding: 20px 40px;
      border-radius: 3px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.3s ease;
    }
    .pricing-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 48px rgba(201,168,76,0.3);
    }
    .pricing-cta svg { transition: transform 0.25s ease; }
    .pricing-cta:hover svg { transform: translateX(4px); }

    @media (max-width: 560px) {
      #pricing-a { padding: 40px 12px; }
      .pricing-inner { padding: 80px 30px; }
      .pricing-features { max-width: 100%; }
      .pricing-cta { max-width: 100%; }
    }
    /* ── Small mobile (375px and below) ── */
    @media (max-width: 400px) {
      .hero-headline { font-size: clamp(34px, 10vw, 44px); }
      .hero-inner { padding-left: 18px; padding-right: 18px; }
      .hero-cta, .hero-ghost { padding: 15px 20px; font-size: 11px; }
      .hero-ghost-clear { padding: 15px 20px; }

      .headline { font-size: clamp(30px, 9vw, 44px); }

      #cost { padding: 60px 18px; }
      .cost-contrast { grid-template-columns: 1fr; }
      .cost-number { font-size: clamp(36px, 12vw, 60px); }

      .roi-card { padding: 24px 16px; }
      .roi-results { grid-template-columns: 1fr; }
      .roi-result-arrow { transform: rotate(90deg); }

      .cards-grid { grid-template-columns: 1fr; gap: 1px; }
      .card { padding: 32px 24px; }

      #benefits { padding: 60px 18px; }
      .benefits-list { grid-template-columns: 1fr 1fr; gap: 10px; }
      .benefit { padding: 16px 12px; }

      #trylive { padding: 60px 18px; }
      .tool-wrap { padding: 0; }
      .panel-body { padding: 18px 16px; }
      .tool-grid { grid-template-columns: 1fr; }
      .field.full { grid-column: 1; }
      .analytics-grid { grid-template-columns: 1fr; }
      .btn-row { flex-direction: column; }

      .pricing-inner { padding: 60px 24px; }
      .pricing-price { font-size: clamp(80px, 20vw, 110px); }
      .pricing-features { max-width: 100%; }
      .pricing-cta { max-width: 100%; padding: 18px 24px; }
      .pricing-feat { font-size: 14px; gap: 12px; }

      #faq { padding: 60px 18px; }
      .faq-q { padding: 20px 16px; }
      .faq-a p { padding: 12px 0 20px; margin: 0 16px; }

      #request-demo { padding: 60px 18px; }
      .rd-card { padding: 32px 18px; }
      .rd-row { grid-template-columns: 1fr; }
      .rd-submit { padding: 16px 24px; }

      #usecases { padding: 60px 18px; }
      .uc-card-mob { flex: 0 0 85vw; }

      footer { padding: 36px 20px; }
    }