/* ==========================================================================
   PrankCall.AI — landing page
   Design system: concept v3.4 "Back-page joke shop".
   The law: the cartoon is the ink, not the chrome. One loud moment per band.
   Palette is locked: Ink / Booth Red / Butter / Pool / Paper. No gradients
   (flat same-stop washes only). No emoji in UI. Hand-cut radii on heroes.
   ========================================================================== */

/* ---------- fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Bagel Fat One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/BagelFatOne-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/Quicksand-300_700.woff2') format('woff2');
}
@font-face {
  font-family: 'Shantell Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/ShantellSans-300_800.woff2') format('woff2');
}

/* ---------- tokens ---------- */
:root {
  --ink: #241E1A;
  --red: #E4492E;
  --butter: #FFC53D;
  --pool: #4FA8D8;
  --paper: #FFF6E3;
  --line: var(--ink);
  --curve: cubic-bezier(.33, 1.3, .6, 1);   /* the house pop */
  --cast: 0 5px 16px rgba(36, 30, 26, .15); /* S1 soft cast */
}

/* ---------- base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip; /* clip, not hidden — hidden would break position:sticky descendants */
}
img, svg { max-width: 100%; height: auto; }
a { color: inherit; }
ul, ol { list-style: none; }
.display { font-family: 'Bagel Fat One', sans-serif; font-weight: 400; }
.wrap { width: min(1140px, 92vw); margin-inline: auto; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }
.footer :focus-visible, .dark-band :focus-visible { outline-color: var(--butter); }
.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--butter); color: var(--ink); font-weight: 800; font-size: 14px;
  padding: 10px 16px; border: 2.5px solid var(--ink); border-radius: 999px;
  text-decoration: none; transition: top .2s;
}
.skip:focus { top: 12px; }

/* flat washes — same-stop overlays of the five hexes, never true gradients */
.wash-pool   { background: linear-gradient(rgba(79,168,216,.16), rgba(79,168,216,.16)), var(--paper); }
.wash-butter { background: linear-gradient(rgba(255,197,61,.22), rgba(255,197,61,.22)), var(--paper); }

/* ---------- bounce lettering (baked spans; recipe from _brand.css) ---------- */
.bounce { display: inline-block; white-space: nowrap; line-height: 1.05; }
.bounced { position: relative; }
.bl { display: inline-block; position: relative; margin-right: -0.012em; }
.bl::before {
  content: attr(data-ch);
  position: absolute; left: 0; top: 0;
  color: var(--ink);
  -webkit-text-stroke: 4px var(--ink);
  z-index: -1;
}
.bl.sp::before { content: none; }
.bounce-layer { display: inline-block; white-space: nowrap; }
.bounce-layer.back { position: absolute; left: 3px; top: 3px; }
.bounce-layer.back .bl { color: var(--paper); }
.bounce-layer.front { position: relative; }
.flat-display { letter-spacing: .03em; }

/* ---------- shared type ---------- */
h1, h2, h3 { line-height: 1.14; font-weight: 700; }
h1 { font-size: clamp(33px, 4.6vw, 54px); letter-spacing: -.01em; }
section h2 { font-size: clamp(26px, 3.4vw, 40px); }
.slab {
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; opacity: .58; margin-bottom: 12px;
}
.sec-head { max-width: 760px; margin-bottom: clamp(22px, 3vw, 38px); }
.sec-sub { font-size: 16px; font-weight: 600; opacity: .78; line-height: 1.6; margin-top: 14px; }

/* the butter marker half-swipe behind a key word (content-H1 grammar) */
.hl { position: relative; z-index: 0; white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; z-index: -1;
  left: -.09em; right: -.11em; top: 54%; bottom: -.06em;
  background: var(--butter);
  border-radius: 5px 9px 4px 8px;
  transform: scaleX(0); transform-origin: left center;
  transition: transform .5s .25s var(--curve);
}
.in .hl::after, .hl.in::after { transform: scaleX(1); }
html:not(.js) .hl::after { transform: scaleX(1); }

/* ---------- sticker buttons ---------- */
.btn-sticker {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Shantell Sans', sans-serif; font-weight: 800; font-size: 17px; line-height: 1;
  color: var(--paper); background: var(--red);
  border: 3px solid var(--ink); border-radius: 24px 10px 28px 12px;
  padding: 15px 24px; text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .09s ease-out, box-shadow .09s ease-out;
}
.btn-sticker:hover { transform: translate(1px, 1px); box-shadow: 3px 3px 0 var(--ink); }
.btn-sticker:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-sticker.small { font-size: 14.5px; padding: 10px 17px; border-radius: 18px 8px 20px 10px; }

/* store badges — third-party marks redrawn in the kit's ink grammar */
.btn-store {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: 'Shantell Sans', sans-serif; font-weight: 800; font-size: 18px; line-height: 1.05;
  color: var(--paper); background: var(--red);
  border: 3px solid var(--ink); border-radius: 22px 11px 26px 12px;
  padding: 12px 22px 13px 18px; text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .09s ease-out, box-shadow .09s ease-out;
}
.btn-store:hover { transform: translate(1px, 1px); box-shadow: 3px 3px 0 var(--ink); }
.btn-store:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-store svg { flex: none; }
.btn-store span { display: flex; flex-direction: column; gap: 3px; }
.btn-store small {
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 9.5px;
  letter-spacing: .1em; text-transform: uppercase; opacity: .85;
}
.stores { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
/* pre-launch: the badges are merch, not buttons — the qualifier line
   carries the status; the press affordance retires until the links land */
.btn-store.is-soon { cursor: default; }
.btn-store.is-soon:hover, .btn-store.is-soon:active { transform: none; box-shadow: 4px 4px 0 var(--ink); }
.btn-store.is-soon small { opacity: 1; font-size: 10px; }

/* over-video glow sticker — the dark surface's ONE ink moment (M1) */
.btn-glow {
  display: inline-block;
  font-family: 'Shantell Sans', sans-serif; font-weight: 800; font-size: 17.5px; line-height: 1;
  color: var(--paper); background: var(--red);
  border: 0; border-radius: 22px 14px 24px 16px;
  padding: 16px 30px; text-decoration: none;
  transform: rotate(-1.2deg);
  box-shadow: 6px 7px 0 0 var(--ink), 0 0 34px 6px rgba(228, 73, 46, .55);
  animation: glowpulse 2.6s ease-in-out infinite;
}
.btn-glow:hover { animation-play-state: paused; box-shadow: 6px 7px 0 0 var(--ink), 0 0 46px 10px rgba(228, 73, 46, .72); }
.btn-glow:active { transform: rotate(-1.2deg) translate(3px, 3px); }
@keyframes glowpulse {
  0%, 100% { box-shadow: 6px 7px 0 0 var(--ink), 0 0 34px 6px rgba(228, 73, 46, .55); }
  50%      { box-shadow: 6px 7px 0 0 var(--ink), 0 0 44px 9px rgba(228, 73, 46, .7); }
}

/* ==========================================================================
   NAV
   ========================================================================== */
/* the header: a paper bar at rest that morphs into the app's own
   floating dock capsule on scroll — frosted paper, ink ring, rounded-
   full, lifted off the edge (the §12 nav grammar). NOTHING inside ever
   moves or resizes: the capsule is pure paint (a ::before ring fading
   in around the untouched row) plus one 12px lift via transform, so
   there is no shrink, no reflow, no mid-flight collision. The ring
   overhangs the wrap by 22px each side so its rounded end clears the
   CTA sticker + its hard shadow. */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  display: flex; flex-direction: column;
  transition: background-color .32s ease;
}
.nav.scrolled { background: transparent; }
.nav-in {
  position: relative;
  display: flex; align-items: center; gap: 26px; height: 72px;
  transition: transform .42s var(--curve);
}
.nav-in::before {
  content: ""; position: absolute; inset: 5px -22px; z-index: -1;
  border: 2.5px solid var(--ink); border-radius: 999px;
  background: rgba(255, 246, 227, .78);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: var(--cast);
  opacity: 0; transition: opacity .3s ease;
}
.nav.scrolled .nav-in { transform: translateY(12px); }
.nav.scrolled .nav-in::before { opacity: 1; }
/* the logo — AB1: the balance-chip handset + Quicksand 800, red only in
   the mark and the .ai (brand round 3, picked 2026-08-01) */
.wm { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.wm-hs { width: 33px; height: 33px; flex: none; }
.wm-txt { font-size: 24.5px; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -.01em; }
.wm-txt em { font-style: normal; color: var(--red); }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  position: relative; font-size: 15px; font-weight: 700; text-decoration: none;
  opacity: .75; padding: 6px 0; transition: opacity .15s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 50%; bottom: -1px;
  width: 26px; height: 3.5px; margin-left: -13px;
  background: var(--butter); border-radius: 999px;
  transform: scaleX(0); transition: transform .2s var(--curve);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { padding: clamp(18px, 3.5vw, 44px) 0 clamp(34px, 4.5vw, 60px); overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.kicker-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 7px 15px 7px 11px; font-size: 13px; font-weight: 800; margin-bottom: 20px;
}
.lede {
  font-size: clamp(16px, 1.6vw, 18.5px); font-weight: 600; line-height: 1.55;
  opacity: .8; margin-top: 18px; max-width: 560px;
}
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; max-width: 560px; }
.chips li {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(36, 30, 26, .055); border-radius: 999px;
  padding: 8px 14px 8px 11px; font-size: 13px; font-weight: 700;
}
.chips li svg, .chips li img { flex: none; }
.finelight { font-size: 12px; font-weight: 600; opacity: .62; margin-top: 14px; }
.finelight a { font-weight: 700; }

/* the phone pair */
.phones { position: relative; display: flex; justify-content: center; padding: 26px 0 12px; }
.phone {
  position: relative; width: min(300px, 74vw); flex: none;
  background: var(--paper); border: 3.5px solid var(--ink);
  border-radius: 50px 46px 52px 47px; padding: 7px;
  box-shadow: 8px 9px 0 var(--ink);
}
.phone img { display: block; width: 100%; height: auto; border-radius: 41px 37px 43px 38px; }
.phones .phone.front { z-index: 2; margin-right: clamp(60px, 10vw, 150px); }
.phones .phone.back {
  position: absolute; z-index: 1; width: min(272px, 64vw);
  right: 0; top: 54px;
  box-shadow: 6px 7px 0 var(--ink);
}
.badge-free {
  position: absolute; left: -30px; top: -30px; width: 96px; height: 96px;
  transform: rotate(-8deg); z-index: 3;
}
.badge-free text { font-family: 'Bagel Fat One', sans-serif; }

/* ==========================================================================
   TOUR — the pinned app walkthrough.
   One phone stays on screen; the real app screens page vertically through it
   as you scroll (the feed's own swipe gesture). Step texts ride alongside,
   inactive at the app's .38 dim.
   ========================================================================== */
.tour { padding: clamp(38px, 5vw, 64px) 0 0; }
/* the runway: a fixed-height track (pacing never shifts between text
   modes); the whole stage — text slot + phone — rides it as one sticky */
.tour-flow { position: relative; height: 420vh; width: min(1000px, 92vw); }
.tour-sticky { position: sticky; top: 84px; }
.tour-grid {
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  column-gap: clamp(28px, 5vw, 80px);
  min-height: calc(100vh - 104px);
}
.tour-steps { position: relative; max-width: 470px; }
.pinbox { display: flex; justify-content: center; padding: 4px 0 10px; }
.tour-phone { width: min(304px, calc((100vh - 165px) / 2.26)); }
/* ---- THE STAGE: the app rebuilt from its own board code (393×852 grid),
   scaled to the phone and unveiled by scroll. Styles below are ported
   verbatim from screen-01-feed / screen-02-library / screen-03-call-prepare /
   screen-05-live-call. Without JS the stage rests on the feed. ---- */
.stage {
  position: relative; overflow: hidden;
  border-radius: 41px 37px 43px 38px;
  aspect-ratio: 393 / 852;
  background: #000;
}
.stage .app {
  position: absolute; left: 0; top: 0; width: 393px; height: 852px;
  transform: scale(var(--s, 1)); transform-origin: 0 0;
  font-family: 'Quicksand', sans-serif; font-weight: 500; color: var(--ink);
  line-height: 1.5;
}
.stage .sc { position: absolute; inset: 0; }
/* each scene is its own stacking context so in-scene z-indexes never bleed */
.stage .s-feed { z-index: 1; }
.stage .s-scrim { z-index: 2; }
.stage .s-lib { z-index: 3; }
.stage .s-call { z-index: 4; }
/* joke.svg has no intrinsic size — pin the small marks explicitly (board law) */
.stage .prank-note img { width: 19px; height: 19px; flex: none; }
.stage .l-suggest .jb img { width: 19px; height: 19px; }
.stage .titlelab img { width: 20px; height: 20px; }
.stage .sb {
  position: absolute; top: 0; left: 0; right: 0; height: 44px; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px 0; font-weight: 800; font-size: 15px;
}
.stage .sb-paper { color: var(--paper); }
.stage .sb-ink { color: var(--ink); }

/* — feed (screen-01) — */
/* the video stage: the prank's own "AI video" still — scene art under an
   ink grade + the sanctioned 7% halftone grain (video surfaces only) */
.stage .video { position: absolute; inset: 0; background: #000; }
.stage .video img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stage .overlay-left { position: absolute; top: 96px; left: 14px; display: flex; flex-direction: column; gap: 18px; z-index: 30; color: var(--paper); align-items: center; background: rgba(36, 30, 26, .45); border-radius: 999px; padding: 13px 9px; }
.stage .oli { position: relative; display: flex; }
.stage .oli .dot { position: absolute; top: -2px; right: -2px; width: 10px; height: 10px; background: var(--red); border: 1.6px solid var(--ink); border-radius: 50%; }
.stage .top-tabs { position: absolute; top: 56px; left: 58px; right: 108px; display: flex; justify-content: center; gap: 18px; z-index: 30; color: var(--paper); }
.stage .ttab { font-family: 'Shantell Sans', sans-serif; font-size: 15px; font-weight: 700; opacity: .78; position: relative; padding-bottom: 7px; }
.stage .ttab.on { opacity: 1; font-weight: 800; }
.stage .ttab.on::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 26px; height: 3.5px; margin-left: -13px; background: var(--butter); border-radius: 999px; }
.stage .overlay-top { position: absolute; top: 48px; right: 14px; z-index: 30; }
.stage .bchip { display: inline-flex; align-items: center; gap: 6px; background: var(--paper); border: 2.5px solid var(--ink); border-radius: 999px; padding: 4px 5px 4px 9px; color: var(--ink); }
.stage .bchip svg { display: block; }
.stage .bchip b { font-size: 15.5px; font-weight: 800; }
.stage .bc-plus { width: 24px; height: 24px; border-radius: 50%; background: var(--butter); border: 2px solid var(--ink); display: flex; align-items: center; justify-content: center; margin-left: 1px; overflow: hidden; }
.stage .rail { position: absolute; right: 13px; bottom: 236px; display: flex; flex-direction: column; gap: 19px; z-index: 40; align-items: center; color: var(--paper); }
.stage .rcell { display: flex; flex-direction: column; align-items: center; gap: 3px; position: relative; }
.stage .rcell .cnt { font-size: 12px; font-weight: 800; }
.stage .rcell .cnt.hot { color: var(--butter); }
.stage .em { font-size: 25px; line-height: 1; }
.stage .em.big { font-size: 33px; }
.stage .ravatar { position: relative; width: 46px; height: 46px; margin-bottom: 8px; }
.stage .rav { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--ink); background: var(--pool); overflow: hidden; position: relative; }
.stage .rav svg { position: absolute; left: 1px; top: 2px; }
.stage .ravatar .plus { position: absolute; left: 50%; bottom: -8px; width: 20px; height: 20px; margin-left: -10px; background: var(--red); border: 2px solid var(--ink); border-radius: 50%; color: var(--paper); font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; line-height: 1; }
.stage .picker { position: absolute; right: 52px; top: -8px; display: flex; align-items: center; gap: 8px; background: var(--paper); border: 2.5px solid var(--ink); border-radius: 18px 22px 14px 20px; padding: 9px 12px; z-index: 45; transform-origin: 100% 60%; }
.stage .picker::after { content: ""; position: absolute; right: -8px; top: 21px; width: 12px; height: 12px; background: var(--paper); border-top: 2.5px solid var(--ink); border-right: 2.5px solid var(--ink); transform: rotate(45deg); }
.stage .picker .em:first-child { transform: scale(1.22); }
.stage .left-block { position: absolute; left: 16px; right: 84px; bottom: 106px; z-index: 30; color: var(--paper); }
.stage .lb-user { font-size: 15px; font-weight: 800; }
.stage .lb-title { font-size: 20px; font-weight: 700; line-height: 1.25; margin-top: 4px; }
.stage .cap { font-size: 14px; font-weight: 600; line-height: 1.4; margin-top: 4px; opacity: .92; }
.stage .prank-note { display: flex; align-items: center; gap: 6px; margin-top: 9px; font-size: 12px; font-weight: 800; color: var(--butter); }
.stage .f-cta { margin-top: 27px; }
.stage .f-cta span { display: block; font-family: 'Shantell Sans', sans-serif; font-weight: 800; font-size: 18px; color: var(--paper); background: var(--red); text-align: center; padding: 16px 0; border-radius: 22px 14px 24px 16px; transform: rotate(-1.2deg); box-shadow: 6px 7px 0 0 var(--ink), 0 0 34px 6px rgba(228, 73, 46, .55); }
.stage .dock { position: absolute; left: 0; right: 0; bottom: 0; height: 76px; padding-bottom: 14px; display: flex; align-items: center; justify-content: space-around; z-index: 60; color: var(--paper); }
.stage .dk { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 10.5px; font-weight: 800; opacity: .62; }
.stage .dk.on { opacity: 1; color: var(--butter); }

/* — the sheet scrim — */
.stage .s-scrim { background: rgba(36, 30, 26, .45); opacity: 0; will-change: opacity; }

/* — library as a sheet (screen-02) — */
.stage .s-lib {
  top: 40px;
  background: linear-gradient(rgba(79, 168, 216, .16), rgba(79, 168, 216, .16)), var(--paper);
  border-radius: 26px 26px 0 0;
  box-shadow: 0 -8px 22px rgba(36, 30, 26, .18);
  padding: 18px 13px 0;
  transform: translateY(105%);
  will-change: transform;
  overflow: hidden;
}
.stage .l-head { display: flex; justify-content: space-between; align-items: center; padding: 0 7px 0 7px; }
.stage .l-h1 { font-size: 26px; font-weight: 700; line-height: 1.1; }
.stage .l-hl { position: relative; z-index: 0; }
.stage .l-hl::after { content: ""; position: absolute; left: -4px; right: -5px; top: 54%; bottom: -3px; background: var(--butter); z-index: -1; border-radius: 5px 9px 4px 8px; }
.stage .l-search { margin: 10px 7px 0; background: rgba(36, 30, 26, .07); border-radius: 999px; padding: 11px 15px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 9px; }
.stage .l-search svg { opacity: .65; flex: none; }
.stage .l-search span { opacity: .5; }
.stage .l-hero { position: relative; margin: 18px 7px 0; height: 326px; border-radius: 22px 16px 24px 17px; background: var(--pool); will-change: transform, opacity; }
.stage .lh-frame { position: absolute; inset: 0; border: 3px solid var(--ink); border-radius: 22px 16px 24px 17px; pointer-events: none; z-index: 4; will-change: opacity; }
.stage .lh-clip { position: absolute; inset: 0; border-radius: 20px 14px 22px 15px; overflow: hidden; }
.stage .lh-clip > img { position: absolute; left: 0; top: 4%; width: 100%; height: auto; }
.stage .lh-cap { position: absolute; left: 12px; right: 12px; bottom: 12px; background: rgba(36, 30, 26, .5); border-radius: 18px 14px 16px 15px; color: var(--paper); padding: 11px 14px 17px; }
.stage .lh-chip { display: inline-flex; background: var(--butter); color: var(--ink); font-size: 10px; font-weight: 800; padding: 3.5px 9px; border-radius: 999px; margin-bottom: 6px; }
.stage .lh-tt { font-size: 18px; font-weight: 700; line-height: 1.2; }
.stage .lh-sub { font-size: 13px; font-weight: 600; line-height: 1.35; opacity: .92; margin-top: 3px; }
.stage .lh-stat { font-size: 11.5px; font-weight: 700; opacity: .88; margin-top: 6px; }
.stage .lh-cta { display: flex; justify-content: center; margin-top: 11px; }
.stage .lh-cta span { display: block; font-family: 'Shantell Sans', sans-serif; font-weight: 800; font-size: 16px; color: var(--paper); background: var(--red); border-radius: 22px 14px 24px 16px; padding: 11px 0; width: 92%; text-align: center; transform: rotate(-1.2deg); box-shadow: 5px 6px 0 0 var(--ink), 0 0 18px 2px rgba(228, 73, 46, .5); }
.stage .lh-badge { position: absolute; left: -13px; top: -13px; z-index: 5; line-height: 0; }
.stage .l-sh { font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; opacity: .58; margin: 13px 7px 8px; }
.stage .l-shelf { display: flex; gap: 12px; padding-left: 7px; width: max-content; }
.stage .l-card { width: 148px; height: 192px; flex: none; position: relative; border-radius: 18px; overflow: hidden; background: var(--pool); }
.stage .l-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stage .l-card .play-d { position: absolute; right: 8px; top: 8px; width: 32px; height: 32px; border-radius: 50%; background: rgba(36, 30, 26, .45); display: flex; align-items: center; justify-content: center; }
.stage .l-card .play-d::after { content: ""; display: block; margin-left: 3px; border-left: 10px solid var(--paper); border-top: 6.5px solid transparent; border-bottom: 6.5px solid transparent; }
.stage .l-scap { position: absolute; left: 0; right: 0; bottom: 0; background: rgba(36, 30, 26, .5); border-radius: 10px 8px 0 0; color: var(--paper); padding: 8px 10px 9px; }
.stage .l-scap b { display: block; font-size: 13px; font-weight: 700; line-height: 1.2; }
.stage .l-scap span { display: block; font-size: 10.5px; font-weight: 700; opacity: .85; margin-top: 3px; white-space: nowrap; }
.stage .l-suggest { display: flex; align-items: center; gap: 10px; background: var(--butter); border-radius: 999px; padding: 8px 14px 8px 8px; margin: 12px 7px 0; font-size: 13.5px; }
.stage .l-suggest b { flex: 1; font-weight: 700; }
.stage .l-suggest .jb { width: 29px; height: 29px; border-radius: 50%; background: var(--paper); display: flex; align-items: center; justify-content: center; flex: none; }
.stage .l-suggest .arr { font-size: 17px; font-weight: 800; line-height: 1; }

/* — call setup → live (screens 03 + 05: one banner, one sheet) — */
.stage .s-call { opacity: 0; background: linear-gradient(rgba(255, 197, 61, .22), rgba(255, 197, 61, .22)), var(--paper); will-change: opacity; }
.stage .c-prep, .stage .c-live, .stage .c-prepfoot, .stage .c-livefoot { will-change: transform, opacity; }
.stage .c-banner { position: absolute; left: 0; top: 0; right: 0; height: 306px; overflow: hidden; background: var(--pool); }
.stage .c-banner > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stage .backcap { position: absolute; left: 14px; top: 56px; width: 36px; height: 36px; border-radius: 50%; background: rgba(36, 30, 26, .45); color: var(--paper); display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 800; z-index: 30; }
.stage .demochip { position: absolute; right: 12px; bottom: 40px; display: inline-flex; align-items: center; gap: 7px; background: rgba(36, 30, 26, .45); border-radius: 999px; padding: 8px 14px 8px 10px; color: var(--paper); font-size: 12.5px; font-weight: 700; z-index: 20; transform-origin: 80% 50%; }
.stage .demochip .ptri { display: block; width: 0; height: 0; border-left: 9px solid var(--paper); border-top: 5.5px solid transparent; border-bottom: 5.5px solid transparent; }
.stage .livechip { position: absolute; left: 14px; top: 52px; z-index: 25; display: inline-flex; align-items: center; gap: 7px; background: rgba(36, 30, 26, .45); border-radius: 999px; padding: 7px 13px; color: var(--paper); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; opacity: 0; transform-origin: 30% 50%; }
.stage .reddot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex: none; }
.stage .titlelab { position: absolute; left: 16px; bottom: 13px; z-index: 20; display: inline-flex; align-items: center; gap: 9px; font-size: 16.5px; font-weight: 700; border-radius: 14px 9px 15px 8px; padding: 9px 16px 9px 13px; color: var(--ink); background: var(--butter); box-shadow: 3px 3px 0 var(--ink); line-height: 1.28; opacity: 0; }
.stage .titlelab img { display: block; flex: none; }
.stage .c-sheet { position: absolute; left: 0; right: 0; top: 278px; bottom: 0; background: var(--paper); border-radius: 26px 26px 0 0; box-shadow: 0 -8px 22px rgba(36, 30, 26, .14); z-index: 10; transform: translateY(112%); will-change: transform; }
.stage .c-prep { position: absolute; inset: 0; padding: 22px 20px 150px; }
.stage .p-tt { font-size: 20px; font-weight: 700; line-height: 1.2; }
.stage .p-sub { font-size: 13px; font-weight: 600; line-height: 1.4; opacity: .75; margin-top: 4px; }
.stage .p-stat { font-size: 11.5px; font-weight: 700; color: rgba(36, 30, 26, .52); margin-top: 6px; }
.stage .p-stat b { font-weight: 800; color: var(--ink); }
.stage .c-slab { font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; opacity: .58; margin: 22px 0 9px; }
.stage .numrow { display: flex; align-items: center; background: rgba(36, 30, 26, .07); border-radius: 999px; padding: 4px 6px 4px 4px; }
.stage .pfx { display: inline-flex; align-items: center; gap: 6px; background: var(--paper); border-radius: 999px; padding: 11px 14px; font-size: 15px; font-weight: 800; box-shadow: 0 3px 10px rgba(36, 30, 26, .12); }
.stage .numrow .ph { flex: 1; padding: 0 13px; font-size: 15px; font-weight: 600; display: flex; align-items: center; }
.stage .dimtext { opacity: .48; }
.stage .numrow .typed { opacity: 1; font-weight: 700; }
.stage .ncaret { width: 2.5px; height: 17px; background: var(--red); border-radius: 2px; margin-left: 2px; opacity: 0; }
.stage .ncaret.on { opacity: 1; animation: caretblink 1.1s step-end infinite; }
@keyframes caretblink { 50% { opacity: .15; } }
.stage .prow { background: rgba(36, 30, 26, .055); border-radius: 16px; padding: 12px 14px; }
.stage .prow-top { display: flex; align-items: center; gap: 12px; }
.stage .pthumb { width: 40px; height: 40px; border-radius: 50%; overflow: hidden; flex: none; background: var(--butter); }
.stage .pthumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.stage .prow-tx { flex: 1; display: flex; flex-direction: column; }
.stage .prow-tx b { font-size: 15px; font-weight: 700; }
.stage .prow-tx small { font-size: 12px; font-weight: 600; opacity: .68; margin-top: 2px; }
.stage .prow .arr { font-size: 18px; font-weight: 800; }
.stage .qpeek { margin-top: 12px; padding: 10px 13px; background: rgba(36, 30, 26, .12); border-radius: 12px; font-family: 'Shantell Sans', sans-serif; font-size: 14px; font-weight: 700; }
.stage .c-live { position: absolute; inset: 0; padding: 20px 20px 168px; display: flex; flex-direction: column; opacity: 0; }
.stage .headrow { display: flex; align-items: flex-end; gap: 10px; }
.stage .idcall .k { font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; opacity: .5; }
.stage .idcall .nm { font-size: 21px; font-weight: 800; margin-top: 2px; line-height: 1; }
.stage .idcall .ph2 { font-size: 12px; font-weight: 600; opacity: .55; margin-left: 7px; }
.stage .clock { margin-left: auto; text-align: right; flex: none; line-height: 1; }
.stage .clock .t { font-size: 21px; letter-spacing: .02em; display: block; }
.stage .clock svg { margin-top: 2px; }
.stage .c-mid { margin: auto 0; }
.stage .lb2 { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; margin-bottom: 9px; }
.stage .reddot.rpulse { animation: rpulse 1.5s ease-in-out infinite; }
@keyframes rpulse { 50% { opacity: .35; } }
/* the live inset is a small stage of its own: speaking dots, the stranger's
   current line, and the butter-wash REVEALING state (the one moment the
   inset earns the brand color — signed states board) */
.stage .qline {
  position: relative; min-height: 114px; padding: 18px 20px;
  background: rgba(36, 30, 26, .12); border-radius: 14px;
  font-family: 'Shantell Sans', sans-serif; font-size: 17px; font-weight: 700; line-height: 1.5;
  overflow: hidden;
}
.stage .qwash { position: absolute; inset: 0; background: rgba(255, 197, 61, .3); opacity: 0; will-change: opacity; }
.stage .qdots { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); display: flex; gap: 7px; opacity: 0; will-change: transform, opacity; }
.stage .qdots i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); animation: qdotbob 1s ease-in-out infinite; }
.stage .qdots i:nth-child(2) { animation-delay: .16s; }
.stage .qdots i:nth-child(3) { animation-delay: .32s; }
@keyframes qdotbob { 0%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-4px); opacity: .9; } }
.stage .qtext { position: absolute; left: 20px; right: 20px; top: 50%; transform: translateY(-50%); opacity: 0; will-change: transform, opacity; }
.stage .rv1 { will-change: transform; }
.stage .listen { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; font-weight: 700; opacity: .7; margin-top: 16px; }
.stage .c-prepfoot { position: absolute; left: 20px; right: 20px; bottom: 24px; z-index: 40; opacity: 0; }
.stage .c-cta { display: block; font-family: 'Shantell Sans', sans-serif; font-weight: 800; font-size: 16px; color: var(--paper); background: var(--red); border: 3px solid var(--ink); border-radius: 20px 12px 22px 13px; padding: 14px 0; width: 100%; text-align: center; transform: rotate(-1.2deg); box-shadow: 4px 4px 0 var(--ink); }
.stage .c-safety { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 11.5px; font-weight: 700; opacity: .75; margin-top: 12px; }
.stage .c-livefoot { position: absolute; left: 16px; right: 16px; bottom: 24px; z-index: 40; opacity: 0; }
.stage .ctr3 { display: flex; align-items: flex-start; justify-content: center; gap: 14px; }
.stage .ctrl { display: flex; flex-direction: column; align-items: center; }
.stage .ctrl.grow2 { flex: 1; max-width: 186px; }
.stage .cbtn { width: 62px; height: 62px; border-radius: 32px 29px 31px 30px; display: flex; align-items: center; justify-content: center; background: var(--paper); border: 3px solid var(--ink); }
.stage .cbtn.end { background: var(--red); border: 0; }
.stage .clabel { font-size: 11.5px; font-weight: 700; margin-top: 6px; }
.stage .rv1 { display: block; width: 100%; text-align: center; transform: rotate(-1.2deg); font-family: 'Shantell Sans', sans-serif; font-weight: 800; font-size: 15.5px; color: var(--ink); background: var(--butter); border: 3px solid var(--ink); border-radius: 20px 12px 22px 13px; padding: 15px 0; box-shadow: 4px 4px 0 var(--ink); }
.stage .assure { font-size: 11px; font-weight: 700; text-align: center; opacity: .7; margin-top: 12px; }
@media (prefers-reduced-motion: reduce) {
  .stage .ncaret.on { animation: none; }
}

/* THE MAGIC SCROLL text modes. Stacked (initial / no-JS / reduced motion /
   crawlers): all four steps visible as a compact list beside the phone.
   Fade slot (entered on the first real scroll): the texts share ONE place
   and counter-roll through it — the outgoing line drifts up and fades as
   the next rises in — driven by the same spring as the app, so words and
   animation move together. */
.tstep { position: relative; padding: 12px 0; opacity: .38; transition: opacity .45s ease-out; }
.tstep.is-on { opacity: 1; }
.js-slot .tour-steps { height: 305px; }
.js-slot .tstep {
  position: absolute; left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  padding: 0; opacity: 0; transition: none;
  will-change: transform, opacity;
}
.js-slot .tstep + .tstep::before { display: none; }
/* text-mode D: the butter swipe draws under each step's key word as it lands */
html[data-text="d"] .thl { position: relative; z-index: 0; white-space: nowrap; }
html[data-text="d"] .thl::after {
  content: ""; position: absolute; z-index: -1;
  left: -.07em; right: -.09em; top: 54%; bottom: -.05em;
  background: var(--butter); border-radius: 5px 9px 4px 8px;
  transform: scaleX(var(--sw, 0)); transform-origin: left center;
}
/* the review picker (temporary) — pick a text-transition by letter */
.modepick {
  position: fixed; left: 14px; bottom: 14px; z-index: 200;
  display: flex; align-items: center; gap: 6px;
  background: var(--paper); border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 6px 10px 6px 13px; box-shadow: var(--cast);
}
.modepick b { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; opacity: .6; margin-right: 2px; }
.modepick button {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--ink);
  background: var(--paper); font-family: 'Quicksand', sans-serif; font-size: 12.5px; font-weight: 800;
  color: var(--ink); cursor: pointer; line-height: 1; padding: 0;
}
.modepick button.on { background: var(--butter); }
.modepick button:hover { transform: translateY(-1px); }
html:not(.js) .tstep { opacity: 1; }
.tstep h3 { font-size: clamp(21px, 2.3vw, 26px); margin: 14px 0 10px; }
.tstep p { font-size: 15px; font-weight: 600; opacity: .78; line-height: 1.6; }
/* the cord connects the steps — its sanctioned structural job */
.tstep + .tstep::before {
  content: ""; display: block; width: 64px; height: 24px; margin: 2px 0 12px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 44"><path d="M2 30 C22 36 36 34 50 24 C54 21 56 15 53 10 C50 4 41 4 38 10 C35 16 39 23 46 26 C60 32 96 32 118 26" stroke="%23241E1A" stroke-width="3.4" stroke-linecap="round" fill="none"/></svg>') no-repeat center / contain;
  opacity: .85;
}
.stepnum {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; font-size: 22px; line-height: 1;
  background: var(--butter); border: 2.5px solid var(--ink);
  border-radius: 24px 20px 23px 21px;
}

/* ==========================================================================
   SCENARIOS — the shelf
   ========================================================================== */
.shelf-band { padding: clamp(38px, 5vw, 62px) 0 clamp(28px, 3.5vw, 46px); overflow: clip; }
.chiprow { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.chiprow li {
  background: var(--butter); border-radius: 999px;
  padding: 7px 14px; font-size: 12.5px; font-weight: 800;
}
.shelf-scroll {
  overflow-x: auto; scroll-snap-type: x proximity;
  scroll-padding-left: 4vw;
  scroll-padding-left: max(4vw, calc((100vw - 1140px) / 2));
  padding: 34px 0 18px;
  scrollbar-width: thin; scrollbar-color: rgba(36, 30, 26, .3) transparent;
}
.shelf-scroll::-webkit-scrollbar { height: 8px; }
.shelf-scroll::-webkit-scrollbar-thumb { background: rgba(36, 30, 26, .25); border-radius: 999px; }
.shelf-scroll::-webkit-scrollbar-track { background: transparent; margin: 0 6vw; }
.shelf {
  display: flex; gap: 14px; width: max-content;
  padding-left: 4vw; padding-right: 4vw;
  padding-inline: max(4vw, calc((100vw - 1140px) / 2)) 4vw;
}
.scard {
  position: relative; width: 196px; aspect-ratio: 3 / 4; flex: none;
  border-radius: 18px; overflow: visible; scroll-snap-align: start;
}
.scard img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 18px;
}
.scap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: rgba(36, 30, 26, .5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border-radius: 10px 8px 18px 18px;
  color: var(--paper); padding: 9px 11px 10px;
}
.scap b { display: block; font-size: 13.5px; font-weight: 700; line-height: 1.2; }
.scap span { display: block; font-size: 10.5px; font-weight: 700; opacity: .85; margin-top: 3px; white-space: nowrap; }
.play-d {
  position: absolute; right: 9px; top: 9px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(36, 30, 26, .45);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
}
.play-d::after {
  content: ""; display: block; margin-left: 3px;
  border-left: 10px solid var(--paper);
  border-top: 6.5px solid transparent; border-bottom: 6.5px solid transparent;
}
.badge-potd { position: absolute; left: -13px; top: -13px; width: 52px; height: 52px; z-index: 3; }
.shelf-note { font-size: 13.5px; font-weight: 700; opacity: .66; text-align: center; padding: 0 6vw; }

/* the library rail — the tour's magic scroll, turned horizontal (≥880px,
   js, motion allowed). The section pins on the tour's own 84px seat and
   the reel glides 1:1 with the page scroll through the same ~300ms
   spring — the page never moves itself; scrolling back reverses. The
   scrollbar retires for the SW2 grammar: a butter pill sliding a
   hairline track. Mobile, reduced motion and no-JS keep the native
   swipe shelf (these rules only wake under .rail-on, which only JS
   adds). Cards step up to 208px in the rail — the pinned moment is the
   gallery's showcase. */
.rail-progress { display: none; }
@media (min-width: 880px) {
  .rail-on .shelf-sticky {
    position: sticky; top: 84px;
    display: flex; flex-direction: column; justify-content: center;
    min-height: calc(100vh - 128px);
  }
  .rail-on .shelf-scroll { overflow: visible; scroll-snap-type: none; padding-top: 26px; }
  .rail-on .shelf { will-change: transform; }
  .rail-on .scard { width: 208px; }
  .rail-on .rail-progress {
    display: block; position: relative;
    width: 160px; height: 2.5px; margin: 18px auto 0;
    background: rgba(36, 30, 26, .12); border-radius: 999px;
  }
  .rail-on .rail-progress i {
    position: absolute; left: 0; top: 50%; margin-top: -2.5px;
    width: 36px; height: 5px; border-radius: 999px;
    background: var(--butter);
  }
  .rail-on .shelf-note { margin-top: 12px; }
}

/* ==========================================================================
   DARK BAND — the video
   ========================================================================== */
.dark-band { background: var(--ink); color: var(--paper); padding: clamp(44px, 5.5vw, 76px) 0; overflow: clip; }
.dark-band .slab { opacity: .62; }
.dark-grid { display: grid; grid-template-columns: auto 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.dark-phone { position: relative; justify-self: center; padding: 26px 30px 30px 10px; }
.phone.on-ink { border-color: var(--paper); box-shadow: none; background: var(--ink); }
.phone.on-ink img { border-radius: 41px 37px 43px 38px; }
.dark-copy { max-width: 520px; }
.dark-copy h2 { color: var(--paper); }
.dark-copy p { font-size: 15.5px; font-weight: 600; line-height: 1.6; opacity: .88; margin-top: 16px; }
.dark-copy .dark-sub { font-size: 13.5px; opacity: .68; }
.dark-copy .btn-glow { margin-top: 30px; }
.burst-gotcha {
  position: absolute; right: -14px; bottom: -8px; width: 216px; height: 216px;
  transform: rotate(-9deg); z-index: 3;
  display: flex; align-items: center; justify-content: center;
}
.burst-gotcha > svg { position: absolute; inset: 0; }
.gotcha-word { position: relative; font-size: 41px; color: var(--red); }
.gotcha-word .bl::before { -webkit-text-stroke-color: var(--ink); color: var(--ink); }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features { padding: clamp(38px, 5vw, 64px) 0; }
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fcard { background: rgba(36, 30, 26, .05); border-radius: 16px; padding: 22px 20px 24px; }
.fic {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; background: var(--paper);
  margin-bottom: 14px; color: var(--ink);
}
.fic svg { width: 26px; height: 26px; }
.fcard h3 { font-size: 16px; font-weight: 700; line-height: 1.3; }
.fcard p { font-size: 13.5px; font-weight: 600; opacity: .74; line-height: 1.55; margin-top: 7px; }

/* ==========================================================================
   STATS — butter sky band, couple at the skyline
   ========================================================================== */
.statsband { background: rgba(255, 197, 61, .15); padding: clamp(40px, 5vw, 64px) 0 0; }
.stats-grid {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: clamp(20px, 4vw, 56px); align-items: end;
}
.balloon { width: clamp(84px, 10vw, 148px); align-self: center; }
.stats-copy { padding-bottom: clamp(34px, 5vw, 60px); align-self: center; }
.stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 4.5vw, 72px); }
.stats div { display: flex; flex-direction: column-reverse; gap: 4px; }
.stats dd {
  font-size: clamp(38px, 5vw, 58px); line-height: 1; color: var(--red);
  letter-spacing: .03em; -webkit-text-stroke: 1.1px var(--ink);
}
.stats dt { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .62; }
.couple { position: relative; width: clamp(230px, 26vw, 350px); }
.couple img { display: block; width: 100%; }
.bub-act {
  position: absolute; top: -38px; left: -4%;
  background: var(--paper); border: 2px solid var(--ink);
  border-radius: 12px 9px 13px 8px; padding: 8px 13px;
  font-family: 'Shantell Sans', sans-serif; font-weight: 700; font-size: 13.5px;
  line-height: 1.35; white-space: nowrap;
  transform: scale(0); transform-origin: 28px calc(100% + 10px); opacity: 0;
  transition: transform .26s var(--curve), opacity .18s;
  z-index: 2;
}
.bub-act.on { transform: scale(1); opacity: 1; }
html:not(.js) .bub-act { transform: scale(1); opacity: 1; }
.bub-act .tail { position: absolute; left: 22px; bottom: -13px; width: 18px; height: 15px; }

/* ==========================================================================
   PREMIUM
   ========================================================================== */
.premium { padding: clamp(38px, 5vw, 64px) 0; }
.prem-grid { display: grid; grid-template-columns: 1fr auto; gap: clamp(28px, 4vw, 60px); align-items: center; }
.prem-copy { max-width: 500px; }
.prem-copy p { font-size: 15.5px; font-weight: 600; opacity: .8; line-height: 1.6; margin-top: 16px; }
.prem-copy .prem-note { font-size: 13px; opacity: .66; }
.ppanel {
  position: relative; width: min(460px, 100%);
  background: var(--paper); border: 2.5px solid var(--ink);
  border-radius: 22px 16px 24px 17px; padding: 22px 20px 20px;
  box-shadow: var(--cast);
}
.mostpop {
  position: absolute; top: -13px; right: 20px;
  background: var(--red); color: var(--paper);
  border: 2px solid var(--ink); border-radius: 999px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 12px;
}
.ppanel-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ppanel-head b { display: block; font-size: 19px; font-weight: 700; }
.ppanel-head span { display: block; font-size: 12px; font-weight: 700; opacity: .62; }
.ptiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.ptiles li {
  background: rgba(36, 30, 26, .05); border-radius: 12px;
  padding: 14px 10px 12px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.pt-ic { display: flex; align-items: center; justify-content: center; height: 30px; color: var(--ink); margin-bottom: 3px; }
.pt-ic svg { width: 27px; height: 27px; }
.pt-ic.display { font-size: 23px; color: var(--red); -webkit-text-stroke: 1px var(--ink); letter-spacing: .02em; }
.ptiles b { font-size: 12.5px; font-weight: 800; line-height: 1.2; }
.ptiles li > span:last-child { font-size: 10.5px; font-weight: 700; opacity: .6; }
.ptiles li .pt-ic + b + span { opacity: .6; }

/* ==========================================================================
   SAFETY
   ========================================================================== */
.safety { padding: clamp(38px, 5vw, 64px) 0; }
.safe-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(26px, 4vw, 56px); align-items: start; }
.safe-copy > p { font-size: 15.5px; font-weight: 600; opacity: .8; line-height: 1.6; margin-top: 4px; max-width: 480px; }
.safelist { margin-top: 22px; display: grid; gap: 13px; max-width: 500px; }
.safelist li { display: flex; gap: 11px; font-size: 14px; font-weight: 600; opacity: .85; line-height: 1.5; }
.safelist svg { flex: none; margin-top: 2px; color: var(--red); }
.safe-side { display: grid; gap: 14px; }
.safecard {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(36, 30, 26, .055); border-radius: 16px; padding: 17px 18px;
}
.shield-seat {
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 46px; height: 46px; border-radius: 50%; background: var(--paper);
}
.safecard b { display: block; font-size: 14.5px; font-weight: 700; line-height: 1.35; }
.safecard p { font-size: 12.5px; font-weight: 600; opacity: .72; line-height: 1.5; margin-top: 5px; }
.blockpill {
  display: flex; align-items: center; gap: 10px;
  background: var(--butter); border-radius: 999px;
  padding: 12px 18px 12px 15px; text-decoration: none;
  font-size: 13.5px; transition: transform .12s var(--curve);
}
.blockpill:hover { transform: translateY(-2px); }
.blockpill b { flex: 1; font-weight: 800; }
.blockpill .arr { font-size: 17px; font-weight: 800; line-height: 1; }
.blockpill svg { color: var(--ink); flex: none; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: clamp(38px, 5vw, 64px) 0 clamp(44px, 5.5vw, 72px); }
.faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 40px); align-items: start; }
.fslab {
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  opacity: .58; margin-bottom: 14px;
}
.qa { background: rgba(36, 30, 26, .055); border-radius: 16px; margin-bottom: 10px; }
.qa summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 15px 44px 15px 17px; font-size: 15px; font-weight: 700; line-height: 1.35;
  border-radius: 16px;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: ""; position: absolute; right: 19px; top: 20px;
  width: 9px; height: 9px;
  border-right: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink);
  transform: rotate(45deg); transition: transform .2s var(--curve);
  opacity: .7;
}
.qa[open] summary::after { transform: rotate(225deg); top: 24px; }
.qa-a { padding: 0 18px 16px; }
.qa-a p { font-size: 13.5px; font-weight: 600; opacity: .78; line-height: 1.6; }
.qa-a p + p, .qa-a ol { margin-top: 8px; }
.qa-a ol { list-style: decimal; padding-left: 20px; }
.qa-a ol li { font-size: 13.5px; font-weight: 600; opacity: .78; line-height: 1.55; margin-bottom: 4px; }
.qa-a a { font-weight: 700; }
.faq-more {
  display: flex; align-items: center; gap: 12px;
  background: var(--butter); border-radius: 18px 14px 20px 15px;
  padding: 14px 18px 14px 14px; margin-top: 14px; text-decoration: none;
  transition: transform .12s var(--curve);
}
.faq-more:hover { transform: translateY(-2px); }
.faq-more .jseat {
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 38px; height: 38px; border-radius: 50%; background: var(--paper);
}
.faq-more .fm-txt { flex: 1; }
.faq-more b { display: block; font-size: 14.5px; font-weight: 800; }
.faq-more small { display: block; font-size: 12px; font-weight: 600; opacity: .78; line-height: 1.45; margin-top: 2px; }
.faq-more .arr { font-size: 18px; font-weight: 800; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.ctaband {
  position: relative; padding: clamp(56px, 7vw, 96px) 0 clamp(84px, 9vw, 120px);
  text-align: center; overflow: hidden;
  background: linear-gradient(rgba(255, 197, 61, .18), rgba(255, 197, 61, .18)), var(--paper);
}
.cta-in { display: flex; flex-direction: column; align-items: center; }
.beep { display: block; margin-bottom: 4px; }
.bigset { font-size: clamp(42px, 6.6vw, 68px); color: var(--red); line-height: 1; }
.cta-sub { font-size: 16.5px; font-weight: 600; opacity: .8; margin-top: 18px; }
.ctaband .stores { justify-content: center; }
.ctaband .finelight { margin-top: 18px; }
.halftone-strip {
  position: absolute; left: 0; right: 0; bottom: 0; height: 44px;
  opacity: .15; pointer-events: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13"><circle cx="3.2" cy="3.2" r="2.1" fill="%23E4492E"/><circle cx="9.7" cy="9.7" r="2.1" fill="%23E4492E"/></svg>');
}

/* ==========================================================================
   FOOTER — the outro
   ========================================================================== */
.footer { background: var(--ink); color: var(--paper); padding-bottom: 30px; }
.cordsnap { display: flex; justify-content: center; padding: 34px 0 6px; opacity: .9; }
.cordsnap svg { width: min(290px, 70vw); height: auto; }
.foot-in {
  display: grid; grid-template-columns: 1fr auto; gap: clamp(30px, 5vw, 90px);
  padding: 22px 0 34px; align-items: start;
}
.fwm { display: inline-flex; align-items: center; gap: 11px; }
.fwm .wm-hs { width: 38px; height: 38px; }
.fwm .wm-txt { font-size: 29px; color: var(--paper); }
.foot-tag { font-size: 13.5px; font-weight: 600; opacity: .66; margin-top: 14px; }
.foot-cols { display: flex; gap: clamp(30px, 5vw, 70px); flex-wrap: wrap; }
.foot-cols b {
  display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; opacity: .55; margin-bottom: 12px;
}
.foot-cols a {
  display: block; font-size: 14px; font-weight: 600; text-decoration: none;
  opacity: .78; padding: 4px 0; transition: opacity .15s;
}
.foot-cols a:hover { opacity: 1; }
.foot-note { border-top: 1.5px solid rgba(255, 246, 227, .16); padding-top: 18px; }
.foot-note p { font-size: 11.5px; font-weight: 600; opacity: .55; line-height: 1.6; }
.foot-note p + p { margin-top: 8px; }

/* ==========================================================================
   REVEAL MOTION (gated behind .js so no-JS users see everything)
   ========================================================================== */
.js .reveal { opacity: 0; transform: translateY(16px) scale(.985); }
.js .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .5s ease-out, transform .55s var(--curve);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1023px) {
  .fgrid { grid-template-columns: repeat(2, 1fr); }
  .prem-grid { grid-template-columns: 1fr; }
  .ppanel { justify-self: start; }
}

@media (max-width: 879px) {
  .nav-links { display: none; }
  /* no margin left to overhang into — the capsule hands off to the §12
     M3 grammar: a full-width frosted bar with a bottom hairline. Still
     zero movement, zero resize; the ring never gets near the sticker. */
  .nav {
    transition: background-color .32s ease, box-shadow .32s ease,
                -webkit-backdrop-filter .32s ease, backdrop-filter .32s ease;
  }
  .nav.scrolled {
    background: rgba(255, 246, 227, .82);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    backdrop-filter: blur(14px) saturate(1.4);
    box-shadow: 0 1.5px 0 rgba(36, 30, 26, .08), 0 8px 22px rgba(36, 30, 26, .08);
  }
  .nav-in::before { display: none; }
  .nav.scrolled .nav-in { transform: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .phones { padding-top: 44px; }
  .dark-grid { grid-template-columns: 1fr; }
  .dark-phone { padding: 10px 24px 26px 10px; }
  .dark-copy { max-width: 640px; }
  .safe-grid { grid-template-columns: 1fr; }
  .faq-cols { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr auto; }
  .balloon { display: none; }

  /* tour goes single-column: the phone above, the text slot beneath */
  .tour-flow { height: 400vh; }
  .tour-sticky { top: 62px; }
  .tour-grid { grid-template-columns: 1fr; column-gap: 0; row-gap: 10px; justify-items: center; min-height: 0; }
  .pinbox { order: -1; padding: 2px 0 4px; }
  .tour-phone { width: min(228px, 60vw, calc((44vh) / 2.26)); }
  .tour-steps { max-width: 560px; width: 100%; }
  .js-slot .tour-steps { height: 250px; }
}

@media (max-width: 719px) {
  html { scroll-padding-top: 78px; }
  .nav-in { height: 64px; }
  .wm-hs { width: 28px; height: 28px; }
  .wm-txt { font-size: 21px; }
  .tour-sticky { top: 54px; }
  .scard { width: 168px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stats-copy { padding-bottom: 0; }
  .couple { justify-self: center; margin-top: 26px; }
  .burst-gotcha { width: 158px; height: 158px; right: -8px; }
  .gotcha-word { font-size: 29px; letter-spacing: .03em; }
  .gotcha-word .bl { transform: none !important; }
  .gotcha-word .bounce-layer.back { display: none; }
  .fgrid { grid-template-columns: 1fr; }
  .ptiles { grid-template-columns: repeat(2, 1fr); }
  .foot-in { grid-template-columns: 1fr; }
  .phones .phone.front { margin-right: clamp(44px, 14vw, 90px); }
  .phones .phone.back { top: 40px; }
}

@media (max-width: 479px) {
  .btn-store { font-size: 16px; padding: 11px 18px 12px 15px; }
  .stores { gap: 10px; }
  .bigset { font-size: clamp(34px, 11vw, 44px); }
  .beep svg { width: 118px; height: 118px; }
  .bub-act { font-size: 12px; }
}

/* ==========================================================================
   REDUCED MOTION — everything lands instantly, nothing pulses
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hl::after { transform: scaleX(1); transition: none; }
  .btn-glow { animation: none; }
  .bub-act { transform: scale(1); opacity: 1; transition: none; }
  .nav-links a::after { transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
