    /* ── Tokens ─────────────────────────────────────────── */
    :root {
      --ink:        #f1f5f9;
      --ink-2:      #94a3b8;
      --ink-3:      #4b5563;
      --bg:         #000;
      --surf-1:     #0c0c0c;
      --surf-2:     #111;
      --surf-3:     #171717;
      --line:       rgba(255,255,255,.07);
      --line-hi:    rgba(255,255,255,.12);
      --accent:     #f97316;
      --accent-d:   #c45f0c;
      --accent-glow:rgba(249,115,22,.22);
      --accent-dim: rgba(249,115,22,.08);
      --accent-mid: rgba(249,115,22,.14);
      --green:      #22c55e;
      --ez: cubic-bezier(.16,1,.3,1);
      --ez-out: cubic-bezier(.32,.72,0,1);
    }

    *,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
    html { scroll-behavior:smooth; }
    body {
      font-family:'Plus Jakarta Sans',sans-serif;
      background:var(--bg); color:var(--ink);
      line-height:1.65; -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }
    a { text-decoration:none; color:inherit; }
    img { display:block; max-width:100%; }
    button { font-family:inherit; cursor:pointer; border:none; background:none; }

    /* ── Film grain overlay (fixed, never on scrolling content) ── */
    body::after {
      content:''; position:fixed; inset:0; z-index:400; pointer-events:none;
      opacity:.04;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }
    @media (prefers-reduced-motion:reduce) { body::after { display:none; } }

    /* ── Screen-reader utility ──────────────────────────── */
    .sr-only {
      position:absolute; width:1px; height:1px; padding:0; margin:-1px;
      overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border-width:0;
    }

    /* ── Skip link ──────────────────────────────────────── */
    .skip {
      position:absolute; top:-48px; left:16px; z-index:9999;
      padding:8px 18px; background:var(--accent); color:#fff;
      border-radius:100px; font-weight:600; font-size:14px;
      transition:top .2s var(--ez);
    }
    .skip:focus { top:16px; }

    /* ── Layout ─────────────────────────────────────────── */
    .wrap { max-width:1160px; margin:0 auto; padding:0 28px; }
    .wrap-wide { max-width:1360px; margin:0 auto; padding:0 28px; }

    /* ── Type scale ─────────────────────────────────────── */
    .display {
      font-size:clamp(44px,6vw,84px);
      font-weight:800; line-height:1.04;
      letter-spacing:-0.025em;
      text-wrap:balance;
    }
    .heading {
      font-size:clamp(28px,3.5vw,48px);
      font-weight:800; line-height:1.1;
      letter-spacing:-0.022em;
      text-wrap:balance;
    }
    .body-lg { font-size:clamp(16px,1.5vw,19px); color:var(--ink-2); line-height:1.7; }
    .body-md { font-size:15px; color:var(--ink-2); line-height:1.65; }
    .label { font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }

    /* ── Pill label (used sparingly, not on every section) ── */
    .pill-label {
      display:inline-flex; align-items:center; gap:6px;
      padding:5px 14px; border-radius:100px;
      background:var(--accent-dim); border:1px solid var(--accent-mid);
      font-size:11px; font-weight:700; letter-spacing:.08em;
      text-transform:uppercase; color:var(--accent);
    }

    /* ── Buttons ─────────────────────────────────────────── */
    .btn-primary {
      display:inline-flex; align-items:center; gap:10px;
      padding:14px 20px 14px 28px;
      background:var(--accent); color:#fff;
      border-radius:100px; font-size:15px; font-weight:700;
      transition:background .2s var(--ez), transform .15s var(--ez), box-shadow .2s var(--ez);
    }
    .btn-primary:hover {
      background:var(--accent-d);
      transform:translateY(-1px);
      box-shadow:0 12px 36px var(--accent-glow);
    }
    .btn-primary:active { transform:scale(.98); }
    .btn-icon {
      width:32px; height:32px; border-radius:50%;
      background:rgba(255,255,255,.18);
      display:flex; align-items:center; justify-content:center;
      transition:transform .2s var(--ez);
    }
    .btn-primary:hover .btn-icon { transform:translate(2px,-2px) scale(1.05); }
    .btn-icon svg { width:14px; height:14px; color:#fff; }

    .btn-ghost {
      display:inline-flex; align-items:center; gap:8px;
      padding:13px 24px; border-radius:100px;
      color:var(--ink-2); border:1px solid var(--line-hi);
      font-size:15px; font-weight:600;
      transition:all .2s var(--ez);
    }
    .btn-ghost:hover { color:var(--ink); border-color:rgba(255,255,255,.25); background:rgba(255,255,255,.04); }

    /* App Store button */
    .btn-appstore {
      display:inline-flex; align-items:center; gap:12px;
      padding:13px 22px; background:#fff; color:#000;
      border-radius:100px; font-size:15px; font-weight:700;
      transition:all .2s var(--ez);
    }
    .btn-appstore:hover { background:#f0f0f0; transform:translateY(-1px); box-shadow:0 12px 32px rgba(255,255,255,.15); }
    .btn-appstore:active { transform:scale(.98); }
    .btn-appstore-text { display:flex; flex-direction:column; align-items:flex-start; }
    .btn-appstore-small { font-size:10px; font-weight:500; opacity:.6; line-height:1; }
    .btn-appstore-big { font-size:16px; font-weight:800; line-height:1.2; margin-top:1px; }
    .apple-icon { width:22px; height:22px; flex-shrink:0; }

    /* ── Floating pill nav ─────────────────────────────── */
    #nav {
      position:fixed; top:20px; left:50%; transform:translateX(-50%);
      z-index:200;
      display:flex; align-items:center; justify-content:space-between;
      gap:32px;
      padding:10px 12px 10px 20px;
      border-radius:100px;
      border:1px solid var(--line);
      background:rgba(8,8,8,.72);
      backdrop-filter:blur(24px); -webkit-backdrop-filter:blur(24px);
      width:min(1000px, calc(100vw - 32px));
      transition:border-color .3s, background .3s;
    }
    #nav.tinted { background:rgba(8,8,8,.92); border-color:var(--line-hi); }
    .nav-logo {
      display:flex; align-items:center; gap:9px;
      font-size:18px; font-weight:800; letter-spacing:-0.02em;
      flex-shrink:0;
    }
    .nav-logo-icon {
      width:30px; height:30px; border-radius:8px; overflow:hidden; flex-shrink:0;
    }
    .nav-logo-icon img { width:100%; height:100%; }
    .nav-links { display:flex; align-items:center; gap:2px; list-style:none; }
    .nav-links a {
      padding:8px 14px; border-radius:100px;
      font-size:13px; font-weight:500; color:var(--ink-2);
      transition:all .15s;
    }
    .nav-links a:hover { color:var(--ink); background:rgba(255,255,255,.06); }
    .nav-cta { display:flex; align-items:center; gap:10px; flex-shrink:0; }
    .nav-cta .btn-appstore {
      padding:9px 18px; font-size:13px; border-radius:100px;
    }
    .nav-cta .btn-appstore-big { font-size:14px; }

    /* Mobile nav */
    .ham {
      display:none; width:36px; height:36px;
      background:rgba(255,255,255,.07); border-radius:50%;
      flex-direction:column; align-items:center; justify-content:center; gap:5px;
      flex-shrink:0;
    }
    .ham span {
      display:block; width:16px; height:1.5px; background:var(--ink);
      border-radius:2px; transition:all .3s var(--ez); transform-origin:center;
    }
    .ham.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
    .ham.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
    .ham.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }
    .mob-overlay {
      position:fixed; inset:0; z-index:190;
      background:rgba(0,0,0,.95); backdrop-filter:blur(32px);
      display:flex; flex-direction:column; justify-content:center;
      padding:48px 32px;
      opacity:0; pointer-events:none;
      transition:opacity .3s var(--ez);
    }
    .mob-overlay.open { opacity:1; pointer-events:all; }
    .mob-links { list-style:none; display:flex; flex-direction:column; gap:4px; margin-bottom:32px; }
    .mob-links a {
      display:block; padding:18px 0;
      font-size:28px; font-weight:700; color:var(--ink);
      border-bottom:1px solid var(--line);
      opacity:0; transform:translateY(16px);
      transition:opacity .4s var(--ez), transform .4s var(--ez), color .15s;
    }
    .mob-links a:hover { color:var(--accent); }
    .mob-overlay.open .mob-links a {
      opacity:1; transform:translateY(0);
    }
    .mob-overlay.open .mob-links li:nth-child(1) a { transition-delay:.05s; }
    .mob-overlay.open .mob-links li:nth-child(2) a { transition-delay:.1s; }
    .mob-overlay.open .mob-links li:nth-child(3) a { transition-delay:.15s; }
    .mob-overlay.open .mob-links li:nth-child(4) a { transition-delay:.2s; }
    .mob-cta { opacity:0; transform:translateY(12px); transition:opacity .4s var(--ez) .25s, transform .4s var(--ez) .25s; }
    .mob-overlay.open .mob-cta { opacity:1; transform:translateY(0); }

    /* ── Hero ────────────────────────────────────────────── */
    .hero {
      min-height:100dvh;
      display:flex; flex-direction:column; align-items:center; justify-content:center;
      padding:120px 0 60px;
      position:relative; overflow:hidden;
      text-align:center;
    }
    .hero-grid-bg {
      position:absolute; inset:0; pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
      background-size:80px 80px;
      mask-image:radial-gradient(ellipse 90% 65% at 50% 0%, black 30%, transparent 100%);
      -webkit-mask-image:radial-gradient(ellipse 90% 65% at 50% 0%, black 30%, transparent 100%);
    }
    .hero-glow {
      position:absolute; inset:0; pointer-events:none;
      background:
        radial-gradient(ellipse 70% 50% at 50% -8%, rgba(249,115,22,.13) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 15% 60%, rgba(59,130,246,.06) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 85% 55%, rgba(249,115,22,.06) 0%, transparent 55%);
    }
    .hero-inner {
      position:relative; z-index:1;
      display:flex; flex-direction:column; align-items:center; gap:28px;
    }
    .hero-status {
      display:flex; align-items:center; gap:8px;
      padding:6px 16px; border-radius:100px;
      background:rgba(255,255,255,.05); border:1px solid var(--line-hi);
      font-size:12px; font-weight:600; color:var(--ink-2);
    }
    .live-dot {
      width:6px; height:6px; border-radius:50%;
      background:var(--green); box-shadow:0 0 8px var(--green);
      animation:blink 2s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }
    .hero-heading { max-width:860px; }
    .hero-heading strong { color:var(--accent); }
    .hero-sub { max-width:480px; }
    .hero-actions { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }
    .hero-note { font-size:12px; color:var(--ink-3); }
    .hero-demo-ico { display:inline-flex; width:14px; height:14px; color:var(--accent); }
    .hero-demo-ico svg { width:100%; height:100%; }

    /* Social proof strip */
    .hero-social { display:flex; align-items:center; gap:12px; font-size:13px; color:var(--ink-3); }
    .avs { display:flex; }
    .av {
      width:26px; height:26px; border-radius:50%; border:2px solid #000;
      margin-right:-7px; display:flex; align-items:center; justify-content:center;
      font-size:9px; font-weight:700; color:#fff;
    }
    .av:last-child { margin-right:0; }

    /* ── Phone cluster ─────────────────────────────────── */
    .phones {
      position:relative; width:100%; max-width:820px;
      height:480px; margin-top:52px; perspective:1200px;
    }
    .phones-glow {
      position:absolute; inset:0; pointer-events:none;
      background:radial-gradient(ellipse 70% 60% at 50% 50%, rgba(249,115,22,.1) 0%, transparent 70%);
      filter:blur(20px);
    }
    .ph {
      position:absolute; border-radius:32px; overflow:hidden;
      border:1px solid rgba(255,255,255,.1);
      box-shadow:0 0 0 1px rgba(255,255,255,.04), 0 28px 70px rgba(0,0,0,.75);
      transition:transform .4s var(--ez), box-shadow .4s var(--ez);
    }
    .ph img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
    .ph-c {
      width:200px; height:433px; z-index:3;
      left:50%; top:50%; transform:translate(-50%,-50%);
      box-shadow:0 0 0 1px rgba(255,255,255,.06), 0 32px 80px rgba(0,0,0,.8), 0 0 60px rgba(249,115,22,.18);
    }
    .ph-l {
      width:168px; height:363px; z-index:2;
      left:calc(50% - 224px); top:50%;
      transform:translateY(-43%) rotateY(14deg) rotateZ(-2.5deg);
      opacity:.82;
    }
    .ph-r {
      width:168px; height:363px; z-index:2;
      left:calc(50% + 56px); top:50%;
      transform:translateY(-43%) rotateY(-14deg) rotateZ(2.5deg);
      opacity:.82;
    }
    .phones:hover .ph-l { transform:translateY(-45%) rotateY(10deg) rotateZ(-2deg) translateX(-6px); }
    .phones:hover .ph-r { transform:translateY(-45%) rotateY(-10deg) rotateZ(2deg) translateX(6px); }
    .phones:hover .ph-c {
      box-shadow:0 0 0 1px rgba(255,255,255,.08), 0 40px 100px rgba(0,0,0,.85), 0 0 80px rgba(249,115,22,.28);
    }

    /* ── Logos strip ─────────────────────────────────────── */
    .logos-sec {
      padding:48px 0;
      border-top:1px solid var(--line); border-bottom:1px solid var(--line);
      overflow:hidden; position:relative;
    }
    .logos-label { text-align:center; font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-3); margin-bottom:28px; }
    .marquee-wrap { position:relative; }
    .mq-fade-l,.mq-fade-r {
      position:absolute; top:0; bottom:0; width:120px; z-index:2; pointer-events:none;
    }
    .mq-fade-l { left:0; background:linear-gradient(to right,var(--bg),transparent); }
    .mq-fade-r { right:0; background:linear-gradient(to left,var(--bg),transparent); }
    .mq-track {
      display:flex; gap:0; animation:mq 30s linear infinite; width:max-content;
    }
    .mq-track:hover { animation-play-state:paused; }
    @keyframes mq { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    .mq-item {
      display:flex; align-items:center; padding:0 36px;
      font-size:14px; font-weight:700; color:rgba(255,255,255,.14);
      border-right:1px solid var(--line); white-space:nowrap;
      letter-spacing:.02em;
    }

    /* ── Features bento ─────────────────────────────────── */
    .bento {
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:10px;
    }
    /* Card base */
    .bc {
      background:var(--surf-1);
      border-radius:20px; overflow:hidden;
      border:1px solid var(--line);
      transition:border-color .25s, transform .25s var(--ez);
      position:relative;
    }
    .bc:hover { border-color:var(--line-hi); transform:translateY(-2px); }
    /* Sizes */
    .bc-1 { grid-column:span 7; } /* large */
    .bc-2 { grid-column:span 5; } /* medium */
    .bc-3 { grid-column:span 4; } /* small */
    .bc-4 { grid-column:span 8; } /* wide */
    .bc-5 { grid-column:span 6; } /* half */
    .bc-full { grid-column:1/-1; } /* full */
    .bc-peek { min-height:300px; } /* tall enough for the peeking device */

    .bc-body { padding:32px 32px 28px; }
    .bc-icon {
      width:44px; height:44px; border-radius:10px;
      background:var(--accent-dim); border:1px solid var(--accent-mid);
      display:flex; align-items:center; justify-content:center; margin-bottom:20px;
    }
    .bc-icon svg { width:20px; height:20px; color:var(--accent); }
    .bc-title { font-size:17px; font-weight:700; margin-bottom:9px; }
    .bc-desc { font-size:14px; color:var(--ink-2); line-height:1.6; max-width:320px; }

    /* Large card with peeking framed device (shows clean top of screen) */
    .bc-device {
      position:absolute; bottom:-56px; right:28px;
      width:188px; pointer-events:none;
      border-radius:26px; overflow:hidden;
      border:5px solid #1c1c1e;
      box-shadow:0 24px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.05);
      transform:rotate(-3deg);
      transition:transform .4s var(--ez);
    }
    .bc:hover .bc-device { transform:rotate(-3deg) translateY(-6px); }
    .bc-device img { width:100%; display:block; object-fit:cover; object-position:top; }
    /* second device (overlapping) for the wide AI card */
    .bc-device-sm {
      position:absolute; bottom:-44px; right:24px;
      width:152px; pointer-events:none;
      border-radius:22px; overflow:hidden;
      border:5px solid #1c1c1e;
      box-shadow:0 20px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05);
      transform:rotate(3deg);
      transition:transform .4s var(--ez);
    }
    .bc:hover .bc-device-sm { transform:rotate(3deg) translateY(-6px); }
    .bc-device-sm img { width:100%; display:block; object-fit:cover; object-position:top; }

    /* Feature card: full-width horizontal */
    .bc-h { display:flex; align-items:center; gap:40px; padding:36px 36px; position:relative; overflow:hidden; }
    .bc-h .bc-body { padding:0; flex:1; max-width:460px; }
    .bc-h-vis { flex-shrink:0; width:200px; height:200px; border-radius:24px; overflow:hidden; border:5px solid #1c1c1e; box-shadow:0 20px 50px rgba(0,0,0,.5); transform:rotate(2deg); transition:transform .4s var(--ez); }
    .bc-h:hover .bc-h-vis { transform:rotate(2deg) translateY(-6px); }
    .bc-h-vis img { width:100%; height:100%; display:block; object-fit:cover; object-position:top; }

    /* ── Screenshots strip ─────────────────────────────── */
    .ss-outer { overflow:hidden; position:relative; }
    .ss-fade-l,.ss-fade-r {
      position:absolute; top:0; bottom:0; width:160px; z-index:2; pointer-events:none;
    }
    .ss-fade-l { left:0; background:linear-gradient(to right,var(--bg),transparent); }
    .ss-fade-r { right:0; background:linear-gradient(to left,var(--bg),transparent); }
    .ss-track {
      display:flex; gap:24px; padding:0 160px 0;
      overflow-x:auto; scroll-snap-type:x mandatory;
      -webkit-overflow-scrolling:touch; scrollbar-width:none; cursor:grab;
    }
    .ss-track:active { cursor:grabbing; }
    .ss-track::-webkit-scrollbar { display:none; }
    .ss-card {
      flex-shrink:0; display:flex; flex-direction:column; align-items:center; gap:18px;
      scroll-snap-align:center;
    }
    .ss-lbl { font-size:15px; font-weight:700; color:var(--ink); text-align:center; max-width:210px; line-height:1.3; }
    /* Device frame: real iPhone proportions, full screen, moderate size */
    .ss-bezel-outer {
      padding:7px;
      background:linear-gradient(160deg,#2a2a2c,#161617);
      border-radius:38px;
      box-shadow:0 1px 0 rgba(255,255,255,.08) inset;
    }
    .ss-bezel-inner {
      width:230px; aspect-ratio:390/844;
      border-radius:31px; overflow:hidden; position:relative;
      box-shadow:0 24px 60px rgba(0,0,0,.7), 0 0 40px rgba(249,115,22,.07);
      transition:transform .35s var(--ez), box-shadow .35s var(--ez);
    }
    .ss-card:hover .ss-bezel-inner {
      transform:translateY(-6px);
      box-shadow:0 32px 76px rgba(0,0,0,.8), 0 0 60px rgba(249,115,22,.16);
    }
    .ss-bezel-inner img { width:100%; height:100%; object-fit:cover; object-position:top; display:block; }
    /* Notch */
    .ss-bezel-inner::before {
      content:''; position:absolute; top:9px; left:50%; transform:translateX(-50%);
      width:74px; height:20px; background:#000; border-radius:12px; z-index:2;
    }

    /* ── "How it works" ──────────────────────────────────── */
    .process-grid {
      display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
      background:var(--line); border:1px solid var(--line); border-radius:20px; overflow:hidden;
    }
    .proc-step { background:var(--surf-1); padding:40px 36px; }
    .proc-marker {
      width:36px; height:36px; border-radius:10px;
      background:var(--surf-3); border:1px solid var(--line-hi);
      display:flex; align-items:center; justify-content:center;
      font-size:13px; font-weight:800; color:var(--accent);
      margin-bottom:24px;
    }
    .proc-title { font-size:18px; font-weight:700; margin-bottom:10px; }
    .proc-desc { font-size:14px; color:var(--ink-2); line-height:1.65; }

    /* ── AI split ─────────────────────────────────────────── */
    .ai-split {
      display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
    }
    /* Double-bezel AI card */
    .ai-bezel-outer {
      padding:8px;
      background:var(--surf-2);
      border-radius:28px;
      border:1px solid var(--line-hi);
      box-shadow:0 0 60px rgba(249,115,22,.07);
    }
    .ai-card {
      background:var(--surf-3);
      border-radius:22px;
      padding:28px;
      border:1px solid rgba(255,255,255,.04);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
      position:relative; overflow:hidden;
    }
    .ai-card::before {
      content:''; position:absolute; top:0; left:0; right:0; height:1px;
      background:linear-gradient(90deg,transparent,rgba(249,115,22,.5),transparent);
    }
    .ai-chip {
      display:inline-flex; align-items:center; gap:5px;
      padding:4px 12px; border-radius:100px;
      background:var(--accent-dim); border:1px solid var(--accent-mid);
      font-size:10px; font-weight:700; color:var(--accent); letter-spacing:.06em;
      text-transform:uppercase; margin-bottom:20px;
    }
    .ai-chip svg { width:10px; height:10px; }
    .ai-prof { display:flex; align-items:center; gap:12px; margin-bottom:24px; }
    .ai-av {
      width:40px; height:40px; border-radius:50%;
      background:linear-gradient(135deg,#f97316,#fb923c);
      display:flex; align-items:center; justify-content:center;
      font-size:14px; font-weight:800; color:#fff; flex-shrink:0;
    }
    .ai-inf h4 { font-size:14px; font-weight:700; }
    .ai-inf p { font-size:11px; color:var(--ink-3); margin-top:2px; }
    .ai-rows { display:flex; flex-direction:column; gap:10px; }
    .ai-row { background:rgba(255,255,255,.03); border:1px solid var(--line); border-radius:12px; padding:14px; }
    .ai-row-lbl { font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--accent); margin-bottom:8px; }
    .ai-row-pills { display:flex; flex-wrap:wrap; gap:5px; }
    .ai-pill {
      padding:4px 11px; border-radius:100px;
      background:rgba(255,255,255,.05); border:1px solid var(--line);
      font-size:11px; font-weight:500; color:var(--ink-2);
    }
    .ai-row-text { font-size:12px; color:var(--ink-2); line-height:1.6; }
    .ai-copy { display:flex; flex-direction:column; gap:20px; }
    .check-list { list-style:none; display:flex; flex-direction:column; gap:10px; margin-top:4px; }
    .check-list li { display:flex; align-items:flex-start; gap:10px; font-size:15px; color:var(--ink-2); line-height:1.6; }
    .check-list li svg { width:16px; height:16px; color:var(--accent); flex-shrink:0; margin-top:3px; }

    /* ── Pricing ─────────────────────────────────────────── */
    .cur-row {
      display:flex; gap:4px;
      background:var(--surf-2); border:1px solid var(--line);
      border-radius:100px; padding:4px; margin-bottom:48px;
      width:fit-content;
    }
    .cur-btn {
      padding:8px 22px; border-radius:100px;
      font-size:13px; font-weight:700; color:var(--ink-3);
      transition:all .2s var(--ez); cursor:pointer;
    }
    .cur-btn.on { background:var(--accent); color:#fff; }
    .pr-grid {
      display:grid; grid-template-columns:repeat(6,1fr); gap:10px;
    }
    .pr-card {
      /* Double-bezel pricing card */
      padding:4px;
      background:var(--surf-1);
      border-radius:22px; border:1px solid var(--line);
      transition:border-color .2s, transform .25s var(--ez);
      position:relative;
    }
    .pr-card:hover { border-color:var(--line-hi); transform:translateY(-4px); }
    .pr-card.feat { border-color:rgba(249,115,22,.35); background:rgba(249,115,22,.05); }
    .pr-card.feat:hover { box-shadow:0 0 48px rgba(249,115,22,.12); }
    .pr-inner {
      background:var(--surf-2); border-radius:18px; padding:24px;
      border:1px solid rgba(255,255,255,.04);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
      display:flex; flex-direction:column; gap:18px; height:100%;
    }
    .pr-pop {
      position:absolute; top:-11px; left:50%; transform:translateX(-50%);
      padding:4px 14px; border-radius:100px;
      background:var(--accent); color:#fff;
      font-size:10px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; white-space:nowrap;
    }
    .pr-tier { font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-3); }
    .pr-price { display:flex; align-items:baseline; gap:2px; margin-top:4px; }
    .pr-cur { font-size:14px; font-weight:600; color:var(--ink-2); margin-top:4px; }
    .pr-amt { font-size:36px; font-weight:800; letter-spacing:-0.025em; }
    .pr-mo { font-size:12px; color:var(--ink-3); }
    /* Client range: the hero of each card (the only real tier difference) */
    .pr-range {
      text-align:center; padding:20px 12px 16px;
      background:rgba(255,255,255,.03); border:1px solid var(--line); border-radius:14px;
    }
    .pr-range-n {
      display:block; font-size:34px; font-weight:800; letter-spacing:-.02em; line-height:1;
      font-variant-numeric:tabular-nums;
    }
    .pr-range-l { display:block; font-size:11px; color:var(--ink-2); margin-top:7px; }
    .pr-card.feat .pr-range { border-color:rgba(249,115,22,.25); background:rgba(249,115,22,.05); }
    .pr-card.feat .pr-range-n { color:var(--accent); }
    .pr-all {
      display:flex; align-items:flex-start; justify-content:center; gap:7px;
      font-size:12.5px; color:var(--ink-2); flex:1; padding-top:2px;
    }
    .pr-all svg { width:14px; height:14px; color:var(--green); flex-shrink:0; margin-top:2px; }

    /* "Every tier. Every feature." strip */
    .all-feats {
      margin-top:14px; padding:32px 36px; border-radius:20px;
      background:var(--surf-2); border:1px solid var(--line);
      position:relative; overflow:hidden;
    }
    .all-feats::before {
      content:''; position:absolute; top:0; left:0; right:0; height:1px;
      background:linear-gradient(90deg,transparent,rgba(249,115,22,.45),transparent);
    }
    .all-feats-head { text-align:center; margin-bottom:22px; }
    .all-feats-head h3 { font-size:20px; font-weight:800; letter-spacing:-.015em; }
    .all-feats-head p { font-size:13.5px; color:var(--ink-2); margin-top:6px; }
    .feat-chips { display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }
    .fchip {
      display:inline-flex; align-items:center; gap:7px;
      padding:8px 15px; border-radius:100px;
      background:rgba(255,255,255,.04); border:1px solid var(--line);
      font-size:13px; font-weight:500; color:var(--ink-2);
      transition:border-color .2s, color .2s;
    }
    .fchip:hover { border-color:var(--line-hi); color:var(--ink); }
    .fchip svg { width:13px; height:13px; color:var(--green); flex-shrink:0; }
    .pr-note { text-align:center; margin-top:24px; font-size:13px; color:var(--ink-3); }
    .pr-note strong { color:var(--ink-2); }

    /* Stripe box */
    .stripe-box {
      margin-top:40px; padding:28px 32px;
      border-radius:16px;
      background:rgba(99,91,255,.04);
      border:1px dashed rgba(99,91,255,.22);
      display:flex; align-items:center; gap:20px;
    }
    .stripe-ico {
      width:44px; height:44px; border-radius:12px;
      background:rgba(99,91,255,.1);
      display:flex; align-items:center; justify-content:center; flex-shrink:0;
    }
    .stripe-ico svg { width:22px; height:22px; color:#6366f1; }
    .stripe-text h4 { font-size:15px; font-weight:700; margin-bottom:4px; }
    .stripe-text p { font-size:13px; color:var(--ink-3); }

    /* ── Built in the field ──────────────────────────────── */
    .truth-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
    .truth-card .bc-desc { max-width:none; }

    /* ── FAQ ─────────────────────────────────────────────── */
    .faq-wrap { max-width:680px; margin:48px auto 0; display:flex; flex-direction:column; gap:6px; }
    .faq-item {
      background:var(--surf-1); border:1px solid var(--line);
      border-radius:14px; overflow:hidden; transition:border-color .2s;
    }
    .faq-item.on { border-color:var(--line-hi); }
    .faq-q {
      width:100%; display:flex; align-items:center; justify-content:space-between;
      padding:20px 24px; font-size:15px; font-weight:600; text-align:left;
      color:var(--ink); gap:12px; cursor:pointer;
    }
    .faq-chevron {
      width:20px; height:20px; flex-shrink:0; color:var(--ink-3);
      transition:transform .3s var(--ez), color .2s;
    }
    .faq-item.on .faq-chevron { transform:rotate(180deg); color:var(--accent); }
    .faq-ans { max-height:0; overflow:hidden; transition:max-height .35s var(--ez); }
    .faq-ans-in { padding:0 24px 20px; font-size:14px; color:var(--ink-2); line-height:1.7; }

    /* ── CTA section ─────────────────────────────────────── */
    .cta-wrap {
      /* Outer bezel */
      padding:6px;
      background:var(--surf-1);
      border-radius:28px; border:1px solid var(--line-hi);
    }
    .cta-inner {
      background:var(--surf-2);
      border-radius:23px;
      padding:80px 48px;
      text-align:center;
      position:relative; overflow:hidden;
      border:1px solid rgba(255,255,255,.04);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
    }
    .cta-inner::before {
      content:''; position:absolute; top:0; left:0; right:0; height:1px;
      background:linear-gradient(90deg,transparent,var(--accent),transparent);
    }
    .cta-bg {
      position:absolute; inset:0; pointer-events:none;
      background:radial-gradient(ellipse 60% 80% at 50% 0%, rgba(249,115,22,.07), transparent 65%);
    }
    .cta-inner h2 { position:relative; max-width:600px; margin:0 auto 14px; }
    .cta-inner p { position:relative; max-width:420px; margin:0 auto 28px; }
    .cta-acts { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; position:relative; }
    .cta-fine { margin-top:16px; font-size:11px; color:var(--ink-3); position:relative; }

    /* ── Footer ─────────────────────────────────────────── */
    footer { border-top:1px solid var(--line); padding:64px 0 40px; }
    .ft-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
    .ft-logo { display:flex; align-items:center; gap:9px; font-size:18px; font-weight:800; letter-spacing:-.02em; }
    .ft-logo-icon { width:28px; height:28px; border-radius:7px; overflow:hidden; }
    .ft-logo-icon img { width:100%; height:100%; }
    .ft-desc { font-size:14px; color:var(--ink-3); line-height:1.7; max-width:240px; margin-top:14px; }
    .ft-badges { display:flex; gap:8px; margin-top:14px; }
    .ft-badge { padding:4px 12px; border-radius:100px; background:var(--surf-2); border:1px solid var(--line); font-size:11px; font-weight:500; color:var(--ink-3); }
    .ft-col h4 { font-size:11px; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-2); margin-bottom:14px; }
    .ft-links { list-style:none; display:flex; flex-direction:column; gap:9px; }
    .ft-links a { font-size:14px; color:var(--ink-3); transition:color .15s; }
    .ft-links a:hover { color:var(--ink); }
    .ft-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:28px; border-top:1px solid var(--line); font-size:13px; color:var(--ink-3); }

    /* ── Cookie ──────────────────────────────────────────── */
    .cookie {
      position:fixed; bottom:20px; left:50%; transform:translateX(-50%);
      z-index:300; width:min(600px,calc(100vw - 32px));
      background:var(--surf-2); border:1px solid var(--line-hi); border-radius:16px;
      padding:18px 22px; display:flex; align-items:center; justify-content:space-between; gap:16px;
      box-shadow:0 20px 60px rgba(0,0,0,.6);
      transition:opacity .3s, transform .3s var(--ez);
    }
    .cookie.gone { opacity:0; transform:translateX(-50%) translateY(120px); pointer-events:none; }
    .cookie p { font-size:13px; color:var(--ink-2); line-height:1.5; }
    .cookie p a { color:var(--accent); text-decoration:underline; }
    .cookie-btns { display:flex; gap:8px; flex-shrink:0; }
    .c-accept { padding:8px 18px; border-radius:100px; background:var(--accent); color:#fff; font-size:13px; font-weight:700; cursor:pointer; transition:background .15s; }
    .c-accept:hover { background:var(--accent-d); }
    .c-decline { padding:8px 14px; border-radius:100px; color:var(--ink-3); font-size:13px; font-weight:500; cursor:pointer; transition:color .15s; }
    .c-decline:hover { color:var(--ink-2); }

    /* ── Reveal animation base ────────────────────────────── */
    .rv {
      opacity:0; transform:translateY(22px);
      transition:opacity .65s var(--ez), transform .65s var(--ez);
    }
    .rv.in { opacity:1; transform:translateY(0); }

    /* ── Section spacing ─────────────────────────────────── */
    .sec { padding:112px 0; }
    .sec-sm { padding:64px 0; }

    /* ── Stats row ───────────────────────────────────────── */
    .stat-grid { margin-top:12px; display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
    .stat { padding:24px; text-align:center; }
    .stat-n { font-size:30px; font-weight:800; letter-spacing:-.02em; line-height:1.1; }
    .stat-l { font-size:12px; color:var(--ink-3); margin-top:6px; line-height:1.4; }

    /* ── Reduced motion ──────────────────────────────────── */
    @media (prefers-reduced-motion:reduce) {
      .rv { opacity:1; transform:none; transition:none; }
      .phones, .ph, .ss-card:hover .ss-bezel-inner { transition:none; }
      .mq-track { animation:none; }
      @keyframes blink { 0%,100%{opacity:1} }
    }

    /* ── Responsive ──────────────────────────────────────── */
    @media (max-width:1024px) {
      .pr-grid { grid-template-columns:repeat(2,1fr); }
      .bc-1 { grid-column:span 12; }
      .bc-2 { grid-column:span 12; }
      .bc-3 { grid-column:span 6; }
      .bc-4 { grid-column:span 12; }
      .bc-5 { grid-column:span 6; }
      .ai-split { grid-template-columns:1fr; }
      .truth-grid { grid-template-columns:1fr; }
      .ft-grid { grid-template-columns:1fr 1fr; }
    }
    @media (max-width:768px) {
      #nav { top:12px; width:calc(100vw - 24px); padding:8px 10px 8px 16px; gap:0; }
      .nav-links, .nav-cta { display:none; }
      .ham { display:flex; }
      .sec { padding:80px 0; }
      .hero { padding:100px 0 48px; min-height:auto; }
      .phones { height:360px; }
      .ph-c { width:158px; height:342px; }
      .ph-l { display:none; }
      .ph-r { display:none; }
      .bento { grid-template-columns:1fr; }
      .bc-1,.bc-2,.bc-3,.bc-4,.bc-5 { grid-column:span 1; }
      .bc-h { flex-direction:column; gap:20px; }
      .bc-h-vis { width:100%; }
      /* Decorative peeking devices overlap the copy on a narrow card: hide them */
      .bc-device, .bc-device-sm { display:none; }
      .bc-peek { min-height:0; }
      .process-grid { grid-template-columns:1fr; }
      .pr-grid { grid-template-columns:1fr; }
      .ft-grid { grid-template-columns:1fr; gap:28px; }
      .ft-bottom { flex-direction:column; gap:12px; text-align:center; }
      .cta-inner { padding:48px 24px; }
      .ai-split { gap:36px; }
      .ss-track { padding:0 32px; }
      .ss-fade-l,.ss-fade-r { width:32px; }
      .ss-bezel-inner { width:180px; }
      .stripe-box { flex-direction:column; text-align:center; }
      .all-feats { padding:24px 18px; }
      .stat-grid { grid-template-columns:repeat(2,1fr); }
      .stat { padding:22px 16px; }
    }
    @media (max-width:480px) {
      .wrap { padding:0 16px; }
      .display { font-size:clamp(38px,10vw,60px); }
      .hero-actions .btn-ghost { display:none; }
      .hero-actions .btn-ghost.hero-demo-cta { display:inline-flex; }
      .bc-3 { grid-column:span 1; }
      .stat-n { font-size:26px; }
      .stat { padding:20px 14px; }
    }

    /* ── Comparison table ──────────────────────────────────── */
    .cmp-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; border:1px solid var(--line); border-radius:18px; background:var(--surf-1); }
    .cmp { width:100%; border-collapse:collapse; font-size:14px; }
    .cmp th, .cmp td { padding:14px 18px; text-align:center; border-bottom:1px solid var(--line); }
    .cmp thead th { font-weight:800; color:var(--ink); background:var(--surf-2); white-space:nowrap; }
    .cmp tbody tr:last-child td { border-bottom:none; }
    .cmp th:first-child, .cmp td:first-child { text-align:left; color:var(--ink-2); font-weight:600; min-width:150px; }
    .cmp .cmp-ml { background:rgba(249,115,22,.07); }
    .cmp thead .cmp-ml { color:var(--accent); }
    .cmp td.cmp-ml { color:var(--ink); font-weight:700; }
    .cmp-yes { width:19px; height:19px; color:var(--accent); vertical-align:middle; }
    .cmp-no { color:var(--ink-3); font-size:16px; }
    .cmp-txt { font-size:13px; color:var(--ink-2); }

    /* ════════════════════════════════════════════════════════
       ALIVE LAYER v2: kinetic hero, live demo phone, founding
       bar, spotlight cards, counters, scroll progress, embers
       ════════════════════════════════════════════════════════ */

    ::selection { background:rgba(249,115,22,.32); color:#fff; }

    /* Scroll progress hairline */
    #scrollbar-top {
      position:fixed; top:0; left:0; right:0; height:2px; z-index:500;
      background:linear-gradient(90deg,#f97316,#fdba74);
      transform-origin:0 50%; transform:scaleX(0); pointer-events:none;
    }

    /* Hero aurora blobs (transform-only drift) */
    .aur { position:absolute; border-radius:50%; pointer-events:none; filter:blur(90px); }
    .aur-a {
      width:560px; height:560px; left:-160px; top:-120px;
      background:radial-gradient(circle, rgba(249,115,22,.16), transparent 65%);
      animation:aurA 19s ease-in-out infinite alternate;
    }
    .aur-b {
      width:640px; height:640px; right:-200px; top:18%;
      background:radial-gradient(circle, rgba(194,65,12,.13), transparent 65%);
      animation:aurB 25s ease-in-out infinite alternate;
    }
    @keyframes aurA { from{transform:translate(0,0)} to{transform:translate(70px,50px)} }
    @keyframes aurB { from{transform:translate(0,0)} to{transform:translate(-80px,-40px)} }
    .hero.off .aur, .hero.off .embers i, .hero.off .grad-live strong { animation-play-state:paused; }

    /* Rising embers */
    .embers { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
    .embers i {
      position:absolute; bottom:-8px; width:3px; height:3px; border-radius:50%;
      background:#fb923c; opacity:0;
      animation:emberUp linear infinite;
    }
    @keyframes emberUp {
      0%   { transform:translateY(0) translateX(0); opacity:0; }
      8%   { opacity:.55; }
      60%  { opacity:.25; }
      100% { transform:translateY(-105vh) translateX(28px); opacity:0; }
    }
    .embers i:nth-child(1)  { left:8%;  animation-duration:13s; animation-delay:0s;   width:2px; height:2px; }
    .embers i:nth-child(2)  { left:16%; animation-duration:17s; animation-delay:3s; }
    .embers i:nth-child(3)  { left:26%; animation-duration:12s; animation-delay:6s;  width:2px; height:2px; }
    .embers i:nth-child(4)  { left:34%; animation-duration:19s; animation-delay:1.5s; }
    .embers i:nth-child(5)  { left:45%; animation-duration:14s; animation-delay:8s; }
    .embers i:nth-child(6)  { left:54%; animation-duration:16s; animation-delay:4s;  width:4px; height:4px; }
    .embers i:nth-child(7)  { left:63%; animation-duration:12s; animation-delay:9s;  width:2px; height:2px; }
    .embers i:nth-child(8)  { left:72%; animation-duration:18s; animation-delay:2s; }
    .embers i:nth-child(9)  { left:81%; animation-duration:13s; animation-delay:7s; }
    .embers i:nth-child(10) { left:90%; animation-duration:15s; animation-delay:5s;  width:2px; height:2px; }
    .embers i:nth-child(11) { left:38%; animation-duration:21s; animation-delay:11s; }
    .embers i:nth-child(12) { left:68%; animation-duration:20s; animation-delay:13s; width:4px; height:4px; }

    /* Kinetic headline: word mask reveal */
    .wm { display:inline-block; overflow:hidden; vertical-align:bottom; padding-bottom:.10em; margin-bottom:-.10em; }
    .w {
      display:inline-block; transform:translateY(115%);
      animation:wordUp .85s var(--ez) forwards;
    }
    @keyframes wordUp { to { transform:translateY(0); } }
    .grad-live strong {
      background:linear-gradient(100deg,#f97316 20%,#ffd0a8 42%,#fb923c 55%,#f97316 80%);
      background-size:220% auto;
      -webkit-background-clip:text; background-clip:text; color:transparent;
      animation:gradSlide 6s linear infinite;
    }
    @keyframes gradSlide { to { background-position:-220% center; } }

    /* Live demo phone (the product performing in the hero) */
    .lp { background:#0b0b0c; display:flex; flex-direction:column; }
    .lp-head {
      display:flex; align-items:center; gap:8px;
      padding:30px 14px 10px; border-bottom:1px solid rgba(255,255,255,.06);
      flex-shrink:0;
    }
    .lp-ava {
      width:26px; height:26px; border-radius:50%; flex-shrink:0;
      background:linear-gradient(135deg,#f97316,#fb923c);
      display:flex; align-items:center; justify-content:center;
      font-size:11px; font-weight:800; color:#fff;
    }
    .lp-hinf { display:flex; flex-direction:column; line-height:1.25; }
    .lp-hinf strong { font-size:11.5px; font-weight:700; color:#fff; }
    .lp-hinf span { font-size:8.5px; color:#22c55e; display:flex; align-items:center; gap:3px; }
    .lp-on { width:4px; height:4px; border-radius:50%; background:#22c55e; display:inline-block; }
    .lp-body {
      flex:1; display:flex; flex-direction:column; justify-content:flex-end;
      gap:6px; padding:12px 12px; overflow:hidden;
      transition:opacity .45s var(--ez);
      mask-image:linear-gradient(to bottom, transparent 0, black 26px);
      -webkit-mask-image:linear-gradient(to bottom, transparent 0, black 26px);
    }
    .lp-body.fade { opacity:0; }
    .lp-msg {
      max-width:82%; padding:7px 11px; border-radius:13px;
      font-size:11px; line-height:1.45; color:#e7e7ea;
      display:none;
    }
    .lp-msg.on { display:block; animation:msgIn .5s var(--ez) both; }
    .lp-them { background:#1d1d20; border-bottom-left-radius:4px; align-self:flex-start; }
    .lp-me   { background:var(--accent); color:#fff; border-bottom-right-radius:4px; align-self:flex-end; }
    @keyframes msgIn { from { opacity:0; transform:translateY(10px) scale(.96); } to { opacity:1; transform:none; } }
    .lp-chip {
      display:none; align-self:flex-start;
      padding:5px 9px; border-radius:9px;
      background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.3);
      font-size:9px; font-weight:700; color:#4ade80;
      align-items:center; gap:5px;
    }
    .lp-chip.on { display:flex; animation:msgIn .5s var(--ez) both; }
    .lp-chip svg { width:10px; height:10px; flex-shrink:0; }
    .lp-card {
      display:none; align-self:flex-start; width:88%;
      background:#161618; border:1px solid rgba(255,255,255,.09);
      border-radius:12px; padding:9px 11px;
    }
    .lp-card.on { display:block; animation:msgIn .5s var(--ez) both; }
    .lp-card-t { font-size:8.5px; font-weight:800; letter-spacing:.07em; text-transform:uppercase; color:var(--accent); }
    .lp-card-d { font-size:10.5px; font-weight:700; color:#fff; margin:3px 0 7px; }
    .lp-card-b { display:flex; gap:6px; }
    .lp-dec, .lp-con {
      flex:1; text-align:center; padding:5px 0; border-radius:8px;
      font-size:9px; font-weight:800;
    }
    .lp-dec { background:rgba(255,255,255,.07); color:#9ca3af; }
    .lp-con { background:var(--accent); color:#fff; transition:transform .18s var(--ez); }
    .lp-card.press .lp-con { transform:scale(.9); }
    .lp-conf {
      display:none; align-items:center; justify-content:center; gap:5px;
      padding:5px 0; border-radius:8px;
      background:rgba(34,197,94,.12); border:1px solid rgba(34,197,94,.35);
      font-size:9px; font-weight:800; color:#4ade80;
    }
    .lp-conf svg { width:10px; height:10px; }
    .lp-card.done .lp-card-b { display:none; }
    .lp-card.done .lp-conf { display:flex; animation:msgIn .4s var(--ez) both; }
    .lp-typing {
      display:none; align-self:flex-end; gap:3px;
      background:#1d1d20; padding:8px 11px; border-radius:13px; border-bottom-right-radius:4px;
    }
    .lp-typing.on { display:flex; animation:msgIn .3s var(--ez) both; }
    .lp-typing i {
      width:4px; height:4px; border-radius:50%; background:#6b7280;
      animation:typDot 1.1s ease-in-out infinite;
    }
    .lp-typing i:nth-child(2) { animation-delay:.18s; }
    .lp-typing i:nth-child(3) { animation-delay:.36s; }
    @keyframes typDot { 0%,100%{ transform:translateY(0); opacity:.5 } 50%{ transform:translateY(-3px); opacity:1 } }
    .lp-input {
      flex-shrink:0; margin:0 10px 14px; padding:8px 12px;
      background:#161618; border:1px solid rgba(255,255,255,.07);
      border-radius:100px; font-size:9.5px; color:#7b7b85;
      display:flex; align-items:center; justify-content:space-between;
      white-space:nowrap; gap:6px;
    }
    .lp-input > span:first-child { overflow:hidden; text-overflow:ellipsis; }
    .lp-send {
      width:18px; height:18px; border-radius:50%; background:var(--accent);
      display:flex; align-items:center; justify-content:center; flex-shrink:0;
    }
    .lp-send svg { width:9px; height:9px; color:#fff; }

    /* Bento spotlight (cursor-following glow) */
    .bc::after {
      content:''; position:absolute; inset:0; pointer-events:none;
      opacity:0; transition:opacity .35s var(--ez);
      background:radial-gradient(420px circle at var(--mx,50%) var(--my,50%), rgba(249,115,22,.08), transparent 65%);
    }
    .bc:hover::after { opacity:1; }

    /* Stat counters */
    .stat-n { font-variant-numeric:tabular-nums; }

    /* Founding bar (live data) */
    .founding-bar {
      display:flex; align-items:center; justify-content:space-between; gap:24px;
      margin:0 auto 40px; max-width:760px;
      padding:18px 24px; border-radius:18px;
      background:linear-gradient(120deg, rgba(249,115,22,.09), rgba(249,115,22,.03));
      border:1px solid rgba(249,115,22,.28);
      position:relative; overflow:hidden;
    }
    .founding-bar::before {
      content:''; position:absolute; top:0; left:-60%; width:50%; height:100%;
      background:linear-gradient(100deg, transparent, rgba(255,255,255,.05), transparent);
      animation:fbSheen 4.5s var(--ez) infinite;
    }
    @keyframes fbSheen { 0%{ transform:translateX(0) } 60%,100%{ transform:translateX(380%) } }
    .fb-left { display:flex; align-items:center; gap:14px; }
    .fb-bolt {
      width:38px; height:38px; border-radius:11px; flex-shrink:0;
      background:var(--accent-dim); border:1px solid var(--accent-mid);
      display:flex; align-items:center; justify-content:center;
    }
    .fb-bolt svg { width:17px; height:17px; color:var(--accent); }
    .fb-left strong { font-size:15px; font-weight:800; display:block; }
    .fb-left p { font-size:12.5px; color:var(--ink-2); margin-top:2px; }
    .fb-right { display:flex; flex-direction:column; align-items:flex-end; gap:7px; flex-shrink:0; }
    .fb-count-row { display:flex; align-items:baseline; gap:6px; }
    .fb-count { font-size:26px; font-weight:800; color:var(--accent); line-height:1; font-variant-numeric:tabular-nums; }
    .fb-count-row .fb-lbl { font-size:11px; color:var(--ink-2); font-weight:600; }
    .fb-dots { display:flex; gap:4px; }
    .fb-dot { width:14px; height:5px; border-radius:3px; background:rgba(255,255,255,.09); }
    .fb-dot.left { background:var(--accent); box-shadow:0 0 8px rgba(249,115,22,.5); }
    .fb-cta {
      display:inline-flex; align-items:center; gap:6px; margin-top:10px;
      font-size:12.5px; font-weight:700; color:var(--accent);
    }
    .fb-cta svg { width:13px; height:13px; transition:transform .2s var(--ez); }
    .fb-cta:hover svg { transform:translateX(3px); }

    /* Most-popular card breathing glow (opacity-only: compositor-friendly) */
    .pr-card.feat::before {
      content:''; position:absolute; inset:0; border-radius:22px;
      box-shadow:0 0 52px rgba(249,115,22,.16);
      opacity:.35; pointer-events:none;
      animation:featBreath 3.6s ease-in-out infinite;
    }
    @keyframes featBreath { 0%,100% { opacity:.35; } 50% { opacity:1; } }
    .pr-amt.tick { animation:tickPop .35s var(--ez); }
    @keyframes tickPop { from { transform:scale(.82); opacity:.3; } to { transform:scale(1); opacity:1; } }
    .pr-amt { display:inline-block; }

    /* CTA rotating mark */
    .cta-mark {
      position:absolute; right:-90px; bottom:-110px; width:340px; height:340px;
      opacity:.05; pointer-events:none;
      animation:markSpin 70s linear infinite;
    }
    @keyframes markSpin { to { transform:rotate(360deg); } }

    /* Responsive: alive layer */
    @media (max-width:768px) {
      .founding-bar { flex-direction:column; align-items:flex-start; gap:14px; padding:16px 18px; }
      .fb-right { flex-direction:row; align-items:center; gap:12px; }
      .fb-dot { width:10px; }
      .aur-a { width:380px; height:380px; }
      .aur-b { width:420px; height:420px; }
      .lp-head { padding-top:26px; }
    }

    /* Reduced motion: alive layer off */
    @media (prefers-reduced-motion:reduce) {
      .aur-a,.aur-b,.embers i,.pr-card.feat::before,.founding-bar::before,.cta-mark { animation:none; }
      .w { transform:none; animation:none; }
      .grad-live strong { animation:none; }
      .lp-typing, .lp-typing.on { display:none; }
      .lp-msg.on, .lp-chip.on, .lp-card.on, .lp-card.done .lp-conf, .pr-amt.tick { animation:none; }
    }

    /* ════════════════════════════════════════════════════════
       ALIVE LAYER v3: WebGL molten hero, Lenis + GSAP scroll
       choreography, kinetic typography, outline numerals,
       custom cursor. All transform/opacity/clip-path only.
       Every effect has a prefers-reduced-motion static fallback.
       ════════════════════════════════════════════════════════ */

    /* ── WebGL molten canvas (tier 1) ──────────────────────
       Sits behind all hero content, inset:0, never shifts layout.
       Only painted when JS confirms WebGL2 + capable device and
       sets .webgl-on on the hero; otherwise the existing CSS
       aurora blobs + embers (tier 2) remain the backdrop. */
    #heroGL {
      position:absolute; inset:0; z-index:0; pointer-events:none;
      width:100%; height:100%; display:block;
      opacity:0; transition:opacity .9s var(--ez);
    }
    .hero.webgl-on #heroGL { opacity:1; }
    /* When the GPU layer is live, retire the CSS aurora + embers
       so we are not double-painting the same backdrop. */
    .hero.webgl-on .aur,
    .hero.webgl-on .embers { display:none; }
    /* Keep hero content above the canvas. */
    .hero .hero-grid-bg, .hero .hero-glow { z-index:0; }
    .hero .wrap { position:relative; z-index:1; }

    /* ── Oversized outline section numerals ────────────────
       Huge transparent-fill stroked digits parallaxing behind
       the heading of features / pricing / faq. Decorative. */
    .sec-numeral {
      position:absolute; top:-.22em; left:-.04em; z-index:0;
      font-size:clamp(150px,26vw,360px); font-weight:800; line-height:.8;
      letter-spacing:-.04em; color:transparent;
      -webkit-text-stroke:1px rgba(255,255,255,.14);
      text-stroke:1px rgba(255,255,255,.14);
      pointer-events:none; user-select:none;
      will-change:transform;
    }
    .sec-numeral[data-center] { transform:translateX(-50%); }
    .sec-has-numeral { position:relative; }
    /* Heading and copy must read above the numeral. */
    .sec-has-numeral > .heading,
    .sec-has-numeral > p,
    .sec-has-numeral > .pill-label { position:relative; z-index:1; }

    /* ── Kinetic typography (JS / SplitText) ───────────────
       SplitText wraps each line/word in a .gsap-mask clip box with
       a .gsap-rise inner element. GSAP animates .gsap-rise. The
       initial off-screen state lives here so there is no flash
       before GSAP runs. If SplitText never runs, nothing here
       applies (the markup is untouched) and the CSS word-mask
       fallback (.wm/.w) renders the hero headline as before. */
    .gsap-mask { display:block; overflow:hidden; }
    .gsap-mask.inline { display:inline-block; vertical-align:top; }
    /* No CSS transform here: GSAP owns the rise. A CSS translateY would be
       parsed by GSAP as a base offset and added to its yPercent, double-
       shifting the element. The pre-paint flash is avoided by .split-pending
       on the h1 (below) until gsap.set runs. */
    .gsap-rise { display:block; will-change:transform; }
    .gsap-rise.inline { display:inline-block; }
    /* Hide a headline only between SplitText wrapping and the first gsap.set,
       so words never flash in their natural position before being masked. */
    .split-pending { opacity:0; }
    @media (prefers-reduced-motion:reduce) { .split-pending { opacity:1; } }
    /* Once GSAP has registered a headline, hide the CSS fallback animation
       so the two reveal systems never run at once. */
    .js-split .wm { overflow:visible; }
    .js-split .wm .w { transform:none; animation:none; }
    /* Accent on the SplitText-rebuilt headline (mirrors the original
       animated gradient that lived on .grad-live strong). */
    .grad-accent {
      background:linear-gradient(100deg,#f97316 20%,#ffd0a8 42%,#fb923c 55%,#f97316 80%);
      background-size:220% auto;
      -webkit-background-clip:text; background-clip:text; color:transparent;
      animation:gradSlide 6s linear infinite;
    }
    @media (prefers-reduced-motion:reduce) { .grad-accent { animation:none; } }

    /* ── GSAP-driven reveals ───────────────────────────────
       When GSAP loads we add .gsap-live to <html>; ScrollTrigger.batch
       then controls .rv elements. We neutralise the CSS transition so
       GSAP fully owns the transform, and prevent any pre-paint flash.
       Without GSAP, .gsap-live is absent and the original .rv CSS +
       IntersectionObserver keep working untouched. */
    html.gsap-live .rv { opacity:0; transform:none; transition:none; }
    html.gsap-live .rv.in { opacity:1; }
    /* Bento / step / truth entrance start states owned by GSAP. */
    html.gsap-live .bento .bc { opacity:0; }
    html.gsap-live .process-grid .proc-step { opacity:0; }
    html.gsap-live .truth-grid .truth-card { opacity:0; }
    /* Step marker clip wipe initial state. */
    html.gsap-live .proc-step .proc-marker { clip-path:inset(0 100% 0 0); }

    /* ── Custom cursor (pointer:fine only) ─────────────────
       8px dot + 36px trailing ring, difference blend so it reads on
       any surface. Off by default; .cursor-on (set by JS) reveals it
       and hides the native cursor. */
    .cur-dot, .cur-ring {
      position:fixed; top:0; left:0; z-index:9000;
      border-radius:50%; pointer-events:none;
      mix-blend-mode:difference;
      opacity:0; transition:opacity .3s var(--ez);
      will-change:transform;
    }
    .cur-dot {
      width:8px; height:8px; margin:-4px 0 0 -4px;
      background:#fff;
    }
    .cur-ring {
      width:36px; height:36px; margin:-18px 0 0 -18px;
      border:1px solid rgba(255,255,255,.85);
    }
    .cursor-on .cur-dot, .cursor-on .cur-ring { opacity:1; }
    .cursor-on, .cursor-on a, .cursor-on button,
    .cursor-on .btn-primary, .cursor-on .btn-ghost { cursor:none; }
    /* DRAG label inside the ring over the pinned screenshot tour. */
    .cur-ring .cur-label {
      position:absolute; top:50%; left:50%;
      transform:translate(-50%,-50%) scale(.6);
      font-size:7px; font-weight:800; letter-spacing:.12em;
      text-transform:uppercase; color:#fff;
      opacity:0; transition:opacity .2s var(--ez), transform .2s var(--ez);
      white-space:nowrap;
    }
    .cur-ring.show-drag .cur-label { opacity:1; transform:translate(-50%,-50%) scale(1); }

    /* ── CTA watermark: scrubbed, not spun ─────────────────
       When GSAP controls the mark we stop the CSS spin so the two
       do not fight. Glow strength is driven via the --cta-glow var. */
    html.gsap-live .cta-mark { animation:none; }
    .cta-glow {
      position:absolute; inset:0; pointer-events:none; z-index:0;
      background:radial-gradient(ellipse 55% 60% at 70% 90%, rgba(249,115,22,.22), transparent 60%);
      opacity:var(--cta-glow,0);
      transition:opacity .2s linear;
    }

    /* ── Reduced motion / no-WebGL: everything static ──────
       The molten canvas is never created under reduced motion (JS
       guard), but belt-and-braces: force it hidden and let the CSS
       aurora show. Disable cursor, numerals parallax, GSAP states. */
    @media (prefers-reduced-motion:reduce) {
      #heroGL { display:none; }
      .hero.webgl-on .aur,
      .hero.webgl-on .embers { display:block; }
      .cur-dot, .cur-ring { display:none; }
      .sec-numeral { will-change:auto; }
      .gsap-rise { transform:none; }
      html.gsap-live .rv,
      html.gsap-live .bento .bc,
      html.gsap-live .process-grid .proc-step,
      html.gsap-live .truth-grid .truth-card { opacity:1; }
      html.gsap-live .proc-step .proc-marker { clip-path:none; }
      .cta-glow { opacity:.5; transition:none; }
    }

    /* Touch / coarse pointers never get the custom cursor. */
    @media (pointer:coarse) {
      .cur-dot, .cur-ring { display:none; }
    }

    /* ════════════════════════════════════════════════════════
       ALIVE LAYER v4: SET-PIECES
       1) Pinned product tour (desktop pointer:fine only)
       2) AI section generative build
       3) Currency slot reels
       4) Comparison table charge-up
       All transform/opacity/clip-path only. Every effect has a
       prefers-reduced-motion AND a pointer:coarse static fallback.
       ════════════════════════════════════════════════════════ */

    /* ── SET-PIECE 1: Pinned product tour ──────────────────
       Desktop pointer:fine (min-width 1024px) only. Hidden by
       default; shown by the same media query that hides the
       drag strip. The strip (#ssTrack section) is the canonical
       touch / mobile / reduced-motion experience and always
       shows otherwise. */
    .tour { display:none; }                 /* off until desktop-fine opts in */
    .tour-stage {
      position:relative;
      min-height:100vh;
      display:grid;
      grid-template-columns:minmax(360px,46%) 1fr;
      align-items:center;
      gap:64px;
      padding:0 64px;
      max-width:1360px; margin:0 auto;
      overflow:hidden;
    }
    /* Reserve the pinned scroll length so the page never shifts
       when ScrollTrigger pins. JS reads this height; CSS keeps a
       sensible reserved block even before JS runs. */
    .tour-scroll { position:relative; }
    .tour-phone-col {
      position:relative;
      display:flex; align-items:center; justify-content:center;
      perspective:1400px;
    }
    .tour-glow {
      position:absolute; inset:0; pointer-events:none;
      background:radial-gradient(ellipse 60% 60% at 50% 50%, rgba(249,115,22,.12), transparent 70%);
      filter:blur(10px);
    }
    .tour-bezel-outer {
      position:relative;
      padding:9px;
      background:linear-gradient(160deg,#2a2a2c,#161617);
      border-radius:48px;
      box-shadow:0 1px 0 rgba(255,255,255,.08) inset, 0 40px 90px rgba(0,0,0,.7);
      transform-style:preserve-3d;
      will-change:transform;
    }
    .tour-bezel-inner {
      width:300px; aspect-ratio:390/844;
      border-radius:40px; overflow:hidden; position:relative;
      background:var(--surf-2);
      box-shadow:0 0 50px rgba(249,115,22,.1);
    }
    /* Dynamic island */
    .tour-bezel-inner::before {
      content:''; position:absolute; top:11px; left:50%; transform:translateX(-50%);
      width:96px; height:26px; background:#000; border-radius:14px; z-index:3;
    }
    /* Each screen is stacked; opacity + slight parallax slide is
       owned by GSAP. We reserve the initial state so there is no
       flash before JS runs (first screen visible, rest hidden). */
    .tour-screen {
      position:absolute; inset:0;
      opacity:0; will-change:transform,opacity;
    }
    .tour-screen:first-child { opacity:1; }
    .tour-screen img {
      width:100%; height:100%; object-fit:cover; object-position:top; display:block;
    }
    .tour-copy-col { position:relative; }
    /* Copy panels are stacked and crossfaded by GSAP. Reserve
       height so the column does not jump as panels swap. */
    .tour-copy-stack { position:relative; min-height:220px; }
    .tour-panel {
      position:absolute; inset:0;
      opacity:0; will-change:transform,opacity;
    }
    .tour-panel:first-child { opacity:1; }
    .tour-panel h3 {
      font-size:clamp(28px,3vw,42px); font-weight:800;
      letter-spacing:-.022em; line-height:1.08; margin-bottom:14px;
    }
    .tour-panel p {
      font-size:clamp(15px,1.4vw,18px); color:var(--ink-2);
      line-height:1.65; max-width:380px;
    }
    .tour-eyebrow {
      display:inline-block;
      font-size:11px; font-weight:800; letter-spacing:.14em;
      text-transform:uppercase; color:var(--accent);
      margin-bottom:16px;
    }
    /* Progress rail: 6 dots, active fills via transform scale. */
    .tour-rail {
      display:flex; align-items:center; gap:10px; margin-top:40px;
    }
    .tour-dot {
      position:relative;
      width:34px; height:4px; border-radius:100px;
      background:rgba(255,255,255,.12);
      overflow:hidden;
    }
    .tour-dot::after {
      content:''; position:absolute; inset:0;
      background:var(--accent); border-radius:100px;
      transform:scaleX(0); transform-origin:left center;
      will-change:transform;
    }
    .tour-dot.on::after { transform:scaleX(1); }
    .tour-count {
      margin-left:8px; font-size:12px; font-weight:700;
      color:var(--ink-3); font-variant-numeric:tabular-nums;
    }
    /* Desktop + fine pointer: swap the strip for the pinned tour. */
    @media (min-width:1024px) and (pointer:fine) {
      html.tour-live #app .ss-outer { display:none; }
      html.tour-live #app .wrap { display:none; }
      html.tour-live .tour { display:block; }
    }
    /* Reduced motion or no GSAP: the tour never activates (JS guard
       never adds .tour-live), so the strip stays. Belt-and-braces:
       force the tour hidden under reduced motion. */
    @media (prefers-reduced-motion:reduce) {
      .tour { display:none !important; }
      .tour-bezel-outer { transform:none !important; }
    }

    /* ── SET-PIECE 2: AI generative build ──────────────────
       Start-states only apply once JS arms the section (adds
       .ai-armed to the card). Without JS / under reduced motion
       the card renders fully built (final state) untouched. */
    html.gsap-live .ai-card.ai-armed .ai-stat-num,
    html.gsap-live .ai-card.ai-armed .ai-pill { opacity:0; }
    html.gsap-live .ai-card.ai-armed .ai-pill { transform:scale(.6); will-change:transform,opacity; }
    .ai-stat-num { display:inline-block; font-variant-numeric:tabular-nums; will-change:opacity; }
    /* Generating shimmer: a sweep across the card, opacity-driven. */
    .ai-shimmer {
      position:absolute; inset:0; z-index:4; pointer-events:none;
      border-radius:22px; overflow:hidden;
      opacity:0; will-change:opacity;
    }
    .ai-shimmer::before {
      content:''; position:absolute; top:0; bottom:0; left:0; width:55%;
      background:linear-gradient(100deg,transparent,rgba(249,115,22,.16),transparent);
      transform:translateX(-120%); will-change:transform;
    }
    .ai-card.ai-armed.ai-generating .ai-shimmer { opacity:1; }
    .ai-card.ai-armed.ai-generating .ai-shimmer::before { animation:aiSweep .4s linear; }
    @keyframes aiSweep { from { transform:translateX(-120%); } to { transform:translateX(320%); } }
    /* Hairline glow sweep on the card top rule. */
    .ai-hairline {
      position:absolute; top:0; left:0; right:0; height:1px; z-index:5;
      pointer-events:none; overflow:hidden;
    }
    .ai-hairline::before {
      content:''; position:absolute; top:0; bottom:0; left:0; width:40%;
      background:linear-gradient(90deg,transparent,rgba(249,115,22,.95),transparent);
      transform:translateX(-160%); will-change:transform; opacity:0;
    }
    .ai-card.ai-armed.ai-swept .ai-hairline::before { animation:aiHair .9s var(--ez) forwards; }
    @keyframes aiHair {
      0% { transform:translateX(-160%); opacity:0; }
      15% { opacity:1; }
      85% { opacity:1; }
      100% { transform:translateX(320%); opacity:0; }
    }
    @media (prefers-reduced-motion:reduce) {
      html.gsap-live .ai-card.ai-armed .ai-stat-num,
      html.gsap-live .ai-card.ai-armed .ai-pill { opacity:1; transform:none; }
      .ai-shimmer, .ai-hairline { display:none; }
    }

    /* ── SET-PIECE 3: Currency slot reels ──────────────────
       Wrap each amount in an overflow-hidden reel. The current
       number lives in .pr-reel-cur; an incoming number animates
       up from below. Without JS the static text stays. */
    .pr-reel {
      display:inline-block; position:relative;
      overflow:hidden; vertical-align:bottom;
      line-height:1;
    }
    .pr-reel .pr-amt { display:inline-block; }
    /* The incoming digit is absolutely stacked over the outgoing
       one during a swap; JS removes it when the swap settles. */
    .pr-reel .pr-amt.pr-amt-in {
      position:absolute; left:0; top:0;
      will-change:transform,opacity;
    }
    /* Currency symbol crossfade on switch. */
    .cur-sym { display:inline-block; will-change:opacity; }
    @media (prefers-reduced-motion:reduce) {
      .pr-reel .pr-amt, .cur-sym { transition:none !important; }
    }

    /* ── SET-PIECE 4: Comparison table charge-up ───────────
       Row wipe + a single orange charge sweep up the Menlore
       column + a desaturated duplicate of the Others column that
       crossfades in. Start-states apply only when JS arms the
       table (.cmp-armed); otherwise the table is fully static. */
    html.gsap-live .cmp-armed tbody tr { clip-path:inset(0 100% 0 0); will-change:clip-path; }
    /* Orange charge overlay scoped to the Menlore column cells.
       Scales up from the bottom via transform; never animates size. */
    .cmp .cmp-ml { position:relative; }
    .cmp-charge {
      position:absolute; inset:0; z-index:0; pointer-events:none;
      background:linear-gradient(to top, rgba(249,115,22,.22), rgba(249,115,22,.05));
      transform:scaleY(0); transform-origin:bottom center;
      will-change:transform;
    }
    .cmp .cmp-ml > * { position:relative; z-index:1; }
    /* Header pulse target. */
    .cmp thead .cmp-ml { will-change:transform; }
    /* Others column desaturated duplicate layer (pre-rendered),
       crossfaded in via opacity. We tint the live cells toward
       grey by overlaying a translucent neutral panel rather than
       animating a filter. */
    .cmp td.cmp-others { position:relative; }
    .cmp-desat {
      position:absolute; inset:0; z-index:0; pointer-events:none;
      background:rgba(120,120,128,.10);
      opacity:0; will-change:opacity;
    }
    .cmp td.cmp-others > * { position:relative; z-index:1; }
    html.gsap-live .cmp.cmp-armed.cmp-charged td.cmp-others .cmp-desat { opacity:1; transition:opacity .9s var(--ez); }
    @media (prefers-reduced-motion:reduce) {
      html.gsap-live .cmp-armed tbody tr { clip-path:none; }
      .cmp-charge { transform:scaleY(1); opacity:.5; }
      .cmp-desat { opacity:1; }
    }


/* ── Brand re-skin phone (interactive 'Your brand. Their phone.') - shared by the home #brand section and /for-trainers ── */
#brand{--yb-brand:#f97316;--yb-brand-d:#c45f0c}
.yb-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(32px,5vw,72px);align-items:center}
@media(max-width:880px){.yb-grid{grid-template-columns:1fr;gap:48px}}
.yb-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--yb-brand);transition:color .5s var(--ez)}
.yb-eyebrow::before{content:"";width:22px;height:1px;background:var(--yb-brand);transition:background .5s var(--ez)}
#brand .heading .yb-b{color:var(--yb-brand);transition:color .5s var(--ez)}
.yb-swatches{margin-top:30px}
.yb-swatches .yb-lbl{font-size:12px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--ink-3);margin-bottom:14px}
.yb-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap}
.yb-sw{width:38px;height:38px;border-radius:100px;cursor:pointer;position:relative;border:2px solid transparent;transition:transform .35s var(--ez),border-color .35s var(--ez)}
.yb-sw:hover{transform:translateY(-3px)}
.yb-sw[data-active="1"]{border-color:#fff}
.yb-sw[data-active="1"]::after{content:"✓";position:absolute;inset:0;display:grid;place-items:center;color:#0a0a0a;font-size:15px;font-weight:800}
.yb-swc{width:38px;height:38px;border-radius:100px;overflow:hidden;position:relative;cursor:pointer;border:2px solid var(--line-hi);background:conic-gradient(from 0deg,#f97316,#22c55e,#3b82f6,#a855f7,#ec4899,#f97316);display:grid;place-items:center}
.yb-swc span{font-size:16px;color:#fff;pointer-events:none}
.yb-swc input{position:absolute;inset:0;opacity:0;cursor:pointer}
.yb-hint{margin-top:16px;font-size:13px;color:var(--ink-3);max-width:30em}
.yb-stage{position:relative;display:flex;justify-content:center}
.yb-glow{position:absolute;width:84%;aspect-ratio:1;border-radius:50%;z-index:0;background:radial-gradient(circle,var(--yb-brand) 0%,transparent 60%);opacity:.26;filter:blur(42px);transition:background .5s var(--ez);pointer-events:none}
.yb-phone{position:relative;z-index:1;width:clamp(296px,32vw,352px);aspect-ratio:9/19.3;background:#000;border-radius:48px;padding:11px;border:1px solid var(--line-hi);box-shadow:0 46px 104px -32px rgba(0,0,0,.92),inset 0 0 0 2px rgba(255,255,255,.03)}
.yb-screen{position:relative;height:100%;width:100%;background:#0d0d0d;border-radius:38px;overflow:hidden;display:flex;flex-direction:column;color:#fff;font-size:13px;text-align:left}
.yb-notch{position:absolute;top:9px;left:50%;transform:translateX(-50%);width:104px;height:25px;background:#000;border-radius:100px;z-index:6}
.yb-ah{display:flex;align-items:center;gap:8px;padding:38px 13px 9px;border-bottom:1px solid rgba(255,255,255,.05)}
.yb-mmark svg{width:20px;height:20px;display:block}
.yb-ah .yb-nm{font-size:14.5px;font-weight:800;letter-spacing:-.02em;line-height:1.05}
.yb-ah .yb-day{font-size:10px;color:#71717a;margin-top:1px}
.yb-ah .yb-sp{margin-left:auto;display:flex;gap:6px}
.yb-ic{width:27px;height:27px;border-radius:100px;background:#1c1c1c;display:grid;place-items:center;color:#a1a1aa}
.yb-ic svg{width:13px;height:13px}
.yb-pbody{flex:1;overflow:hidden;padding:11px 13px 0;display:flex;flex-direction:column;gap:11px}
.yb-strip{display:flex;align-items:center;gap:9px;padding:7px 10px;border-radius:11px;background:color-mix(in srgb,var(--yb-brand) 8%,transparent);border:1px solid color-mix(in srgb,var(--yb-brand) 26%,transparent);transition:background .5s var(--ez),border-color .5s var(--ez)}
.yb-av{width:26px;height:26px;border-radius:100px;display:grid;place-items:center;font-weight:800;font-size:11px;background:var(--yb-brand);color:#1a0d02;transition:background .5s var(--ez)}
.yb-strip .yb-bn{font-size:11.5px;font-weight:700;color:#f4f4f5;line-height:1.1}
.yb-strip .yb-bs{font-size:9px;color:#71717a;margin-top:1px}
.yb-strip .yb-ppb{margin-left:auto;display:flex;align-items:center;gap:3px;font-size:7.5px;color:#52525b}
.yb-strip .yb-ppb svg{width:10px;height:10px}
.yb-chips{display:flex;gap:8px}
.yb-chip{flex:1;background:#161616;border:1px solid rgba(255,255,255,.05);border-radius:11px;padding:8px 10px}
.yb-chip .yb-ck{font-size:8px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#71717a}
.yb-chip .yb-cv{font-size:18px;font-weight:800;letter-spacing:-.02em;font-variant-numeric:tabular-nums;margin-top:2px}
.yb-chip .yb-cv.acc{color:var(--yb-brand);transition:color .5s var(--ez)}
.yb-chip .yb-cv small{font-size:11px;color:#3f3f46;font-weight:600}
.yb-week{display:grid;grid-template-columns:repeat(7,1fr);gap:4px;background:#161616;border:1px solid rgba(255,255,255,.05);border-radius:11px;padding:8px 6px}
.yb-wd{text-align:center}
.yb-wd .yb-wl{font-size:8.5px;font-weight:700;color:#52525b}
.yb-wd .yb-dot{width:16px;height:16px;margin:4px auto 0;border-radius:100px;background:#222;display:grid;place-items:center}
.yb-wd.done .yb-dot{background:var(--yb-brand);transition:background .5s var(--ez)}
.yb-wd.done .yb-dot svg{width:9px;height:9px;color:#1a0d02}
.yb-wd.today .yb-dot{background:transparent;border:2px solid var(--yb-brand);transition:border-color .5s var(--ez)}
.yb-wd.today .yb-wl{color:var(--yb-brand);transition:color .5s var(--ez)}
.yb-tw{background:#161616;border:1px solid rgba(255,255,255,.05);border-radius:13px;padding:10px}
.yb-tw .yb-th{font-size:8.5px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#71717a;margin-bottom:8px}
.yb-tw .yb-g{display:flex;gap:6px}
.yb-tw .yb-t{flex:1;background:#0e0e0e;border-radius:9px;padding:7px 4px;text-align:center}
.yb-tw .yb-t .yb-v{font-size:15px;font-weight:800;font-variant-numeric:tabular-nums;letter-spacing:-.02em}
.yb-tw .yb-t .yb-v.acc{color:var(--yb-brand);transition:color .5s var(--ez)}
.yb-tw .yb-t .yb-k{font-size:7px;font-weight:600;letter-spacing:.05em;text-transform:uppercase;color:#52525b;margin-top:2px}
.yb-fl{color:var(--yb-brand);transition:color .5s var(--ez)}
.yb-coach{border-radius:13px;overflow:hidden;background:#161616;border:1px solid rgba(255,255,255,.05)}
.yb-coach .yb-top{height:4px;background:var(--yb-brand);transition:background .5s var(--ez)}
.yb-coach .yb-in{padding:10px 11px}
.yb-coach .yb-ch{display:flex;align-items:center;gap:6px;margin-bottom:7px}
.yb-coach .yb-ch svg{width:12px;height:12px;color:var(--yb-brand);transition:color .5s var(--ez)}
.yb-coach .yb-ch .yb-clab{font-size:8.5px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.55)}
.yb-coach .yb-ln{display:flex;align-items:flex-start;gap:8px;margin-top:6px}
.yb-coach .yb-ln .yb-bd{width:5px;height:5px;border-radius:100px;margin-top:4px;flex:none}
.yb-coach .yb-ln.p .yb-bd{background:var(--yb-brand);transition:background .5s var(--ez)}
.yb-coach .yb-ln.s .yb-bd{background:rgba(255,255,255,.25)}
.yb-coach .yb-ln.p .yb-tx{font-size:11.5px;color:#fff;font-weight:600;line-height:1.35}
.yb-coach .yb-ln.s .yb-tx{font-size:11.5px;color:rgba(255,255,255,.7);line-height:1.35}
.yb-scard{border-radius:13px;overflow:hidden;background:#161616;border:1px solid rgba(255,255,255,.05)}
.yb-scard .yb-top{height:4px;background:linear-gradient(90deg,var(--yb-brand),var(--yb-brand-d));transition:background .5s var(--ez)}
.yb-scard .yb-in{padding:11px}
.yb-scard .yb-eb{font-size:8.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:#71717a}
.yb-scard .yb-st{font-size:15px;font-weight:800;letter-spacing:-.01em;margin-top:3px}
.yb-scard .yb-ex{font-size:10.5px;color:#8b8b91;margin-top:3px;line-height:1.5}
.yb-start{margin-top:10px;width:100%;height:36px;border:0;border-radius:10px;cursor:pointer;color:#1a0d02;font-family:inherit;font-weight:800;font-size:13px;background:linear-gradient(180deg,color-mix(in srgb,var(--yb-brand) 80%,#fff),var(--yb-brand));transition:background .5s var(--ez)}
.yb-nut{background:#161616;border:1px solid rgba(255,255,255,.05);border-radius:13px;padding:10px 11px 11px;margin-bottom:10px}
.yb-nut .yb-nh{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px}
.yb-nut .yb-nt{font-size:8.5px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.55)}
.yb-nut .yb-pill{font-size:8px;font-weight:700;color:rgba(255,255,255,.45);background:#1c1c1c;border:1px solid rgba(255,255,255,.05);border-radius:100px;padding:2px 8px}
.yb-macros{display:grid;grid-template-columns:1fr 1fr;gap:6px}
.yb-nchip{display:flex;align-items:center;gap:8px;background:#1c1c1c;border-radius:9px;padding:6px 9px}
.yb-nchip svg{width:13px;height:13px;flex:none}
.yb-nchip .yb-nl{font-size:8px;color:#71717a;line-height:1}
.yb-nchip .yb-nv{font-size:12.5px;font-weight:800;line-height:1.2}
.yb-nchip.acc svg,.yb-nchip.acc .yb-nv{color:var(--yb-brand);transition:color .5s var(--ez)}
.yb-nchip .yb-mi{color:#a1a1aa}
.yb-water{margin-top:6px;display:flex;align-items:center;gap:8px;background:#1c1c1c;border:1px solid rgba(255,255,255,.04);border-radius:10px;padding:7px 10px}
.yb-water svg{width:14px;height:14px;color:#60a5fa}
.yb-water .yb-wv{font-size:13px;font-weight:800}
.yb-water .yb-wt{margin-left:auto;font-size:9px;color:rgba(255,255,255,.4)}


/* ── Home pricing teaser (condensed; full pricing lives on /pricing) ── */
.prt{max-width:780px;margin:0 auto 44px;text-align:center}
.prt-facts{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-bottom:26px}
.prt-fact{flex:1;min-width:170px;background:var(--surf-2);border:1px solid var(--line);border-radius:16px;padding:24px 18px}
.prt-n{display:block;font-size:28px;font-weight:800;letter-spacing:-.02em;color:var(--ink);line-height:1.05}
.prt-n small{font-size:15px;color:var(--ink-3);font-weight:600}
.prt-l{display:block;font-size:13px;color:var(--ink-2);margin-top:6px}
.prt-line{font-size:clamp(15px,1.4vw,18px);color:var(--ink-2);line-height:1.7;max-width:600px;margin:0 auto 30px}
.prt-cta{margin:0 auto}
@media(max-width:640px){.prt-facts{gap:10px}.prt-fact{min-width:0;flex-basis:46%;padding:16px 10px}.prt-n{font-size:21px}}

    /* ══════════════════════════════════════════════════════
       FORGE 2.0 - global ember field + scroll-story layer
       (additive: nothing above this block changes)
       ══════════════════════════════════════════════════════ */

    /* The fixed WebGL field sits behind everything; body goes transparent so
       it shows through, html keeps the black base. Solid surf-1 sections
       still cover it, which is the intended rhythm. */
    html { background:#000; }
    body { background:transparent; }
    /* Branded keyboard focus, sitewide (mouse clicks unaffected). */
    :focus-visible { outline:2px solid var(--accent); outline-offset:3px; }
    #field {
      position:fixed; inset:0; width:100vw; height:100vh;
      z-index:-1; pointer-events:none;
    }
    .lenis-on { scroll-behavior:auto !important; }

    /* ── f2 section primitives ── */
    .f2-eyebrow {
      display:inline-flex; align-items:center; gap:8px;
      font-size:12px; font-weight:700; letter-spacing:3px; text-transform:uppercase;
      color:#fdba74; border:1px solid rgba(249,115,22,.45);
      background:var(--accent-dim); padding:7px 16px; border-radius:100px;
    }
    .f2-title { font-size:clamp(30px,5vw,58px); font-weight:800; letter-spacing:-.02em; line-height:1.08; }
    .f2-title em { font-style:normal; color:var(--accent); }
    .f2-sub { color:var(--ink-2); font-size:clamp(15px,1.8vw,19px); max-width:560px; }

    /* ── Marquee: wide (iPad) card variant ── */
    .ss-card-pad .ss-bezel-inner { aspect-ratio:1280/894 !important; width:min(430px,80vw); height:auto; }
    .ss-card-pad img { width:100%; height:100%; object-fit:cover; }

    /* ── Surface toggle (product page) ── */
    .sw { display:inline-flex; background:var(--surf-2); border:1px solid var(--line); border-radius:100px; padding:5px; gap:4px; }
    .sw button { padding:10px 22px; border-radius:100px; font-weight:700; font-size:14px; color:var(--ink-2); transition:all .25s var(--ez); }
    .sw button.on { background:var(--accent); color:#180a02; }
    /* Crossfading panes swapped by the surface toggle. The non-active pane is
       set [hidden] by JS (so it never affects layout height); .on just owns
       the fade-in transition for the pane JS is revealing. */
    .sw-pane { opacity:0; transition:opacity .35s var(--ez); }
    .sw-pane.on { opacity:1; }
    @media (prefers-reduced-motion:reduce) { .sw-pane { transition:none; } }
    .f2-devframe {
      border-radius:24px; padding:8px;
      background:linear-gradient(160deg,#3c3c40,#161618 40%,#2c2c30);
      box-shadow:0 40px 110px -30px #000;
    }
    .f2-devframe .in { border-radius:17px; overflow:hidden; background:#0d0d10; }
    /* height:auto is load-bearing: without it the img's height ATTRIBUTE stays
       the used height while CSS shrinks the width, squashing every screenshot.
       The aspect-ratio locks the box to the real screenshot ratio even before
       a lazy image loads, so nothing ever reflows or stretches. */
    .f2-devframe img { width:100%; height:auto; display:block; }
    .f2-devframe.phone .in { aspect-ratio:589/1280; }
    .f2-devframe.pad .in { aspect-ratio:1280/894; }
    .f2-devframe.phone img, .f2-devframe.pad img { height:100%; object-fit:cover; }
    .f2-tilt { transition:transform .35s var(--ez); transform-style:preserve-3d; will-change:transform; }

    /* ── Chapter rail (product page: client vs trainer) ── */
    .rail-sec { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); gap:clamp(28px,5vw,80px); align-items:center; }
    .rail-sec.flip .rail-media { order:2; }
    .rail-media { display:flex; justify-content:center; }
    .rail-media .f2-devframe.phone { width:min(280px,74vw); }
    .rail-media .f2-devframe.pad { width:min(560px,90vw); }
    @media (max-width:860px) { .rail-sec { grid-template-columns:1fr; } .rail-sec.flip .rail-media { order:0; } }

    /* ── Stat band (for-gyms) ── */
    .band { display:grid; grid-template-columns:repeat(auto-fit,minmax(170px,1fr)); gap:16px; }
    .band .b-item { background:var(--surf-2); border:1px solid var(--line); border-radius:18px; padding:22px; }
    .band .b-item b { font-size:30px; font-weight:800; display:block; letter-spacing:-.02em; }
    .band .b-item b span { color:var(--accent); }
    .band .b-item small { color:var(--ink-2); font-size:13px; }

    /* ── Surface-switcher stage: keep the section height stable so the page
       below does not jump when the iPhone/iPad panes swap. ── */
    @media (min-width:721px) { #swStage { min-height:540px; } }

    /* ── Org bento (for-gyms): 6 capabilities, one featured cell ── */
    .og-bento { display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:auto; gap:16px; }
    .og-cell {
      background:var(--surf-1); border:1px solid var(--line); border-radius:20px;
      padding:28px 26px; position:relative; overflow:hidden;
      transition:border-color .25s, transform .25s var(--ez);
    }
    .og-cell:hover { border-color:var(--line-hi); transform:translateY(-3px); }
    .og-cell h3 { font-size:17px; font-weight:800; letter-spacing:-.01em; margin:0 0 8px; }
    .og-cell p { font-size:14px; color:var(--ink-2); line-height:1.65; margin:0; }
    .og-ico {
      width:42px; height:42px; border-radius:12px; margin-bottom:18px;
      background:var(--accent-dim); border:1px solid var(--accent-mid);
      display:flex; align-items:center; justify-content:center;
    }
    .og-ico svg { width:20px; height:20px; color:var(--accent); }
    .og-feat {
      grid-column:span 2; grid-row:span 2; padding:36px 34px;
      background:
        radial-gradient(120% 90% at 0% 0%, rgba(249,115,22,.14), transparent 55%),
        var(--surf-1);
    }
    .og-feat h3 { font-size:24px; }
    .og-feat p { font-size:15.5px; max-width:38em; }
    .og-feat-stats { display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
    .og-feat-stats span {
      font-size:12.5px; font-weight:700; color:var(--ink-2);
      border:1px solid var(--line); background:var(--surf-2);
      border-radius:100px; padding:7px 14px;
    }
    .og-tint {
      background:
        linear-gradient(200deg, rgba(249,115,22,.09), transparent 60%),
        var(--surf-1);
    }
    @media (max-width:960px) {
      .og-bento { grid-template-columns:1fr 1fr; }
      .og-feat { grid-column:span 2; grid-row:auto; }
    }
    @media (max-width:600px) { .og-bento { grid-template-columns:1fr; } .og-feat { grid-column:auto; } }

    /* ── Console fan (for-gyms): three REAL trainer-console screenshots,
       layered like a hand of cards. Front card straight, two behind peeking. ── */
    .fan { position:relative; width:min(620px,92vw); margin:0 auto; aspect-ratio:1.55; }
    .fan .f2-devframe { position:absolute; width:76%; }
    .fan-back-l { left:0; top:9%; transform:rotate(-5deg); opacity:.85; }
    .fan-back-r { right:0; top:9%; transform:rotate(5deg); opacity:.85; }
    .fan-front { left:12%; top:0; box-shadow:0 50px 130px -30px #000; }
    @media (max-width:640px) {
      .fan { aspect-ratio:auto; }
      .fan .f2-devframe { position:static; width:100%; }
      .fan-back-l, .fan-back-r { display:none; }
      .fan-front { box-shadow:0 40px 110px -30px #000; }
    }
