:root{
    --ink:#141210;          /* warm near-black */
    --paper:#FFFAF5;        /* logo parchment */
    --accent:#FDEC04;       /* brand yellow ("Zero" listening pill) */
    --accent-deep:#EAD800;  /* yellow, one step down for shadows/borders */
    --led:#12A85B;          /* physical LED green (product only) */
    --white:#ffffff;
    --serif:"Hoefler Text","Iowan Old Style","Palatino Linotype","Baskerville",Georgia,"Times New Roman",serif;
    --sans:-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",system-ui,"Helvetica Neue",Arial,sans-serif;
    --nav-h:76px;
    --barh:40px;            /* announcement bar height */
  }
  *{box-sizing:border-box}
  html{scroll-behavior:smooth;overscroll-behavior-x:none;touch-action:manipulation}
  body{overscroll-behavior-x:none;touch-action:manipulation}
  body{margin:0;background:#141210;color:var(--ink);font-family:var(--sans);-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
  a{text-decoration:none;color:inherit}

  /* ---------------- NAV ---------------- */
  /* ---- top announcement / promo marquee ---- */
  .promobar{position:fixed;top:0;left:0;width:100%;height:var(--barh);z-index:60;
       background:var(--accent);color:var(--ink);overflow:hidden;display:flex;align-items:center;
       text-decoration:none;cursor:pointer;box-shadow:0 1px 0 rgba(20,18,16,.08)}
  .promo-track{display:flex;flex:0 0 auto;white-space:nowrap;align-items:center;
       animation:promoscroll 30s linear infinite;will-change:transform}
  .promobar:hover .promo-track{animation-play-state:paused}
  .promo-item{display:inline-block;
       font-size:13px;font-weight:600;letter-spacing:.01em;color:var(--ink)}
  .promo-item .promo-strong,.promo-item .promo-cta{color:var(--ink);font-weight:800}
  .promo-cta{text-decoration:underline;text-underline-offset:2px;text-decoration-thickness:2px}
  .promo-sep{flex:0 0 auto;width:6px;height:6px;border-radius:50%;
       background:rgba(20,18,16,.38);margin:0 26px}
  @keyframes promoscroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
  @media (prefers-reduced-motion:reduce){ .promo-track{animation:none} }

  .nav{position:fixed;inset:var(--barh) 0 auto 0;z-index:50;display:flex;justify-content:center;
       padding:16px clamp(20px,6vw,88px) 0;pointer-events:none;
       transition:transform .55s cubic-bezier(.4,0,.2,1),opacity .35s ease;will-change:transform}
  /* docked into the dark footer: drop the light capsule, keep white logo + yellow CTA.
     use .scrolled.atbottom so it outranks the .nav.scrolled .navwrap capsule rule */
  .nav.scrolled.atbottom .navwrap{background:transparent;backdrop-filter:none;-webkit-backdrop-filter:none;border-color:transparent;box-shadow:none;padding:8px 0}
  .nav.scrolled.atbottom .brand .wd{fill:#fff}
  .nav.scrolled.atbottom .brand .mk{fill:var(--accent)}
  .nav.scrolled.atbottom .brand{height:26px}
  .nav.scrolled.atbottom .brand svg{height:22px}   /* same size as the nav + hero logo */
  .nav::before{content:"";position:absolute;inset:0;height:190px;
       background:linear-gradient(to bottom,rgba(20,18,16,.62),rgba(20,18,16,.20) 55%,rgba(20,18,16,0));
       opacity:1;transition:opacity .4s ease;pointer-events:none}
  .nav.scrolled::before{opacity:0}

  .navwrap{position:relative;z-index:1;pointer-events:auto;display:flex;align-items:center;justify-content:space-between;gap:26px;
       width:100%;
       padding:14px 0;color:var(--white);
       border:1px solid transparent;border-radius:999px;
       background:transparent;backdrop-filter:none;
       box-shadow:0 0 0 rgba(0,0,0,0);
       transition:background .4s ease,color .4s ease,border-color .4s ease,
                  box-shadow .4s ease,max-width .45s cubic-bezier(.4,0,.2,1),padding .4s ease;
       max-width:none}
  .nav.scrolled .navwrap{
       max-width:940px;color:var(--ink);
       background:rgba(255,250,245,.72);
       backdrop-filter:blur(18px) saturate(1.5);
       -webkit-backdrop-filter:blur(18px) saturate(1.5);
       border-color:rgba(20,18,16,.08);
       box-shadow:0 14px 40px -18px rgba(20,18,16,.35),0 1px 0 rgba(255,255,255,.5) inset;
       padding:8px 8px 8px 18px}

  .brand{display:inline-flex;align-items:center;height:26px;flex:0 0 auto}
  .brand svg{height:22px;width:auto;display:block}
  .brand .wd{fill:#fff;transition:fill .4s ease}
  .nav.scrolled .brand .wd{fill:var(--ink)}
  .brand .mk{fill:var(--accent);transition:fill .4s ease}
  .nav.scrolled .brand .mk{fill:var(--ink)}
  /* legibility for white nav content over the bright hero */
  .nav:not(.scrolled) .brand,
  .nav:not(.scrolled) .links a{text-shadow:0 1px 12px rgba(0,0,0,.32)}
  .nav:not(.scrolled) .brand .mk{filter:drop-shadow(0 1px 6px rgba(0,0,0,.35))}

  .links{display:flex;align-items:center;gap:6px;
       position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}
  .nav.atbottom .links{display:none}
  .nav.atbottom .navwrap{justify-content:flex-start}   /* logo + Pre-Order grouped together */
  /* phones: docked layout stays identical to the top capsule (same padding,
     same space-between) so nothing inside the pill moves while it drops.
     the dock itself teleports + fades: a 550ms transform tween reads as the
     pill flying across the page when iOS toggles the state mid-scroll */
  @media (max-width:520px){
    .nav{transition:opacity .25s ease}
    .nav.dockfade{transition:none;opacity:0}
    .nav.atbottom .navwrap{justify-content:space-between}
    .nav.scrolled.atbottom .navwrap{padding:8px 8px 8px 18px}
  }
  .links a{position:relative;font-size:15px;font-weight:500;letter-spacing:.01em;white-space:nowrap;
       padding:9px 16px;border-radius:999px;color:#fff;opacity:.9;
       transition:opacity .2s ease,background .25s ease,color .25s ease}
  .nav.scrolled .links a{color:var(--ink)}
  /* clear hover feedback: a soft pill behind the label (skips the active tab) */
  .links a:not(.active):hover{opacity:1;background:rgba(255,255,255,.18)}
  .nav.scrolled .links a:not(.active):hover{background:rgba(20,18,16,.07)}
  /* the highlighted pill belongs to the scrolled capsule only */
  .nav.scrolled .links a.active{opacity:1;background:var(--ink);color:#fff;font-weight:600;
       text-shadow:none;box-shadow:0 6px 16px -8px rgba(20,18,16,.5)}

  .cta{flex:0 0 auto;font-size:15px;font-weight:600;padding:10px 22px;border-radius:999px;
       border:1px solid transparent;color:var(--ink);white-space:nowrap;
       background:#fff;box-shadow:0 12px 30px -12px rgba(0,0,0,.5);
       transition:background .3s ease,color .3s ease,border-color .3s ease,transform .15s ease,box-shadow .3s ease}
  .cta:hover{transform:translateY(-1px)}
  .nav.scrolled .cta{background:var(--accent);border-color:transparent;color:var(--ink);
       text-shadow:none;box-shadow:0 10px 24px -10px rgba(234,216,0,.85)}

  /* ---------------- HERO ---------------- */
  .hero{position:relative;height:100vh;height:100svh;min-height:600px;overflow:hidden;background:#2a2723}
  .hero video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:52% 42%}
  .hero .scrim{position:absolute;inset:0;
       background:
         linear-gradient(to top,rgba(20,18,16,.78) 0%,rgba(20,18,16,.34) 26%,rgba(20,18,16,0) 56%),
         linear-gradient(to right,rgba(20,18,16,.55) 0%,rgba(20,18,16,.12) 42%,rgba(20,18,16,0) 66%);}
  .hero .vignette{position:absolute;inset:0;box-shadow:inset 0 -60px 120px -40px rgba(20,18,16,.5)}

  .hero-copy{position:absolute;left:0;bottom:0;z-index:3;
       width:min(880px,94%);
       padding:0 24px clamp(48px,7vh,88px) clamp(20px,6vw,88px)}
  .h1{font-family:var(--sans);font-style:normal;font-weight:700;color:#fff;
       font-size:clamp(29px,5vw,70px);line-height:1.06;letter-spacing:-.02em;
       margin:0 0 22px;text-wrap:balance;
       text-shadow:0 2px 30px rgba(0,0,0,.28)}
  .hbrm{display:none}   /* mobile-only line break: "Capture" / "Every Word," / "Wherever You Go." */
  .sub{font-size:clamp(21px,2.25vw,28px);line-height:1.4;font-weight:400;
       color:rgba(255,255,255,.92);margin:0 0 34px;max-width:none;white-space:nowrap;
       text-shadow:0 1px 18px rgba(0,0,0,.35)}
  .actions{display:flex;flex-wrap:wrap;gap:14px}
  .btn{font-size:16px;font-weight:600;padding:15px 30px;border-radius:999px;
       display:inline-flex;align-items:center;gap:9px;cursor:pointer;
       transition:transform .15s ease,box-shadow .3s ease,background .25s ease}
  .btn:hover{transform:translateY(-2px)}
  .btn-primary{background:#fff;color:var(--ink);box-shadow:0 14px 34px -14px rgba(0,0,0,.55)}
  .btn-primary:hover{box-shadow:0 20px 44px -14px rgba(0,0,0,.6)}
  .btn-ghost{background:rgba(255,255,255,.08);color:#fff;border:1px solid rgba(255,255,255,.55);
       backdrop-filter:blur(6px)}
  .btn-ghost:hover{background:rgba(255,255,255,.16)}
  .btn .led{width:9px;height:9px;border-radius:50%;background:var(--accent);
       box-shadow:0 0 10px 2px rgba(253,236,4,.75)}

  /* ---- hero CTAs: Pre-Order primary + Join Waitlist secondary (progressive email) ---- */
  .cta-row{display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-bottom:22px}
  .hero-cta{display:inline-flex;align-items:center;justify-content:center;height:54px;padding:0 30px;
       border-radius:999px;font-family:var(--sans);font-size:15.5px;font-weight:600;white-space:nowrap;
       cursor:pointer;text-decoration:none;border:1.5px solid transparent;
       transition:transform .18s ease,background .25s ease,border-color .25s ease,box-shadow .25s ease}
  .hero-cta.primary{background:#fff;color:var(--ink);box-shadow:0 14px 32px -14px rgba(0,0,0,.55);
       width:174px;box-sizing:border-box}
  .hero-cta.primary:hover{transform:translateY(-2px);box-shadow:0 20px 40px -16px rgba(0,0,0,.6)}
  .hero-cta.ghost{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.42);
       -webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px)}
  .hero-cta.ghost:hover{background:rgba(255,255,255,.22)}

  @media (max-width:560px){
    .hero video{object-position:46% 42%}
    .cta-row{flex-wrap:nowrap;gap:10px}
    .hero-cta.primary{flex:0 0 calc(50% - 5px);width:auto;min-width:0;padding:0 12px}
    .wl-wrap{flex:0 0 calc(50% - 5px);width:auto;min-width:0}
    /* while the email input is open it takes the row; the primary folds away */
    .cta-row:has(.wl-wrap.open) .hero-cta.primary{flex:0 0 0;min-width:0;padding:0;border:0;opacity:0;overflow:hidden}
    .wl-wrap.open{flex:0 0 min(360px,100%)}
  }
  .wl-wrap{position:relative;height:54px;width:174px;border-radius:999px;
       transition:width .36s cubic-bezier(.2,.8,.2,1)}
  .wl-wrap.open{width:min(360px,74vw)}
  /* toggle fades out fast; no vertical transform so nothing jumps */
  .wl-toggle{position:absolute;inset:0;width:100%;transition:opacity .16s ease,background .25s ease}
  .wl-wrap.open .wl-toggle{opacity:0;pointer-events:none}
  .wl-form{position:absolute;inset:0;display:flex;align-items:center;gap:10px;
       background:#fff;border-radius:999px;padding:6px 6px 6px 18px;
       box-shadow:0 8px 22px -6px rgba(0,0,0,.22);
       opacity:0;pointer-events:none;
       transition:opacity .26s ease .12s,box-shadow .25s ease}
  .wl-wrap.open .wl-form{opacity:1;pointer-events:auto}
  /* content slides in horizontally as the pill widens (no vertical motion) */
  .wl-form > *{opacity:0;transform:translateX(-10px);
       transition:opacity .3s ease .16s,transform .42s cubic-bezier(.2,.8,.2,1) .16s}
  .wl-form > .wl-submit{transition-delay:.22s}
  .wl-wrap.open .wl-form > *{opacity:1;transform:none}
  .wl-form:focus-within{box-shadow:0 8px 22px -6px rgba(0,0,0,.22),0 0 0 3px rgba(253,236,4,.6)}
  .wl-mail{width:22px;height:22px;color:#919191;flex-shrink:0}
  .wl-form input{flex:1;min-width:0;border:0;background:transparent;font-family:var(--sans);
       font-size:16px;font-weight:600;color:#000;outline:none}
  .wl-form input::placeholder{color:#919191}
  .wl-submit{flex:0 0 auto;width:42px;height:42px;border-radius:50%;border:0;cursor:pointer;
       background:var(--accent);color:#000;display:inline-flex;align-items:center;justify-content:center;
       transition:transform .15s ease}
  .wl-submit:hover{transform:scale(1.06)}
  .wl-submit svg{width:18px;height:18px}
  .wl-success{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;gap:9px;
       background:#fff;border-radius:999px;color:var(--ink);font-family:var(--sans);font-size:15px;font-weight:700;
       box-shadow:0 8px 22px -6px rgba(0,0,0,.22);opacity:0;pointer-events:none;transition:opacity .32s ease}
  .wl-wrap.done .wl-form{opacity:0;pointer-events:none;transition:opacity .2s ease}
  .wl-wrap.done .wl-success{opacity:1}
  .wl-success svg{width:20px;height:20px;color:#12a150;transform:scale(0);
       transition:transform .42s cubic-bezier(.34,1.7,.5,1) .12s}
  .wl-wrap.done .wl-success svg{transform:scale(1)}

  .social{display:flex;align-items:center;gap:14px}
  .avatars{display:flex;align-items:center}
  .avatars span{position:relative;display:inline-flex;width:32px;height:32px;border-radius:50%;
       overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,.45)}
  .avatars span+span{margin-left:-6px}
  .avatars img{width:100%;height:100%;object-fit:cover;border-radius:50%}
  .social-txt{margin:0;font-size:15px;font-weight:600;color:#e9e9e9;white-space:nowrap;
       text-shadow:0 1px 12px rgba(0,0,0,.4)}

  /* ---- floating "just joined" toast ---- */
  .join-toast{position:fixed;right:20px;bottom:20px;z-index:60;display:flex;align-items:center;gap:12px;
       background:rgba(255,255,255,.92);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
       border:1px solid rgba(0,0,0,.05);border-radius:999px;padding:8px 16px 8px 8px;
       box-shadow:0 10px 30px -12px rgba(0,0,0,.28);pointer-events:none;
       opacity:0;transform:translateY(8px);transition:opacity .48s ease,transform .48s ease}
  .join-toast.show{opacity:1;transform:translateY(0)}
  .jt-av{position:relative;display:inline-flex;width:34px;height:34px;flex-shrink:0}
  .jt-initial{display:flex;width:100%;height:100%;align-items:center;justify-content:center;
       border-radius:50%;font-size:14px;font-weight:700;color:#000}
  .jt-dot{position:absolute;bottom:-1px;right:-1px;width:11px;height:11px;border-radius:50%;
       border:2px solid #fff;background:#22c55e}
  .jt-txt{padding-right:4px}
  .jt-name{margin:0;font-size:13.5px;font-weight:700;color:#000;line-height:1.2}
  .jt-name span{font-weight:500;color:#717171}
  .jt-ago{margin:2px 0 0;font-size:12px;font-weight:500;text-transform:uppercase;
       letter-spacing:.08em;color:#919191}
  @media (prefers-reduced-motion:reduce){.join-toast{transition:opacity .3s ease}}

  /* ---- waitlist queue + referral modal ---- */
  .wl-modal{position:fixed;inset:0;z-index:200;display:flex;align-items:center;justify-content:center;
       padding:20px;opacity:0;pointer-events:none;transition:opacity .3s ease}
  .wl-modal.open{opacity:1;pointer-events:auto}
  .wl-modal-backdrop{position:absolute;inset:0;background:rgba(20,18,16,.5);
       -webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px)}
  .wl-modal-card{position:relative;width:min(520px,100%);background:#fff;border-radius:26px;
       padding:clamp(24px,3vw,34px);box-shadow:0 40px 90px -28px rgba(20,18,16,.55);
       transform:translateY(14px) scale(.98);transition:transform .34s cubic-bezier(.2,.8,.2,1);
       max-height:92vh;overflow:auto}
  .wl-modal.open .wl-modal-card{transform:none}
  .wl-modal-x{position:absolute;top:16px;right:16px;width:32px;height:32px;border:0;cursor:pointer;
       background:rgba(20,18,16,.05);border-radius:50%;color:rgba(20,18,16,.55);font-size:17px;line-height:1;
       display:flex;align-items:center;justify-content:center;transition:background .2s ease}
  .wl-modal-x:hover{background:rgba(20,18,16,.1)}
  .wlm-head{display:flex;align-items:center;gap:14px;margin-bottom:20px;padding-right:38px}
  .wlm-logo{width:46px;height:46px;border-radius:50%;background:var(--accent);flex:0 0 auto;
       display:flex;align-items:center;justify-content:center}
  .wlm-logo svg{width:26px;height:26px}
  .wlm-eyebrow{display:block;font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:rgba(20,18,16,.42)}
  .wlm-title{font-family:var(--sans);font-size:22px;font-weight:800;letter-spacing:-.01em;color:var(--ink);margin:2px 0 0}
  .wlm-queue{background:#F5F5F3;border-radius:18px;padding:20px 22px;margin-bottom:14px}
  .wlm-q-label{display:block;font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:rgba(20,18,16,.42);margin-bottom:9px}
  .wlm-q-rank{font-family:var(--sans);font-size:44px;font-weight:800;letter-spacing:-.02em;color:var(--ink);line-height:1}
  .wlm-q-of{font-size:16px;font-weight:600;color:rgba(20,18,16,.4);letter-spacing:0}
  .wlm-q-bar{height:7px;border-radius:999px;background:rgba(20,18,16,.1);margin:16px 0 12px;overflow:hidden}
  .wlm-q-bar span{display:block;height:100%;width:0;border-radius:999px;background:var(--ink);transition:width .8s cubic-bezier(.2,.8,.2,1)}
  .wlm-q-today{font-size:13.5px;font-weight:600;color:rgba(20,18,16,.55);display:flex;align-items:center;gap:8px}
  .wlm-q-today .dot{width:8px;height:8px;border-radius:50%;background:#12a150}
  .wlm-refer{background:var(--ink);border-radius:18px;padding:22px;color:#fff}
  .wlm-refer-head{font-size:14px;color:rgba(255,255,255,.68);margin-bottom:8px}
  .wlm-badge{display:inline-block;background:var(--accent);color:var(--ink);font-size:12px;font-weight:800;
       padding:3px 9px;border-radius:999px;margin-right:8px;text-transform:uppercase;letter-spacing:.02em}
  .wlm-refer-h{font-size:20px;font-weight:800;margin:0 0 16px;color:#fff}
  .wlm-link{display:flex;align-items:center;gap:8px;background:rgba(255,255,255,.08);border-radius:12px;padding:6px 6px 6px 16px;margin-bottom:12px}
  .wlm-link input{flex:1;min-width:0;background:transparent;border:0;color:#fff;font-family:var(--sans);font-size:15px;font-weight:600;outline:none}
  .wlm-link button{flex:0 0 auto;background:var(--accent);color:var(--ink);border:0;border-radius:9px;padding:10px 18px;font-weight:700;font-size:14px;cursor:pointer;transition:transform .15s ease}
  .wlm-link button:hover{transform:scale(1.03)}
  .wlm-share{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}
  .wlm-share a{display:flex;align-items:center;justify-content:center;gap:7px;background:rgba(255,255,255,.08);
       border-radius:10px;padding:11px 6px;font-size:13px;font-weight:600;color:#fff;cursor:pointer;
       transition:background .2s ease;text-decoration:none}
  .wlm-share a:hover{background:rgba(255,255,255,.16)}
  .wlm-share svg{width:15px;height:15px;flex:0 0 auto}
  .wlm-foot{text-align:center;font-size:12.5px;color:rgba(20,18,16,.4);margin:16px 0 0}
  @media (max-width:480px){ .wlm-share{grid-template-columns:1fr 1fr} }

  /* ---------------- SHOWCASE (pinned scroll-through moments) ---------------- */
  .showcase{position:relative;height:370vh;background:#ffffff;color:var(--ink)}
  .showcase-sticky{position:sticky;top:0;height:100vh;display:flex;align-items:center;
       justify-content:center;padding:clamp(30px,3.4vw,48px)}
  .sc-band{position:relative;width:100%;max-width:1760px;height:100%;max-height:1000px;margin:0 auto;
       background:#F1F1F3;border-radius:34px;padding:0;display:flex;align-items:stretch;
       box-shadow:0 30px 60px -38px rgba(20,18,16,.3)}
  .sc-inner{position:relative;order:1;flex:1 1 auto;min-width:0;display:flex;align-items:stretch;
       padding:clamp(36px,4vh,60px) clamp(30px,2.8vw,48px) clamp(36px,4vh,60px) clamp(78px,7vw,120px)}

  .sc-text{position:relative;width:100%;height:100%}
  .sc-panel{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;
       opacity:0;transform:translateY(16px);transition:opacity .55s ease,transform .55s ease;pointer-events:none}
  .sc-panel.active{opacity:1;transform:none}
  .sc-eyebrow{display:inline-flex;align-self:flex-start;font-size:12.5px;font-weight:700;letter-spacing:.16em;
       text-transform:uppercase;color:var(--ink);background:var(--accent);padding:5px 12px;border-radius:999px;margin-bottom:20px}
  .sc-h{font-family:var(--sans);font-weight:800;font-size:clamp(30px,3.5vw,50px);line-height:1.05;
       letter-spacing:-.02em;margin:0 0 20px;color:var(--ink);max-width:15ch;text-wrap:balance}
  .sc-d{font-size:clamp(17px,1.5vw,21px);line-height:1.6;color:rgba(20,18,16,.62);margin:0;max-width:38ch}

  .sc-media{position:relative;order:2;flex:0 0 auto;align-self:stretch;aspect-ratio:4/5;
       border-radius:0 34px 34px 0;overflow:hidden}
  .sc-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center;
       opacity:0;transform:scale(1.045);transition:opacity .6s ease,transform .9s ease}
  .sc-img.active{opacity:1;transform:scale(1)}

  .sc-rail{position:absolute;left:clamp(30px,2.7vw,46px);top:50%;transform:translateY(-50%);
       display:flex;flex-direction:column;gap:10px;height:min(60vh,520px);z-index:3}
  .sc-seg{position:relative;flex:1;width:5px;border-radius:3px;background:rgba(20,18,16,.14);overflow:hidden}
  .sc-seg-fill{position:absolute;left:0;top:0;width:100%;height:0;background:rgba(20,18,16,.78);border-radius:3px}

  /* small laptops: cap the media column AND tie the band height to it, so the
     portrait covers always render at their true 4:5 with zero horizontal crop */
  @media (min-width:1025px) and (max-width:1440px){
    .sc-band{--scmw:min(44vw,580px);height:min(100%,calc(var(--scmw) * 1.25))}
    .sc-media{aspect-ratio:auto;width:var(--scmw);flex:0 0 var(--scmw)}
    .sc-h{font-size:clamp(28px,3vw,44px)}
    .sc-inner{padding-left:clamp(64px,6vw,100px)}
  }

  /* tablets + phones: the scrub band becomes a swipeable center-card carousel */
  .sc-carousel{display:none}
  @media (max-width:1024px){
    .showcase{height:auto}
    .showcase-sticky{position:static;height:auto;max-height:none;display:block;padding:56px 0 56px}
    .sc-band,.sc-rail{display:none}
    .sc-carousel{display:block}
    .scc-track{display:flex;gap:clamp(12px,2vw,20px);overflow-x:auto;scroll-snap-type:x mandatory;
         padding:6px calc(50vw - min(39vw,315px)) 44px;scrollbar-width:none;-webkit-overflow-scrolling:touch}
    .scc-track::-webkit-scrollbar{display:none}
    .scc-card{flex:0 0 min(78vw,630px);scroll-snap-align:center;background:#F1F1F3;border-radius:24px;
         overflow:hidden;box-shadow:0 22px 44px -30px rgba(20,18,16,.35);
         transform:scale(.92);opacity:.55;transition:transform .28s ease,opacity .28s ease;will-change:transform,opacity}
    .scc-card:nth-child(3n+1){scroll-snap-stop:always}   /* a fling travels 3 cards max */
    .scc-card.is-center{transform:scale(1);opacity:1}
    .scc-media{width:100%;aspect-ratio:4/5;overflow:hidden}   /* match the portrait source covers */
    .scc-media img{width:100%;height:100%;object-fit:cover;display:block}
    .scc-body{padding:clamp(18px,3.4vw,28px) clamp(18px,3.6vw,30px) clamp(24px,4vw,34px)}
    .scc-body .sc-eyebrow{margin-bottom:14px}
    .scc-body .sc-h{font-size:clamp(25px,4vw,38px);max-width:none;margin-bottom:12px}
    .scc-body .sc-d{font-size:clamp(16px,2.3vw,20px);max-width:none}
  }
  .scc-slider{display:none}
  /* phones: one persistent white card; a swipe swaps the graphic + copy in
     place (directional slide/fade) while the card frame stays put */
  @media (max-width:560px){
    .scc-track{display:none}
    .scc-slider{display:block;margin:0 5vw;background:#fff;border-radius:28px;
         touch-action:pan-y;
         padding:12px 12px 4px;border:1px solid rgba(20,18,16,.08);
         box-shadow:0 24px 48px -24px rgba(20,18,16,.32),0 3px 10px rgba(20,18,16,.05)}
    .scs-media{position:relative;border-radius:20px;aspect-ratio:4/5;overflow:hidden;
         touch-action:pan-y;background:#EDEDEF}
    .scs-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
    .scc-slider .scc-body{padding:18px 12px 0}
    .scc-slider .sc-eyebrow{margin-bottom:11px;font-size:11px;padding:6px 12px}
    .scc-slider .sc-h{font-size:24px;line-height:1.12;max-width:none;margin-bottom:10px}
    .scc-slider .sc-d{font-size:15.5px;max-width:none}
    .scc-dots{display:flex;gap:7px;justify-content:center;align-items:center;padding:16px 0 14px}
    .scc-dots i{width:8px;height:8px;border-radius:999px;background:rgba(20,18,16,.18);
         transition:width .25s ease,background .25s ease}
    .scc-dots i.on{width:26px;background:var(--ink)}
  }

  /* ---------------- RING SHOWCASE (scroll-scrub + corner explode) ---------------- */
  .ringshow{position:relative;height:600vh;background:#fff;color:var(--ink)}
  .ringshow-sticky{position:sticky;top:0;height:100vh;overflow:hidden;display:flex;align-items:center;justify-content:center}
  .rs-stage{position:relative;width:100%;max-width:1440px;height:100%;margin:0 auto;--rvh:calc(min(800px,86vw,107vh) * 9 / 32)}
  .rs-video{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
       width:min(800px,86vw,107vh);height:auto;pointer-events:none;user-select:none;z-index:2;
       mix-blend-mode:multiply}

  .rs-intro{position:absolute;top:max(4.5vh, calc(50% - var(--rvh) - 216px));left:50%;transform:translateX(-50%);width:min(820px,92%);
       text-align:center;z-index:3;will-change:opacity,transform}
  .rs-intro-m{display:none}   /* mobile-only flowing title (added before the sticky); desktop uses .rs-intro in-stage */
  .rs-eyebrow{display:inline-flex;font-size:12.5px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
       color:var(--ink);background:var(--accent);padding:5px 12px;border-radius:999px;margin-bottom:15px}
  .rs-h{font-family:var(--sans);font-weight:800;font-size:clamp(26px,3.4vw,44px);line-height:1.05;
       letter-spacing:-.02em;margin:0 0 12px;color:var(--ink);text-wrap:balance}
  .rs-d{font-size:clamp(15px,1.3vw,18px);line-height:1.55;color:rgba(20,18,16,.6);margin:0 auto;max-width:62ch}
  .rs-cue{position:absolute;bottom:auto;top:calc(50% + var(--rvh) + 34px);left:50%;transform:translateX(-50%);font-size:12px;font-weight:600;
       letter-spacing:.14em;text-transform:uppercase;color:rgba(20,18,16,.38);z-index:3;pointer-events:none}

  .rs-glow{position:absolute;top:43%;left:50%;width:96px;height:96px;border-radius:50%;z-index:3;
       transform:translate(-50%,-50%) scale(0);opacity:0;pointer-events:none;
       background:radial-gradient(circle,rgba(18,168,91,.6),rgba(18,168,91,0) 66%)}
  .lit .rs-glow{animation:ledburst .9s ease-out forwards}
  @keyframes ledburst{0%{opacity:.7;transform:translate(-50%,-50%) scale(.25)}100%{opacity:0;transform:translate(-50%,-50%) scale(1.7)}}

  /* dotted L-shaped connector lines from the ring to each corner feature;
     each one draws in (masked wipe) as its feature reveals */
  .rs-lines{position:absolute;inset:0;width:100%;height:100%;z-index:1;pointer-events:none}
  .rs-lines .rl{fill:none;stroke:rgba(20,18,16,.34);stroke-width:2;
       stroke-dasharray:0.1 7;stroke-linecap:round;stroke-linejoin:round;opacity:0}
  .rs-feat{position:absolute;width:min(330px,34vw);opacity:0;pointer-events:none;z-index:4;
       transform:translate(0,0) scale(.68);will-change:opacity,transform}
  .rs-feat h4{font-size:24px;font-weight:700;margin:0 0 11px;color:var(--ink);display:flex;align-items:center;gap:12px;white-space:nowrap}
  .rs-feat p{font-size:18px;line-height:1.5;color:rgba(20,18,16,.6);margin:0}
  .rs-ic{display:inline-flex;align-items:center;justify-content:center;width:43px;height:43px;flex:0 0 auto;
       border-radius:12px;background:var(--accent);color:var(--ink)}
  .rs-ic svg{width:24px;height:24px}
  .rs-tl{top:calc(50% - var(--rvh) - 45px);left:8%}
  .rs-tr{top:calc(50% - var(--rvh) - 45px);right:8%;text-align:right}
  .rs-tr h4{flex-direction:row-reverse}
  .rs-bl{bottom:calc(50% - var(--rvh) - 126px);left:8%}
  .rs-br{bottom:calc(50% - var(--rvh) - 126px);right:8%;text-align:right}
  .rs-br h4{flex-direction:row-reverse}
  .rs-mcard{display:none}   /* built in JS, shown only on the mobile scroll story */
  .rs-mbr{display:none}     /* mobile-only line break in the ring subtitle */

  @media (max-width:1024px){
    /* mobile: the ring section is its own scroll-scrubbed story —
       reveal -> LED -> 4 feature cards scroll through -> case + pre-order */
    .ringshow{height:430vh}
    .ringshow-sticky{position:sticky;top:0;height:100svh;overflow:hidden;display:block;padding:0}
    .rs-stage{width:100%;max-width:none;height:100%;margin:0}
    .ringshow{margin-top:0}   /* no overlap: keep the full lifestyle bottom padding so the card shadow is never clipped */
    .rs-video{position:absolute;top:50svh;left:50%;transform:translate(-50%,-50%);
         width:min(340px,80vw);height:auto;max-height:36svh;margin:0;display:block;z-index:2}
    .rs-lines{display:none}
    .rs-feat{display:none}
    /* the title sits ~20px above the centered ring; as you scroll it slides up and
       off (JS), the ring stays pinned in the centre, then the animation begins */
    .rs-intro-m{display:none}
    /* title sits at the section top (56px below the lifestyle white card; its shadow sits
       inside that gap). the ring anchors ~20px below it, then rises to centre on scroll (JS). */
    .rs-intro{display:block;position:absolute;top:0;bottom:auto;left:16px;right:16px;width:auto;
         text-align:center;transform:none;z-index:3;margin:0;will-change:opacity,transform}
    .rs-h{font-size:clamp(22px,5.8vw,30px)}
    .rs-mbr{display:inline}
    .rs-d{font-size:15px;max-width:none}
    .rs-cue{display:block;position:absolute;top:auto;bottom:calc(env(safe-area-inset-bottom) + 22px);
         left:50%;transform:translateX(-50%);z-index:3}
    .rs-glow{display:block}
    /* features as plain text blocks stacked in one spot: the active one fades
       out going up as you scroll, and the next fades in from below */
    .rs-mcard{display:block;position:absolute;left:0;right:0;top:60svh;height:176px;
         overflow:visible;z-index:4;opacity:0;will-change:opacity}
    .rs-mcard-scroll{position:relative;height:100%}
    .rs-mpanel{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:center;
         gap:13px;padding:0 26px;opacity:0;will-change:opacity,transform}
    .rs-mp-ic{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;
         border-radius:14px;background:var(--accent);color:var(--ink)}
    .rs-mp-ic svg{width:26px;height:26px}
    .rs-mpanel h4{font-size:23px;font-weight:800;margin:0;color:var(--ink);letter-spacing:-.01em}
    .rs-mpanel p{font-size:16px;line-height:1.5;color:rgba(20,18,16,.6);margin:0;max-width:32ch}
    .rs-mcard-dots{position:absolute;left:0;right:0;top:calc(63svh + 176px);display:flex;gap:7px;
         justify-content:center;align-items:center;z-index:4;opacity:0}
    .rs-mcard-dots i{width:7px;height:7px;border-radius:999px;background:rgba(20,18,16,.2);
         transition:width .25s ease,background .25s ease}
    .rs-mcard-dots i.on{width:22px;background:var(--ink)}
  }
  .ringshow,.showcase,.reviews{scroll-margin-top:calc(var(--nav-h) + var(--barh))}

  /* ring specs + pre-order panel (final beat) */
  .rs-specs{position:absolute;top:50%;right:clamp(20px,3vw,56px);transform:translate(44px,-50%);
       width:min(48%,560px);opacity:0;pointer-events:none;z-index:5;will-change:opacity,transform}
  .rs-sp-h{font-family:var(--sans);font-weight:800;font-size:clamp(24px,2.7vw,38px);line-height:1.06;
       letter-spacing:-.02em;color:var(--ink);margin:0 0 36px;white-space:nowrap}
  .rs-sp-eyebrow{display:block;font-size:11.5px;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
       color:rgba(20,18,16,.42);margin-bottom:22px}
  .rs-sp-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px 30px;margin-bottom:30px}
  .rs-sp-item h5{font-size:18px;font-weight:700;margin:0 0 4px;color:var(--ink)}
  .rs-sp-item p{font-size:15px;line-height:1.42;color:rgba(20,18,16,.55);margin:0}
  .rs-sp-ic{display:inline-flex;align-items:center;justify-content:center;color:var(--ink);margin-bottom:11px}
  .rs-sp-ic svg{width:26px;height:26px}
  .rs-sp-buy{display:flex;align-items:center;gap:26px}
  .rs-sp-priceline{display:flex;flex-direction:column;gap:5px}
  .rs-sp-anchor{display:flex;align-items:center;gap:9px}
  .rs-sp-was{font-size:16px;font-weight:600;color:rgba(20,18,16,.4);text-decoration:line-through}
  .rs-sp-off{background:#E5484D;color:#fff;font-size:12px;font-weight:800;
       padding:2px 8px;border-radius:999px;text-transform:uppercase;letter-spacing:.05em}
  .rs-sp-now{display:flex;align-items:baseline;gap:7px}
  .rs-sp-amt{font-size:clamp(26px,2.8vw,38px);font-weight:700;color:var(--ink);letter-spacing:-.01em}
  .rs-sp-cur{font-size:13px;font-weight:600;letter-spacing:.1em;color:rgba(20,18,16,.4)}
  .rs-sp-note{display:block;font-size:13.5px;color:rgba(20,18,16,.5);margin-top:13px}
  .rs-sp-btn{display:inline-flex;align-items:center;background:var(--ink);color:#fff;font-weight:700;
       font-size:15px;padding:15px 36px;border-radius:999px;white-space:nowrap;
       transition:transform .15s ease,box-shadow .3s ease;box-shadow:0 14px 30px -12px rgba(20,18,16,.5)}
  .rs-sp-btn:hover{transform:translateY(-2px)}
  @media (max-width:1024px){
    /* pre-order finish: a rising card with just the message, price and CTA —
       the spec grid duplicates the feature cards, so it's dropped on mobile */
    .rs-specs{position:absolute;left:16px;right:16px;top:63svh;bottom:auto;transform:none;width:auto;
         opacity:0;pointer-events:none;z-index:5;background:#fff;border:1px solid rgba(20,18,16,.08);
         border-radius:24px;padding:26px 22px;text-align:center;
         box-shadow:0 24px 48px -24px rgba(20,18,16,.32),0 3px 10px rgba(20,18,16,.05)}
    .rs-sp-grid{display:none}
    .rs-sp-h{font-size:20px;line-height:1.14;margin:0 0 22px;white-space:normal}
    .rs-sp-buy{flex-direction:column;gap:20px;align-items:stretch}
    /* $99 large on the left; crossed-out $199 + 50% OFF stacked on the right */
    .rs-sp-priceline{flex-direction:row;align-items:center;justify-content:center;gap:16px}
    .rs-sp-now{order:0;align-items:baseline;gap:6px}
    .rs-sp-amt{font-size:39px;line-height:1;font-weight:800}
    .rs-sp-cur{font-size:12px}
    .rs-sp-anchor{order:1;flex-direction:column;align-items:flex-start;gap:5px}
    .rs-sp-was{font-size:16px}
    .rs-sp-off{font-size:9.5px;padding:2px 7px}
    .rs-sp-btn{width:100%;justify-content:center;padding:14px 24px;font-size:15px}
  }

  /* ---------------- EARLY TESTER REVIEWS ---------------- */
  .reviews{position:relative;background:#F4F4F6;color:var(--ink);
       padding:clamp(76px,10vh,132px) clamp(24px,5vw,80px) clamp(160px,24vh,300px)}
  @media (max-width:1024px){ .reviews{padding-bottom:clamp(64px,9vh,120px)} }
  .rv-wrap{max-width:1180px;margin:0 auto}
  .rv-head{text-align:center;max-width:820px;margin:0 auto clamp(40px,5.5vh,66px)}
  .rv-eyebrow{display:inline-flex;font-size:12.5px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
       color:var(--ink);background:var(--accent);padding:5px 12px;border-radius:999px;margin-bottom:15px}
  .rv-h{font-family:var(--sans);font-weight:800;font-size:clamp(34px,5vw,60px);line-height:1.02;
       letter-spacing:-.02em;margin:0;text-wrap:balance}
  .rv-h .hl{background:var(--accent);padding:0 .1em;border-radius:5px;
       box-decoration-break:clone;-webkit-box-decoration-break:clone}
  .rv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(16px,1.6vw,22px)}
  .rv-card{background:#fff;border:1px solid rgba(20,18,16,.06);border-radius:22px;
       padding:clamp(24px,2.4vw,32px);display:flex;flex-direction:column;
       box-shadow:0 26px 50px -42px rgba(20,18,16,.45)}
  .rv-stars{display:flex;align-items:center;gap:10px;margin-bottom:18px}
  .rv-star-row{position:relative;display:inline-block;font-size:19px;line-height:1;letter-spacing:2px}
  .rv-star-row::before{content:"\2605\2605\2605\2605\2605";color:rgba(20,18,16,.15)}
  .rv-star-row::after{content:"\2605\2605\2605\2605\2605";color:var(--accent);
       position:absolute;inset:0;width:var(--pct,100%);overflow:hidden;white-space:nowrap}
  .rv-score{font-size:14px;font-weight:700;color:rgba(20,18,16,.5)}
  .rv-quote{font-size:clamp(17px,1.5vw,20px);font-weight:700;line-height:1.32;color:var(--ink);margin:0 0 auto}
  .rv-who{display:flex;align-items:center;gap:13px;margin-top:28px}
  .rv-av{width:44px;height:44px;border-radius:50%;flex:0 0 auto;display:flex;align-items:center;justify-content:center;
       font-weight:700;font-size:16px;color:#fff;background:var(--ink)}
  img.rv-av{object-fit:cover;overflow:hidden}
  .rv-name{font-size:15px;font-weight:700;color:var(--ink);line-height:1.25}
  .rv-handle{font-size:13.5px;color:rgba(20,18,16,.45)}
  .rv-stat{background:#FFFBE0;border:1.5px dashed rgba(20,18,16,.22);border-radius:22px;
       padding:clamp(26px,2.6vw,36px);display:flex;flex-direction:column;justify-content:center}
  .rv-bignum{font-family:var(--sans);font-weight:800;font-size:clamp(40px,4.6vw,60px);line-height:1;
       letter-spacing:-.02em;color:var(--ink);margin:0 0 14px}
  .rv-stat p{font-size:15.5px;line-height:1.5;color:rgba(20,18,16,.62);margin:0 0 26px;max-width:34ch}
  .rv-cta{align-self:flex-start;display:inline-flex;align-items:center;background:var(--ink);color:#fff;
       font-weight:700;font-size:15px;padding:14px 30px;border-radius:999px;
       transition:transform .15s ease,box-shadow .3s ease;box-shadow:0 14px 30px -14px rgba(20,18,16,.5)}
  .rv-cta:hover{transform:translateY(-2px)}
  .rv-cta-row{display:flex;gap:12px;flex-wrap:wrap}
  .rv-cta.sec{background:transparent;color:var(--ink);border:1.5px solid rgba(20,18,16,.28);box-shadow:none}
  .rv-cta.sec:hover{background:rgba(20,18,16,.06)}
  .rv-reveal{opacity:0;transform:translateY(26px);transition:opacity .6s ease,transform .6s cubic-bezier(.22,1,.36,1)}
  .rv-reveal.in{opacity:1;transform:none}
  /* 2 columns as soon as a 3-up layout would stack the CTA buttons (tablets + small laptops) */
  @media (max-width:1280px){ .rv-grid{grid-template-columns:1fr 1fr} }
  /* loop clones are a phone-carousel device; grids never show them */
  @media (min-width:561px){ .rv-grid > [data-clone]{display:none!important} }
  /* phones: scroll-driven card stack — each review stacks on top of the last,
     the ones behind dim and recede */
  @media (max-width:560px){
    /* compact stacked deck: the section is only as tall as title + one card, then footer.
       no scroll-pin (no dead space). auto-cycles + tap/swipe. no dots. */
    .reviews{height:auto;padding:clamp(46px,7vh,68px) 0 clamp(38px,5.5vh,56px)}
    .rv-wrap{position:static;padding:0 5vw;max-width:none}
    .rv-head{margin:0 0 clamp(30px,4vh,42px);position:static;background:none}
    .rv-grid{position:relative;display:block;height:242px;grid-template-columns:none;perspective:1200px}
    .rv-grid > *{position:absolute;left:0;right:0;top:0;height:242px;margin:0;overflow:hidden;
         transition:transform .5s cubic-bezier(.22,1,.36,1),opacity .45s ease;
         box-shadow:0 24px 54px -26px rgba(20,18,16,.4);will-change:transform,opacity;cursor:pointer}
    .rv-grid > [data-clone]{display:none!important}
    .rv-card,.rv-stat{justify-content:center}
    .rv-quote{margin:0 0 16px}
    .rv-who{margin-top:14px}
    .rv-stat p{margin-bottom:16px}
    .rv-cta-row{flex-wrap:nowrap;gap:10px}
    .rv-cta{flex:1 1 0;justify-content:center;padding:13px 10px;font-size:14px}
    .rv-dots{display:flex;justify-content:center;gap:8px;margin-top:22px}
    .rv-dot{width:7px;height:7px;border-radius:999px;background:rgba(20,18,16,.2);transition:width .25s ease,background .25s ease;cursor:pointer;border:0;padding:0}
    .rv-dot.on{background:#141210;width:22px}
  }
  @media (min-width:561px){ .rv-dots{display:none} }

  /* ---------------- APP SHOWCASE (bento) ---------------- */
  .appshow{position:relative;background:#F4F4F6;color:var(--ink);padding:clamp(76px,10vh,138px) clamp(24px,5vw,80px)}
  .app-wrap{max-width:1280px;margin:0 auto}
  .app-head{max-width:760px;margin:0 0 clamp(38px,5vh,60px)}
  .app-eyebrow{display:inline-flex;font-size:12.5px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
       color:var(--ink);background:var(--accent);padding:5px 12px;border-radius:999px;margin-bottom:20px}
  .app-h{font-family:var(--sans);font-weight:800;font-size:clamp(32px,4.4vw,56px);line-height:1.05;
       letter-spacing:-.02em;margin:0 0 16px;text-wrap:balance}
  .app-sub{font-size:clamp(16px,1.35vw,19px);line-height:1.55;color:rgba(20,18,16,.6);margin:0;max-width:56ch}
  .app-bento{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(16px,1.5vw,22px)}
  .app-card{position:relative;overflow:hidden;
       background:#ffffff;border:1px solid rgba(20,18,16,.05);
       border-radius:28px;padding:clamp(28px,2.6vw,40px);box-shadow:0 30px 60px -46px rgba(20,18,16,.3);
       display:flex;flex-direction:column;
       opacity:0;transform:translateY(30px);
       transition:opacity .7s ease,transform .7s cubic-bezier(.22,1,.36,1)}
  .app-card.in{opacity:1;transform:none}
  .app-card h4{font-size:clamp(19px,1.7vw,23px);font-weight:700;margin:0 0 10px;color:var(--ink)}
  .app-card p{font-size:14.5px;line-height:1.5;color:rgba(20,18,16,.56);margin:0;max-width:40ch}
  .app-visual{margin-top:auto;padding-top:26px;display:flex;justify-content:center;align-items:flex-end}

  /* rendered iPhone 17 Pro mockup on white - fixed height so all phones match */
  .app-mock{display:block;width:auto;height:clamp(348px,32vw,436px);
       opacity:0;transform:translateY(48px);
       transition:opacity .8s ease .16s,transform .9s cubic-bezier(.22,1,.36,1) .16s}
  .app-card.in .app-mock{opacity:1;transform:none}

  @media (max-width:980px){
    .app-bento{grid-template-columns:1fr;max-width:460px;margin:0 auto}
    .app-mock{height:clamp(360px,64vw,440px)}
  }

  /* ---------------- PRICING ---------------- */
  .pricing{position:relative;background:#fff;color:var(--ink);padding:clamp(76px,10vh,132px) clamp(24px,5vw,80px)}
  .pr-wrap{max-width:1180px;margin:0 auto}
  .pr-head{max-width:720px;margin:0 auto;text-align:center}
  .pr-eyebrow{display:inline-flex;font-size:12.5px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
       color:var(--ink);background:var(--accent);padding:5px 12px;border-radius:999px;margin-bottom:18px}
  .pr-h{font-family:var(--sans);font-weight:800;font-size:clamp(30px,4vw,52px);line-height:1.05;
       letter-spacing:-.02em;margin:0 0 14px;text-wrap:balance}
  .pr-sub{font-size:clamp(15px,1.3vw,18px);line-height:1.5;color:rgba(20,18,16,.6);margin:0 auto;max-width:52ch}
  .pr-toggle-wrap{display:flex;align-items:center;justify-content:center;gap:12px;margin:clamp(26px,3.4vh,40px) 0 clamp(38px,5vh,56px)}
  .pr-toggle{position:relative;display:inline-flex;background:#f0f0f2;border-radius:999px;padding:5px}
  .pr-toggle button{position:relative;z-index:1;border:0;background:transparent;cursor:pointer;font-family:var(--sans);
       font-size:14px;font-weight:600;color:rgba(20,18,16,.55);padding:9px 22px;border-radius:999px;transition:color .25s}
  .pr-toggle button.on{color:var(--ink)}
  .pr-toggle .knob{position:absolute;top:5px;left:5px;height:calc(100% - 10px);width:calc(50% - 5px);
       background:#fff;border-radius:999px;box-shadow:0 3px 10px -3px rgba(20,18,16,.25);
       transition:transform .32s cubic-bezier(.4,0,.2,1)}
  .pricing.yearly .pr-toggle .knob{transform:translateX(100%)}
  .pr-save{font-size:12.5px;font-weight:700;color:#0F9A52;background:rgba(18,168,91,.12);padding:5px 11px;border-radius:999px}

  .pr-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(16px,1.6vw,24px);align-items:stretch}
  .pr-card{position:relative;background:#fff;border:1px solid rgba(20,18,16,.1);border-radius:24px;
       padding:clamp(28px,2.4vw,38px);display:flex;flex-direction:column;
       opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
  .pr-card.in{opacity:1;transform:none}
  .pr-card.feat{border-color:var(--ink);border-width:1.5px;box-shadow:0 34px 70px -42px rgba(20,18,16,.42)}
  .pr-badge{position:absolute;top:-13px;left:50%;transform:translateX(-50%);white-space:nowrap;
       background:var(--accent);color:var(--ink);font-size:11px;font-weight:700;letter-spacing:.06em;
       text-transform:uppercase;padding:6px 15px;border-radius:999px}
  .pr-badge.dark{background:var(--ink);color:#fff}
  .pr-name{font-size:22px;font-weight:700;margin:0 0 6px}
  .pr-tag{font-size:14px;line-height:1.4;color:rgba(20,18,16,.55);margin:0 0 22px;min-height:40px}
  .pr-price{display:flex;align-items:baseline;gap:7px;margin-bottom:4px}
  .pr-amt{font-size:clamp(30px,3.2vw,42px);font-weight:800;letter-spacing:-.02em;transition:opacity .14s ease}
  .pr-per{font-size:15px;color:rgba(20,18,16,.5);font-weight:500}
  .pr-yr{font-size:13px;color:rgba(20,18,16,.45);margin-bottom:22px;min-height:18px}
  .pr-cta{display:inline-flex;justify-content:center;align-items:center;padding:13px;border-radius:999px;
       font-weight:600;font-size:15px;margin-bottom:26px;transition:transform .15s ease,box-shadow .3s ease}
  .pr-cta:hover{transform:translateY(-2px)}
  .pr-cta.sec{background:#f2f2f4;color:var(--ink)}
  .pr-cta.acc{background:var(--accent);color:var(--ink);box-shadow:0 14px 30px -12px rgba(234,216,0,.8)}
  .pr-cta.pri{background:var(--ink);color:#fff}
  .pr-feats{list-style:none;margin:0;padding:22px 0 0;border-top:1px solid rgba(20,18,16,.08);
       display:flex;flex-direction:column;gap:13px}
  .pr-feats li{display:flex;gap:11px;font-size:14.5px;line-height:1.4;color:rgba(20,18,16,.74)}
  .pr-feats li b{font-weight:700;color:var(--ink)}
  .pr-ck{flex:0 0 auto;width:18px;height:18px;border-radius:50%;background:var(--accent);color:var(--ink);
       display:inline-flex;align-items:center;justify-content:center;margin-top:1px}
  .pr-ck svg{width:11px;height:11px}
  .pr-note{text-align:center;font-size:13px;color:rgba(20,18,16,.45);margin-top:clamp(28px,4vh,42px)}

  @media (max-width:900px){ .pr-cards{grid-template-columns:1fr;max-width:440px;margin:0 auto} }

  /* ---------------- FOOTER (dark finale) ---------------- */
  .footer{position:fixed;left:0;bottom:0;width:100%;z-index:0;background:#141210;color:#fff;padding:0}
  .ft-shell{position:relative;overflow:hidden;background:#141210;color:#fff;
       padding:clamp(72px,9vh,120px) clamp(24px,5vw,80px) 42px}
  .site{position:relative;z-index:1;background:#fff;will-change:transform}
  .pricing{box-shadow:0 42px 70px -26px rgba(20,18,16,.3)}
  .ft-glow{position:absolute;left:50%;bottom:-34%;transform:translateX(-50%);width:76%;height:64%;
       background:radial-gradient(ellipse at center,rgba(253,236,4,.1),transparent 68%);pointer-events:none}
  .ft-inner{position:relative;z-index:1;max-width:1240px;margin:0 auto}
  .ft-reveal{opacity:0;transform:translateY(26px);transition:opacity .7s ease,transform .7s ease}
  .ft-reveal.in{opacity:1;transform:none}
  .ft-top{display:grid;grid-template-columns:1fr max-content max-content;column-gap:clamp(40px,5.5vw,110px);
       row-gap:clamp(30px,4.5vw,72px);align-items:start;padding-bottom:clamp(46px,7vh,80px)}
  .ft-cta h2{font-family:var(--sans);font-weight:800;font-size:clamp(24px,2.5vw,34px);line-height:1.1;
       letter-spacing:-.02em;margin:0 0 12px;white-space:nowrap}
  .ft-cta p{font-size:16px;line-height:1.5;color:rgba(255,255,255,.58);margin:0 0 26px;max-width:38ch}
  .ft-wl{display:flex;align-items:center;gap:12px;max-width:440px;
       border-bottom:1.5px solid rgba(255,255,255,.25);padding-bottom:12px}
  .ft-wl input{flex:1;min-width:0;background:transparent;border:0;color:#fff;font-family:var(--sans);font-size:16px;outline:none}
  .ft-wl input::placeholder{color:rgba(255,255,255,.4)}
  .ft-wl button{flex:0 0 auto;width:42px;height:42px;border-radius:50%;border:0;cursor:pointer;
       background:var(--accent);color:var(--ink);display:inline-flex;align-items:center;justify-content:center;
       transition:transform .18s ease}
  .ft-wl button:hover{transform:translateX(3px)}
  .ft-wl svg{width:18px;height:18px}
  .fcol h5{font-size:12px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:rgba(255,255,255,.4);margin:0 0 18px}
  .fcol a{position:relative;display:flex;align-items:center;font-size:15px;color:rgba(255,255,255,.72);
       margin-bottom:13px;width:fit-content;transition:color .2s ease,transform .22s ease}
  .fcol a::before{content:"\2192";position:absolute;left:-22px;opacity:0;transform:translateX(-6px);
       transition:opacity .22s ease,transform .22s ease}
  /* text slides right (transform, no layout/grid shift); arrow fades in at the original left edge */
  .fcol a:hover{color:#fff;transform:translateX(22px)}
  .fcol a:hover::before{opacity:1;transform:translateX(0)}
  .ft-word{border-top:1px solid rgba(255,255,255,.1);padding-top:clamp(28px,4vh,40px)}
  .ft-bottom{display:flex;align-items:center;justify-content:flex-end;gap:24px;flex-wrap:wrap;min-height:clamp(34px,4vw,52px)}
  .ft-logo{display:none}   /* replaced by the nav pill docking into this row */
  .ft-logo .wd{fill:#fff}
  .ft-logo .mk{fill:var(--accent)}
  .ft-end{display:flex;flex-direction:column;align-items:flex-end;gap:8px}
  .ft-copy{font-size:13.5px;color:rgba(255,255,255,.4)}
  .ft-social{display:flex;gap:10px}
  .ft-social a{width:38px;height:38px;border-radius:50%;border:1px solid rgba(255,255,255,.16);
       display:inline-flex;align-items:center;justify-content:center;color:rgba(255,255,255,.7);
       transition:border-color .2s ease,color .2s ease,transform .15s ease}
  .ft-social a:hover{border-color:var(--accent);color:var(--accent);transform:translateY(-2px)}
  .ft-social svg{width:16px;height:16px}
  @media (max-width:820px){ .ft-top{grid-template-columns:1fr 1fr} .ft-cta{grid-column:1 / -1} }
  @media (max-width:520px){
    .ft-top{grid-template-columns:1fr 1fr;column-gap:24px;row-gap:36px;padding-bottom:36px}
    .ft-cta{grid-column:1 / -1}
    .ft-cta h2{white-space:normal}
    .fcol a{margin-bottom:11px}
    .ft-word{padding-top:26px}
    .ft-bottom{flex-direction:column;align-items:center;gap:14px;min-height:0}
    .ft-end{align-items:center;gap:12px}
    .ft-copy{text-align:center}
    /* clear band for the docked nav pill lives INSIDE the shell so the glow
       can anchor to the footer's true bottom edge */
    .footer{padding-bottom:0}
    .ft-shell{padding-bottom:106px}
    .ft-glow{bottom:-130px;height:280px;width:170%} }

  /* ---------------- PLACEHOLDER SECTIONS (built in later phases) ---------------- */
  .stub{min-height:92vh;display:flex;flex-direction:column;align-items:center;justify-content:center;
       gap:14px;padding:120px 24px;scroll-margin-top:96px;text-align:center}
  .stub:nth-of-type(even){background:#fff}
  .stub .kicker{font-size:13px;font-weight:700;letter-spacing:.22em;text-transform:uppercase;
       color:var(--ink);background:var(--accent);padding:5px 12px;border-radius:999px}
  .stub h2{font-family:var(--serif);font-style:italic;font-weight:500;
       font-size:clamp(34px,5vw,60px);margin:0;color:var(--ink)}
  .stub p{color:rgba(20,18,16,.5);font-size:16px;margin:4px 0 0}

  /* tablets: hero copy reads too small against the tall canvas — scale it up */
  @media (min-width:600px) and (max-width:1024px){
    :root{--barh:48px}
    .promo-item{font-size:16px}
    .links a{font-size:17px;padding:11px 18px}
    .cta{font-size:17px;padding:12px 26px}
    .brand svg{height:30px}
    .h1{font-size:clamp(52px,8vw,84px)}
    .sub{font-size:clamp(23px,3vw,30px)}
    .hero-cta{height:62px;padding:0 36px;font-size:18px}
    .hero-cta.primary{width:200px}
    .avatars span{width:40px;height:40px}
    .social-txt{font-size:18px}
    /* waitlist modal scales with the tablet tier too */
    .wl-modal-card{width:min(660px,94%);padding:34px}
    .wlm-eyebrow{font-size:14px}
    .wlm-title{font-size:28px}
    .wlm-q-label{font-size:14px}
    .wlm-q-rank{font-size:58px}
    .wlm-q-of{font-size:19px}
    .wlm-q-today{font-size:16px}
    .wlm-refer{padding:28px}
    .wlm-refer-head{font-size:17px}
    .wlm-badge{font-size:14px}
    .wlm-refer-h{font-size:25px}
    .wlm-link input{font-size:18px}
    .wlm-link button{font-size:17px;padding:12px 22px}
    .wlm-share a{font-size:16px;padding:14px 8px}
    .wlm-share svg{width:18px;height:18px}
    .wlm-foot{font-size:15px}
  }
  @media (max-width:720px){
    .links{display:none}
    .navwrap{gap:12px}
    .nav.scrolled .navwrap{max-width:100%}
    /* JS (fitHeroTitle) sizes this to the largest font that still fits 3 rows per device;
       this clamp is the no-JS fallback. */
    .h1{font-size:clamp(31px,9.4vw,44px);letter-spacing:-.025em}
    .hbrm{display:inline}
    .sub{white-space:normal;max-width:32ch}
  }
  /* short phones: keep the hero headline clear of the nav band */
  @media (max-width:520px) and (max-height:700px){
    .h1{font-size:clamp(29px,8.8vw,35px);margin-bottom:16px}
    .hero-copy{padding-bottom:38px}
  }
  /* short landscape tablets (Nest Hub etc): the portrait-tablet type ramp
     doesn't fit a 600px-tall viewport, so size the hero stack and the
     carousel cards to the height that's actually there */
  @media (min-width:600px) and (max-width:1024px) and (max-height:740px){
    .h1{font-size:clamp(34px,4.6vw,50px);margin-bottom:14px}
    .sub{font-size:clamp(17px,2vw,21px);margin-bottom:24px}
    .hero-cta{height:52px;padding:0 28px;font-size:16px}
    .hero-cta.primary{width:172px}
    .avatars span{width:34px;height:34px}
    .social-txt{font-size:15px}
    .hero-copy{padding-bottom:clamp(30px,5vh,48px)}
    /* horizontal split card: portrait cover left (uncropped), copy right,
       so a full card fits the short viewport */
    .scc-track{--sccw:min(84vw,620px);padding:6px calc(50vw - var(--sccw)/2) 44px}
    .scc-card{flex:0 0 var(--sccw);display:flex;align-items:stretch}
    .scc-media{width:45%;flex:0 0 45%;aspect-ratio:4/5}
    .scc-body{display:flex;flex-direction:column;justify-content:center;
         padding:20px 24px}
    .scc-body .sc-eyebrow{margin-bottom:10px}
    .scc-body .sc-h{font-size:clamp(20px,2.4vw,26px);margin-bottom:10px}
    .scc-body .sc-d{font-size:15px}
    .wl-modal-card{max-height:92vh;overflow:auto;padding:26px}
    .wlm-title{font-size:24px}
    .wlm-q-rank{font-size:44px}
    .wlm-refer{padding:20px}
  }

  /* large screens: the design is authored for ~1440px and stops scaling past it
     (clamp caps + max-width containers). Stepped zoom scales the WHOLE design
     proportionally, so text, media, and gutters keep the same aspect at any size.
     Steps keep the effective layout width between ~1400-1580px. */
  @media (min-width:1680px){ :root{--z:1.12} body{zoom:1.12} }
  @media (min-width:1800px){ :root{--z:1.2}  body{zoom:1.2} }
  @media (min-width:1990px){ :root{--z:1.33} body{zoom:1.33} }
  @media (min-width:2200px){ :root{--z:1.47} body{zoom:1.47} }
  @media (min-width:2450px){ :root{--z:1.63} body{zoom:1.63} }
  @media (min-width:2700px){ :root{--z:1.8}  body{zoom:1.8} }
  @media (min-width:3100px){ :root{--z:2.05} body{zoom:2.05} }
  @media (min-width:3500px){ :root{--z:2.3}  body{zoom:2.3} }
  /* zoom multiplies viewport units, so full-screen structures divide back out */
  @media (min-width:1680px){
    .hero{height:calc(100svh / var(--z));min-height:calc(600px / var(--z))}
    .showcase{height:calc(370vh / var(--z))}
    .showcase-sticky{height:calc(100vh / var(--z))}
    .ringshow{height:calc(600vh / var(--z))}
    .ringshow-sticky{height:calc(100vh / var(--z))}
    .wl-modal-card{max-height:calc(92vh / var(--z))}
  }
