/* ============================================================
   NotNowLight — pre-launch single page
   Design system: near-black stage, the status color IS the brand.
   --status drives the device glow, ambient wash, and site chrome.
   ============================================================ */

@font-face {
  font-family: "Beon";
  src: url("assets/Beon-Regular.woff2") format("woff2");
  font-display: swap;
}

@property --status {
  syntax: '<color>';
  inherits: true;
  initial-value: #30d158;
}

:root {
  --status: #30d158;
  --free: #30d158;
  --busy: #ff453a;
  --focus: #8e5cff;
  --bg: #0a0a0c;
  --surface: #121216;
  --line: rgba(255, 255, 255, .08);
  --text: rgba(255, 255, 255, .92);
  --text-2: rgba(255, 255, 255, .55);
  --display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  transition: --status .8s var(--ease);
  overflow-x: hidden;
}
/* ambient wash on a fixed layer (background-attachment:fixed janks mobile Safari) */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(90vh 90vh at 50% 34vh,
    color-mix(in oklch, var(--status) 13%, var(--bg)), var(--bg));
  transition: --status .8s var(--ease);
}

::selection { background: color-mix(in oklch, var(--status) 45%, #000); color: #fff; }

h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: -.03em;
  line-height: 1.04;
  margin: 0 0 .4em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.6rem, 7.5vw, 6.2rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; line-height: 1.2; }
h1 em, h2 em { font-style: normal; color: var(--status); transition: color .8s var(--ease); }

p { margin: 0 0 1em; }
.body-lg { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-2); max-width: 46em; }
.body-lg strong, .body-lg em { color: var(--text); }
.fine { font-size: .8rem; color: rgba(255,255,255,.35); }
.kicker {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--status);
  transition: color .8s var(--ease);
  margin-bottom: 1.4em;
}

section { padding: clamp(6rem, 16vh, 11rem) clamp(1.25rem, 6vw, 6rem); max-width: 1280px; margin: 0 auto; }
section > :is(h2, p.kicker, p.body-lg, p.fine) { max-width: 900px; }
p.body-lg.wide { max-width: 100%; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- scroll progress hairline ---------- */
.progress {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 60;
  background: var(--status);
  transform-origin: 0 50%;
  transform: scaleX(0);
  transition: --status .8s var(--ease);
}
@supports (animation-timeline: scroll()) {
  .progress { animation: grow linear both; animation-timeline: scroll(root); }
  @keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
}

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .8rem clamp(1rem, 4vw, 2.5rem);
  background: color-mix(in srgb, var(--bg) 62%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; }
.brand img {
  height: 26px; width: auto; display: block;
  filter: drop-shadow(0 0 10px color-mix(in oklch, var(--status) 40%, transparent));
  transition: filter .8s var(--ease);
}
.nav nav { display: flex; gap: 1.4rem; margin-left: auto; overflow-x: auto; scrollbar-width: none; }
.nav nav::-webkit-scrollbar { display: none; }
.nav nav a {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-2); text-decoration: none; white-space: nowrap;
  padding: .3em 0; border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}
.nav nav a:hover, .nav nav a.active { color: var(--text); border-color: var(--status); }
@media (max-width: 720px) {
  .nav nav { display: none; }
  .nav .btn-small { display: none; }
  .nav { justify-content: space-between; }
}

/* language picker (top corner) */
.lang-pick { position: relative; display: inline-flex; align-items: center; gap: .45rem; flex: none; color: var(--text-2); }
.lang-pick > svg { width: 15px; height: 15px; }
.lang-pick select {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  color: var(--text-2); font-family: var(--mono); font-size: .72rem; letter-spacing: .06em;
  padding: .4em 1.7em .4em .85em; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: 12px; background-position: right .55em center;
  transition: color .25s, border-color .25s;
}
.lang-pick select:hover, .lang-pick select:focus-visible { color: var(--text); border-color: var(--status); outline: none; }
.lang-pick select option { background: #141417; color: #eee; }

/* anchor offset for fixed nav */
section[id], main[id] { scroll-margin-top: 5rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display); font-weight: 600; font-size: 1rem;
  color: #0b0b0d; text-decoration: none; cursor: pointer;
  background: var(--status);
  border: 0; border-radius: 999px;
  padding: .9em 1.9em;
  transition: background .8s var(--ease), transform .2s var(--ease), box-shadow .3s;
  box-shadow: 0 0 0 0 transparent;
  will-change: transform;
}
.btn:hover { box-shadow: 0 6px 30px -6px color-mix(in oklch, var(--status) 70%, transparent); }
.btn-small { padding: .55em 1.2em; font-size: .85rem; margin-left: auto; }
@media (max-width: 720px) { .btn-small { margin-left: 0; } }

/* ============================================================
   THE DEVICE (pure CSS product render)
   ============================================================ */
.scene { position: relative; width: var(--size, 340px); margin: 0 auto; }
.bloom {
  position: absolute; inset: -18%; border-radius: 50%;
  background: var(--status); opacity: .15; filter: blur(80px);
  transition: background .8s var(--ease);
}
.device {
  position: relative; width: 100%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #3a3d44 0%, #17181c 34%, #0a0b0d 72%);
  box-shadow:
    inset 0 2px 3px rgba(255,255,255,.28),
    inset 0 -6px 14px rgba(0,0,0,.85),
    0 30px 60px -18px rgba(0,0,0,.9);
}
.device::before { /* tight status bloom hugging the bezel */
  content: ""; position: absolute; inset: 6%; border-radius: 50%; pointer-events: none;
  box-shadow: 0 0 46px 6px color-mix(in oklch, var(--status) 50%, transparent);
  transition: box-shadow .8s var(--ease);
}
.device::after { /* glass reflection */
  content: ""; position: absolute; inset: 9%; border-radius: 50%; pointer-events: none; z-index: 3;
  background: linear-gradient(145deg, rgba(255,255,255,.13) 0%, rgba(255,255,255,.04) 22%, transparent 40%);
}
.screen {
  position: absolute; inset: 9%; border-radius: 50%; overflow: hidden; background: #000;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.9), inset 0 4px 18px rgba(0,0,0,.7);
}
.reflection {
  position: absolute; top: calc(100% + 6px); left: 0; width: 100%; aspect-ratio: 1; border-radius: 50%;
  transform: scaleY(-.55); transform-origin: top;
  filter: blur(14px); opacity: .35; pointer-events: none;
  background: radial-gradient(circle at 50% 30%, color-mix(in oklch, var(--status) 45%, #000) 0%, transparent 65%);
  -webkit-mask-image: linear-gradient(#000, transparent 55%);
  mask-image: linear-gradient(#000, transparent 55%);
  transition: background .8s var(--ease);
}

/* faces — crossfade + snap-scale on [data-face] */
.face {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .45s var(--ease), transform .45s var(--ease);
  transform: scale(.98);
  color: #fff; text-align: center;
}
.device[data-face="free"]    .face-free,
.device[data-face="busy"]    .face-busy,
.device[data-face="call"]    .face-call,
.device[data-face="focus"]   .face-focus,
.device[data-face="status"]  .face-status,
.device[data-face="weather"] .face-weather,
.device[data-face="gif"]     .face-gif { transform: scale(1); z-index: 1; }
.device[data-face="free"]  .face-free,
.device[data-face="busy"]  .face-busy,
.device[data-face="call"]  .face-call,
.device[data-face="focus"] .face-focus { opacity: 1; }

.face-free { background: radial-gradient(circle at 50% 40%, #0f2318 0%, #040806 70%); }
.face-free .time {
  font-family: var(--display);
  font-size: calc(var(--size, 340px) * .19);
  font-weight: 700; letter-spacing: -.02em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.face-free .tag {
  font-family: var(--mono);
  font-size: calc(var(--size, 340px) * .036);
  letter-spacing: .35em; text-transform: uppercase;
  color: color-mix(in oklch, var(--free) 55%, white); margin-top: .8em; padding-left: .35em;
}
.face-free .ring { position: absolute; inset: 6%; }
.face-free .ring-arc { stroke: var(--free); }

.face-busy { background: radial-gradient(circle at 50% 35%, #2b0a0d 0%, #0b0304 75%); }
.face-busy .label, .face-call .label, .face-focus .label {
  font-family: var(--display);
  font-size: calc(var(--size, 340px) * .078);
  font-weight: 700; letter-spacing: .01em;
}
.face-busy .until, .face-call .until, .face-focus .until {
  font-family: var(--mono);
  font-size: calc(var(--size, 340px) * .045);
  margin-top: .9em; font-variant-numeric: tabular-nums;
}
.face-busy .until { color: color-mix(in oklch, var(--busy) 40%, white); }
.face-busy .dot {
  width: calc(var(--size, 340px) * .035); aspect-ratio: 1; border-radius: 50%;
  background: var(--busy); margin-bottom: 1.1em;
}
@media (prefers-reduced-motion: no-preference) {
  .face-busy .dot { animation: pulse 1.6s ease-in-out infinite; }
  @keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,69,58,.6); }
    50% { box-shadow: 0 0 0 12px rgba(255,69,58,0); }
  }
}
/* live mic bars on the call face */
.mic-bars { display: flex; gap: calc(var(--size,340px) * .012); align-items: flex-end; height: calc(var(--size,340px) * .05); margin: .5em 0 .8em; }
.mic-bars i {
  width: calc(var(--size,340px) * .014); border-radius: 2px; background: var(--busy);
  height: 30%;
}
@media (prefers-reduced-motion: no-preference) {
  .mic-bars i { animation: micbar 1s ease-in-out infinite; }
  .mic-bars i:nth-child(1) { animation-delay: 0s; }
  .mic-bars i:nth-child(2) { animation-delay: .18s; }
  .mic-bars i:nth-child(3) { animation-delay: .32s; }
  .mic-bars i:nth-child(4) { animation-delay: .11s; }
  .mic-bars i:nth-child(5) { animation-delay: .26s; }
  @keyframes micbar { 0%, 100% { height: 25%; } 50% { height: 100%; } }
}
/* hero cycle faces */
.device[data-face="status"]  .face-status,
.device[data-face="weather"] .face-weather,
.device[data-face="gif"]     .face-gif { opacity: 1; }

.face-status { background: radial-gradient(circle at 50% 40%, #1c1330 0%, #070510 75%); }
.face-status .free-big {
  font-family: var(--display);
  font-size: calc(var(--size, 340px) * .1);
  font-weight: 700; letter-spacing: .05em; line-height: 1.25;
  max-width: 72%;
  color: color-mix(in oklch, var(--focus) 45%, white);
}
.face-status .until {
  font-family: var(--mono);
  font-size: calc(var(--size, 340px) * .05);
  margin-top: .7em; color: rgba(255,255,255,.75); font-variant-numeric: tabular-nums;
}

.face-weather { background: radial-gradient(circle at 50% 30%, #10202e 0%, #04070b 75%); }
.face-weather .wx { width: calc(var(--size, 340px) * .17); margin-bottom: .2em; }
.face-weather .temp {
  font-family: var(--display);
  font-size: calc(var(--size, 340px) * .17);
  font-weight: 700; line-height: 1; font-variant-numeric: tabular-nums;
}
.face-weather .cond {
  font-family: var(--mono);
  font-size: calc(var(--size, 340px) * .04);
  letter-spacing: .25em; text-transform: uppercase;
  color: #9ec8ec; margin-top: 1em; padding-left: .25em;
}

.face-gif { overflow: hidden; }
.gif-bg {
  position: absolute; inset: -20%;
  background:
    radial-gradient(50% 55% at 32% 36%, rgba(255,90,150,.9), transparent 70%),
    radial-gradient(55% 60% at 70% 30%, rgba(90,140,255,.85), transparent 70%),
    radial-gradient(60% 60% at 55% 75%, rgba(255,170,40,.9), transparent 70%),
    radial-gradient(45% 50% at 25% 75%, rgba(60,220,160,.8), transparent 70%),
    #120818;
  filter: saturate(1.3);
}
@media (prefers-reduced-motion: no-preference) {
  .gif-bg { animation: gif-drift 7s ease-in-out infinite alternate; }
  @keyframes gif-drift {
    from { transform: rotate(0deg) scale(1); }
    to   { transform: rotate(10deg) scale(1.12); }
  }
}
.gif-time {
  position: relative; z-index: 1;
  font-family: var(--display);
  font-size: calc(var(--size, 340px) * .17);
  font-weight: 700; font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 14px rgba(0,0,0,.75);
}

/* roman analog face */
.device[data-face="roman"] .face-roman { opacity: 1; transform: scale(1); z-index: 1; }
.face-roman { background: radial-gradient(circle at 50% 40%, #101e16 0%, #040805 72%); }
.face-roman svg.roman { width: 92%; height: 92%; display: block; }
.face-roman .rnum text {
  font-family: var(--display); font-size: 10px; font-weight: 500; letter-spacing: .04em;
}
/* tiny dials: browsers clamp SVG text to a minimum font size, which bloats
   the numerals — drop them and let ticks + hands carry the face */
.room .face-roman .rnum { display: none; }
.face-roman .rdot { fill: var(--free); }

.face-call { background: radial-gradient(circle at 50% 35%, #2b0a0d 0%, #0b0304 75%); }
.face-call .mic { width: calc(var(--size, 340px) * .1); color: var(--busy); margin-bottom: .8em; }
.face-call .until { color: color-mix(in oklch, var(--busy) 40%, white); }
.face-focus { background: radial-gradient(circle at 50% 40%, #1c1330 0%, #070510 75%); }
.face-focus .until { color: color-mix(in oklch, var(--focus) 45%, white); }

/* ---------- hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding-top: 7rem;
}
.hero .sub { max-width: 38em; margin-inline: auto; }
.ks-badge {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-2);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .55em 1.2em; margin-bottom: 2rem;
}
.badge-dot {
  width: .55em; height: .55em; border-radius: 50%; display: inline-block;
  background: var(--free);
  box-shadow: 0 0 10px color-mix(in oklch, var(--free) 80%, transparent);
}
.cta-row { display: flex; flex-direction: column; align-items: center; gap: .8rem; margin: 1.6rem 0 3.5rem; }
.mid-cta { margin: 4rem 0 0; }
.cta-note { font-family: var(--mono); font-size: .78rem; letter-spacing: .06em; color: rgba(255,255,255,.55); text-align: center; }

.hero-scene { --size: clamp(260px, 36vw, 400px); margin-bottom: 2rem; }
@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .hero-scene {
      animation: hero-settle linear both;
      animation-timeline: scroll(root);
      animation-range: 0 100vh;
    }
    @keyframes hero-settle {
      to { transform: scale(.72) translateY(-6vh); opacity: .25; }
    }
  }
}
.hero-chips {
  display: flex; align-items: center; justify-content: center;
  gap: .6rem; flex-wrap: wrap;
  margin: 1.6rem 0 2rem;
}
.chips-label {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.chip {
  font-family: var(--mono); font-size: .78rem; cursor: pointer;
  color: var(--text); background: color-mix(in srgb, var(--surface) 75%, transparent);
  border: 1px solid var(--line); border-radius: 999px; padding: .5em 1.1em;
  transition: border-color .3s, color .3s, background .3s;
}
.chip:hover { border-color: rgba(255,255,255,.3); }
.chip[aria-pressed="true"], .chip.active {
  border-color: var(--status); color: var(--status);
  background: color-mix(in oklch, var(--status) 12%, transparent);
}
@media (max-width: 560px) {
  .hero-chips { gap: .8rem .5rem; }
  .hero-chips .chips-label { flex-basis: 100%; text-align: center; }
  .hero-chips .chip { font-size: .72rem; padding: .5em .95em; white-space: nowrap; }
}
/* full-width compatibility strip below the hero */
.compat {
  display: flex; align-items: center; justify-content: center;
  gap: .9rem 1.6rem; flex-wrap: wrap;
  padding: 1.1rem clamp(1.25rem, 6vw, 6rem);
  border-block: 1px solid var(--line);
}
.compat-sep { width: 1px; height: 1.1rem; background: var(--line); }
.plat {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .74rem; letter-spacing: .1em;
  color: rgba(255,255,255,.6);
}
.plat svg { width: 1.15rem; height: 1.15rem; opacity: .85; flex: 0 0 auto; }
@media (max-width: 560px) {
  .compat { gap: .7rem 1.1rem; }
  .compat-sep { flex-basis: 100%; height: 0; background: none; }
  .plat { font-size: .68rem; }
}
.scroll-line {
  width: 1px; height: 3rem;
  background: linear-gradient(var(--status), transparent);
  transition: --status .8s var(--ease);
}
@media (prefers-reduced-motion: no-preference) {
  .scroll-line { animation: bob 2.2s ease-in-out infinite; }
  @keyframes bob { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(8px); opacity: .55; } }
}

/* ---------- problem ---------- */
.problem h2 .stat-inline { color: var(--busy); font-variant-numeric: tabular-nums; }
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; margin-top: 3rem; }
.quote {
  margin: 0; padding: 1.6rem;
  border: 1px solid var(--line); border-radius: 16px;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  display: flex; flex-direction: column;
}
.quote blockquote { margin: 0 0 1em; font-size: 1.02rem; line-height: 1.5; color: var(--text); flex: 1; }
.quote figcaption { margin-top: auto; }

/* big attributed stat */
.big-stat {
  margin: 3.5rem 0 0; padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid var(--line); border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 55%, transparent);
}
.big-stat .kicker { color: var(--busy); margin-bottom: 1.2em; }
.lost { display: flex; align-items: baseline; gap: .35em; flex-wrap: wrap; margin-bottom: 1.4rem; }
.lost-n {
  font-family: var(--display); font-weight: 700; letter-spacing: -.04em;
  font-size: clamp(3.4rem, 8vw, 6.5rem); line-height: 1; color: var(--busy);
  font-variant-numeric: tabular-nums;
}
.lost-sec { font-size: clamp(1.9rem, 4.5vw, 3.4rem); color: color-mix(in oklch, var(--busy) 55%, white); margin-left: .3em; }
.lost-u {
  font-family: var(--mono); font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-2);
}
/* 23 minutes, ticking away */
.ticks-bar { display: flex; gap: .45%; margin-bottom: 1.6rem; }
.ticks-bar i {
  flex: 1; height: .55rem; border-radius: 3px;
  background: rgba(255,255,255,.1);
}
.ticks-bar i.on { background: var(--busy); }
@media (prefers-reduced-motion: no-preference) {
  .ticks-bar i { transition: background .25s ease; }
}
.big-stat blockquote {
  margin: 0 0 1em; max-width: 52em;
  font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.55; color: var(--text-2);
}
.big-stat figcaption { font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; color: var(--text-2); }
.big-stat figcaption a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.2); transition: color .25s, border-color .25s; }
.big-stat figcaption a:hover { color: var(--text); border-color: var(--status); }
.quote figcaption { font-family: var(--mono); font-size: .7rem; letter-spacing: .1em; color: var(--text-2); }
.quote figcaption a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.2); transition: color .25s, border-color .25s; }
.quote figcaption a:hover { color: var(--text); border-color: var(--status); }
.reports-kicker { margin-top: 3.5rem; color: var(--text-2); }
.problem .story p { margin-bottom: 1.2em; }

/* ---------- how it works: pinned walkthrough ---------- */
.how { max-width: 1280px; }
.how-head { margin-bottom: 4rem; }
.stage-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.stage-device { position: sticky; top: 0; height: 100svh; display: flex; align-items: center; justify-content: center; }
.stage-device .scene { --size: clamp(240px, 26vw, 360px); }
.steps { display: flex; flex-direction: column; }
.step {
  min-height: 72svh;
  display: flex; flex-direction: column; justify-content: center;
  opacity: .25; transition: opacity .5s var(--ease);
}
.step.current { opacity: 1; }
.step-n {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--status); transition: color .8s var(--ease); margin-bottom: 1.2em;
}
.step p { color: var(--text-2); max-width: 34em; }
.step p em { color: var(--text); font-style: normal; }
@media (max-width: 860px) {
  .stage-wrap { grid-template-columns: 1fr; }
  .stage-device { position: sticky; top: 3.4rem; height: auto; padding: .8rem 0 2.2rem; z-index: 5;
    background: linear-gradient(var(--bg) 88%, transparent); }
  .stage-device .scene { --size: clamp(180px, 42vw, 260px); }
  .stage-device .reflection { display: none; }
  .step { min-height: 70svh; }
}

/* ---------- marquee ---------- */
.marquee {
  margin-top: 4rem; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12% 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12% 88%, transparent);
  border-block: 1px solid var(--line);
  padding: 1.1rem 0;
}
.marquee-row {
  display: flex; gap: 2.6rem; width: max-content; align-items: center;
  font-family: var(--display); font-size: 1.15rem; font-weight: 500; color: var(--text-2);
  white-space: nowrap;
}
.marquee-row span { display: inline-flex; align-items: center; gap: .55em; }
.marquee-row .mq { width: 1.15em; height: 1.15em; flex: 0 0 auto; opacity: .85; }
.marquee-row i { font-style: normal; color: var(--status); transition: color .8s var(--ease); }
@media (prefers-reduced-motion: no-preference) {
  .marquee-row { animation: slide 30s linear infinite; }
  @keyframes slide { to { transform: translateX(-50%); } }
}

/* ---------- faces ---------- */
.faces-strip {
  display: flex; gap: 1.2rem; margin: 3rem 0 1rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-padding-inline: 1rem;
  padding: 1rem .6rem 1.6rem;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.15) transparent;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3% 97%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 3% 97%, transparent);
}
.face-tile {
  margin: 0; flex: 0 0 auto; scroll-snap-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .9rem;
}
.face-tile .shot, .gif-swatch {
  width: clamp(160px, 21vw, 220px); aspect-ratio: 1; border-radius: 50%;
  display: block; position: relative; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 36px -14px rgba(0,0,0,.9);
  background: #0d0e11;
}
.face-tile .shot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(var(--zoom, 1));
}
.face-tile .shot::after { /* vignette unifies mixed-background photos */
  content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  box-shadow: inset 0 0 46px 14px rgba(0,0,0,.75), inset 0 0 0 2px rgba(0,0,0,.5);
}
.gif-swatch {
  background:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,.55) 30%, transparent 70%),
    conic-gradient(from 210deg, #ff453a, #ff9f0a, #30d158, #64d2ff, #8e5cff, #ff453a);
  filter: saturate(1.2);
  display: grid; place-items: center;
  position: relative;
}
.gif-swatch::after {
  content: "GIF"; font-family: var(--mono); font-weight: 500;
  color: #fff; letter-spacing: .3em; padding-left: .3em;
}
@media (prefers-reduced-motion: no-preference) {
  .gif-swatch { animation: hue 6s linear infinite; }
  @keyframes hue { to { filter: saturate(1.2) hue-rotate(360deg); } }
}
.face-tile figcaption { font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-2); }

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  margin-top: 3rem;
}
.stat { background: var(--bg); padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: .4rem; }
.stat-n {
  font-family: var(--display); font-weight: 700; letter-spacing: -.03em;
  font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-n i { font-style: normal; color: var(--text-2); font-size: .6em; }
.stat-l { font-family: var(--mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-2); }

/* ---------- anywhere ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.2rem; margin-top: 3rem; }
.card {
  border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  transition: transform .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.18); }
.card h3 { padding: 1.4rem 1.5rem 0; }
.card p { padding: 0 1.5rem 1.5rem; color: var(--text-2); margin: .4em 0 0; }
/* ---------- the house: four rooms, one status ---------- */
.house {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line); border-radius: 24px;
  overflow: hidden; margin-top: 3rem;
  background:
    radial-gradient(140% 120% at 50% 130%, color-mix(in oklch, var(--status) 7%, transparent), transparent 60%),
    linear-gradient(178deg, #0e0f14 0%, #0a0b0e 100%);
  transition: --status .8s var(--ease);
}
.room {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  padding: 3.4rem 1rem 4.8rem; gap: 2.2rem;
}
.room + .room { border-left: 1px solid var(--line); }
.room-label {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.room .scene { margin: 0; }
.room .reflection { opacity: .25; }
.room .face .label { font-size: 10px; letter-spacing: .04em; }
.room .face .until { font-size: 7.5px; margin-top: .7em; }
.room .face-busy .dot { width: 5px; margin-bottom: .8em; }
.room .face-free .tag { font-size: 6.5px; }
.room .face-weather .cond { font-size: 6.5px; letter-spacing: .18em; margin-top: .8em; }
.room .face-weather .wx { width: 18px; }
.room .bloom { opacity: .18; filter: blur(46px); }
.sync-note {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-2); text-align: center; margin: 1.4rem 0 0;
}
.room-notes {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem; margin-top: 3.5rem;
}
.room-notes > div { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.room-notes h3 { font-size: 1.15rem; margin-bottom: .5em; }
.room-notes p { color: var(--text-2); margin: 0; }
@media (max-width: 880px) {
  .house { grid-template-columns: 1fr 1fr; }
  .room:nth-child(3) { border-left: 0; }
  .room:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .room { padding: 2.2rem .6rem 3rem; gap: 1.5rem; }
  .room .scene { --size: 96px !important; }
  .room-label { font-size: .56rem; letter-spacing: .2em; }
}

/* ---------- the app: tray demo ---------- */
.app-demo {
  display: grid; grid-template-columns: minmax(300px, 520px) auto;
  gap: clamp(2rem, 6vw, 5rem); align-items: center; justify-content: center;
  margin-top: 3.5rem;
}
@media (max-width: 860px) { .app-demo { grid-template-columns: 1fr; justify-items: center; } }
.tray-mock {
  width: 100%; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(178deg, #14151b, #0e0f13);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.9);
}
.menubar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .55rem 1rem;
  background: rgba(255,255,255,.045);
  border-bottom: 1px solid var(--line);
  font-family: var(--body); font-size: .78rem; color: rgba(255,255,255,.55);
}
.mb-right { display: inline-flex; align-items: center; gap: .9rem; }
.mb-ic { width: 1rem; height: 1rem; }
.mb-time { font-variant-numeric: tabular-nums; font-size: .78rem; }
.tray-dot {
  display: grid; place-items: center; cursor: pointer;
  width: 1.5rem; height: 1.5rem; border-radius: 6px;
  background: transparent; border: 0;
  transition: background .25s;
}
.tray-dot:hover, .tray-dot[aria-expanded="true"] { background: rgba(255,255,255,.12); }
.tray-dot i {
  width: .65rem; height: .65rem; border-radius: 50%;
  background: var(--status);
  box-shadow: 0 0 8px color-mix(in oklch, var(--status) 80%, transparent);
  transition: background .4s, box-shadow .4s;
}
.tray-menu {
  padding: .5rem; margin: .5rem .6rem 1rem auto; width: min(270px, calc(100% - 1.2rem));
  border: 1px solid var(--line); border-radius: 14px;
  background: rgba(22,23,29,.92);
  backdrop-filter: blur(8px);
  display: none;
}
.tray-menu.open { display: block; }
.mrow {
  display: flex; align-items: center; gap: .7rem; width: 100%;
  font: inherit; font-size: .85rem; color: var(--text);
  background: none; border: 0; border-radius: 8px;
  padding: .55rem .7rem; cursor: pointer; text-align: left;
  transition: background .2s;
}
.mrow:hover { background: rgba(255,255,255,.08); }
.mrow i {
  width: .6rem; height: .6rem; border-radius: 50%; flex: 0 0 auto;
  background: var(--c);
  box-shadow: 0 0 7px color-mix(in oklch, var(--c) 70%, transparent);
}
.mrow .dot-auto {
  background: conic-gradient(#30d158 0 50%, #ff453a 50% 100%);
  box-shadow: 0 0 7px rgba(255,255,255,.3);
}
.mrow .check { margin-left: auto; opacity: 0; color: var(--text-2); font-size: .8rem; }
.mrow[aria-pressed="true"] .check { opacity: 1; }
.mtag {
  font-family: var(--mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-2); border: 1px solid var(--line); border-radius: 999px; padding: .15em .6em;
  margin-left: .4rem;
}
.msep { height: 1px; background: var(--line); margin: .45rem .4rem; }
.mmuted {
  font-size: .8rem; color: rgba(255,255,255,.4); padding: .45rem .7rem;
  display: flex; align-items: center; gap: .7rem;
}
.mdev i { width: .45rem; height: .45rem; border-radius: 50%; background: #30d158; }
.app-scene .reflection { opacity: .28; }
/* custom face (app demo) */
.device[data-face="custom"] .face-custom { opacity: 1; transform: scale(1); z-index: 1; }
.face-custom { background: radial-gradient(circle at 50% 40%, #14151d 0%, #060609 75%); }
.face-custom .label {
  font-family: var(--display); font-weight: 700;
  font-size: calc(var(--size, 340px) * .09);
  letter-spacing: .04em; line-height: 1.25; max-width: 78%;
  color: color-mix(in oklch, var(--status) 50%, white);
  transition: color .4s;
}
.face-custom .until {
  font-family: var(--mono);
  font-size: calc(var(--size, 340px) * .05);
  margin-top: .8em; color: rgba(255,255,255,.7);
}

/* ---------- ecosystem ---------- */
.eco-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem; margin-top: 3rem;
}
.eco-item {
  border: 1px solid var(--line); border-radius: 20px; padding: 2rem;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  transition: transform .35s var(--ease), border-color .35s;
}
.eco-item:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.18); }
.eco-icon {
  display: inline-grid; place-items: center;
  width: 2.6rem; height: 2.6rem; border-radius: 12px; margin-bottom: 1.2rem;
  color: var(--status);
  border: 1px solid var(--line);
  background: color-mix(in oklch, var(--status) 10%, transparent);
  transition: color .8s var(--ease), background .8s var(--ease);
}
.eco-icon svg { width: 1.3rem; height: 1.3rem; }
.eco-item h3 { margin-bottom: .5em; }
.eco-item p { color: var(--text-2); margin: 0; }
.chip-code {
  display: inline-block; margin-top: 1.1rem;
  font-family: var(--mono); font-size: .78rem;
  color: color-mix(in oklch, var(--status) 65%, white);
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line); border-radius: 8px;
  padding: .5em .9em;
  transition: color .8s var(--ease);
}

/* ---------- light vs pro ---------- */
.models-stage {
  display: flex; align-items: flex-end; justify-content: center;
  gap: clamp(2rem, 8vw, 6rem); margin: 4rem 0 .6rem;
}
.stage-item { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.dim-rule {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .18em;
  color: var(--text-2); margin: 0;
  border-top: 1px solid var(--line); padding-top: .8em; width: 100%; text-align: center;
}
.center { text-align: center; }
.specs .center, .compare .center { margin-inline: auto; }
.models {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.2rem; margin-top: 2.5rem; align-items: stretch;
}
.model {
  border: 1px solid var(--line); border-radius: 24px; padding: 2.4rem;
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  display: flex; flex-direction: column;
}
.model-pro { border-color: color-mix(in oklch, var(--status) 35%, var(--line)); }
@media (max-width: 620px) {
  .models-stage { gap: 1.4rem; }
  .models-stage .stage-item:first-child .scene { --size: 118px !important; }
  .models-stage .stage-item:last-child .scene  { --size: 170px !important; }
  .models-stage .stage-item:first-child .face-free .time { font-size: 24px; }
  .dim-rule { font-size: .62rem; letter-spacing: .12em; }
}
.model h3 { display: flex; align-items: center; gap: .6rem; }
.pro-badge {
  font-family: var(--mono); font-size: .6rem; letter-spacing: .25em;
  color: #0b0b0d; background: var(--status);
  border-radius: 999px; padding: .35em .9em .3em 1.05em;
  transition: background .8s var(--ease);
}
.model-tag {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-2); margin-bottom: 1.2em;
}
.model ul { margin: 0; padding: 0; list-style: none; }
.model li {
  padding: .7em 0 .7em 1.6em; position: relative;
  color: var(--text-2); border-top: 1px solid var(--line);
}
.model li strong { color: var(--text); }
.model li::before {
  content: ""; position: absolute; left: 0; top: 1.25em;
  width: .5em; height: .5em; border-radius: 50%;
  background: var(--status); transition: background .8s var(--ease);
}

/* ---------- the plan: timeline ---------- */
.timeline {
  list-style: none; margin: 3.5rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
  position: relative;
}
.timeline::before { /* the rail */
  content: ""; position: absolute; left: 0; right: 0; top: 7px; height: 2px;
  background: linear-gradient(90deg,
    var(--free) 0%,
    color-mix(in oklch, var(--free) 40%, rgba(255,255,255,.12)) 30%,
    rgba(255,255,255,.12) 100%);
  border-radius: 1px;
}
.tstep { position: relative; padding-top: 2.2rem; }
.tstep::before { /* node */
  content: ""; position: absolute; top: 0; left: 0;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--bg);
  border: 2px solid rgba(255,255,255,.25);
}
.tstep:first-child::before {
  border-color: var(--free); background: var(--free);
  box-shadow: 0 0 12px color-mix(in oklch, var(--free) 70%, transparent);
}
.t-ship::before { border-color: var(--free); }
@media (prefers-reduced-motion: no-preference) {
  .t-ship::before { animation: ship-pulse 2.2s ease-in-out infinite; }
  @keyframes ship-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(48,209,88,.5); }
    50% { box-shadow: 0 0 0 9px rgba(48,209,88,0); }
  }
}
.t-month {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--free); display: block; margin-bottom: 1em;
}
.tstep h3 { font-size: 1.15rem; margin-bottom: .45em; }
.tstep p { color: var(--text-2); margin: 0; font-size: .95rem; }
@media (max-width: 880px) {
  .timeline { grid-template-columns: 1fr; gap: 2.2rem; padding-left: 2rem; }
  .timeline::before { left: 7px; right: auto; top: 4px; bottom: 4px; width: 2px; height: auto;
    background: linear-gradient(180deg, var(--free) 0%,
      color-mix(in oklch, var(--free) 40%, rgba(255,255,255,.12)) 30%,
      rgba(255,255,255,.12) 100%); }
  .tstep { padding-top: 0; }
  .tstep::before { left: -2rem; top: 2px; }
}

.privacy-note {
  display: inline-flex; align-items: center; gap: .7rem;
  margin-top: 2.2rem;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .04em;
  color: var(--text-2);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .7em 1.3em;
}
.privacy-note svg { width: 1.05rem; height: 1.05rem; color: var(--free); flex: 0 0 auto; }

/* ---------- founder ---------- */
.founder { padding-block: clamp(3rem, 8vh, 5rem); }
.founder-note {
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line); border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 55%, transparent);
}
.founder-note blockquote {
  margin: 0 0 1.2em;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.45rem); line-height: 1.45;
  letter-spacing: -.01em; text-wrap: balance;
}
.founder-note figcaption {
  font-family: var(--mono); font-size: .75rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--status);
  transition: color .8s var(--ease);
}

/* ---------- specs ---------- */
.spec-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  margin: 3rem 0 0;
}
.spec-grid > div { background: var(--bg); padding: 1.4rem 1.6rem; }
/* fill orphan cells so the line-colored grid background never shows through */
.spec-grid::before, .spec-grid::after { content: ""; background: var(--bg); }
.spec-grid dt {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-2); margin-bottom: .5em;
}
.spec-grid dd { margin: 0; font-family: var(--mono); font-size: .95rem; color: var(--text); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin-top: 2.5rem; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 600; font-size: 1.1rem;
  padding: 1.3rem 2.5rem 1.3rem 0; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono); color: var(--status);
  transition: transform .3s var(--ease), color .8s var(--ease);
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { color: var(--text-2); padding-bottom: 1.3rem; margin: 0; max-width: 42em; }

/* ---------- signup ---------- */
.signup { text-align: center; }
.signup .body-lg { margin-inline: auto; }
.signup-form {
  display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap;
  margin: 2.2rem auto 1rem; max-width: 560px;
}
.signup-form input {
  flex: 1 1 260px;
  font: inherit; color: var(--text);
  background: color-mix(in srgb, var(--surface) 80%, transparent);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .9em 1.4em; outline: none;
  transition: border-color .3s;
}
.signup-form input:focus { border-color: var(--status); }
.form-note { font-family: var(--mono); font-size: .8rem; color: var(--status); min-height: 1.4em; transition: color .8s var(--ease); }
.signup .ks-badge { margin-top: 2.5rem; margin-bottom: 0; }

/* ---------- checkout notice pages (success / cancel) ---------- */
.notice {
  min-height: 78vh;
  display: grid; place-items: center; text-align: center;
  padding-block: clamp(7rem, 20vh, 12rem);
}
.notice-inner { max-width: 620px; }
.notice .body-lg { margin-inline: auto; }
.notice-badge {
  width: 5.2rem; height: 5.2rem; border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 2rem;
  color: var(--status);
  border: 1px solid color-mix(in oklch, var(--status) 45%, var(--line));
  background: color-mix(in oklch, var(--status) 12%, transparent);
  box-shadow: 0 0 46px -6px color-mix(in oklch, var(--status) 55%, transparent);
  transition: color .8s var(--ease), background .8s var(--ease), box-shadow .8s var(--ease);
}
.notice-badge svg { width: 2.4rem; height: 2.4rem; }
.notice-hint {
  font-family: var(--mono); font-size: .82rem; letter-spacing: .04em;
  color: var(--text-2); margin-top: .2rem;
}
.notice-actions { margin-top: 2.4rem; }
.notice .fine { margin-top: 1.8rem; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 3rem clamp(1.25rem, 6vw, 6rem);
  max-width: 1280px; margin: 0 auto;
  color: var(--text-2); font-size: .9rem;
}
.footer-logo { height: 34px; width: auto; opacity: .85; margin-bottom: 1.2rem; display: block; }
.footer .fine { display: block; }

/* ---------- film modal ---------- */
[hidden] { display: none !important; }
.cta-pair { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,.25);
  transition: border-color .3s, color .3s, transform .2s var(--ease);
}
.btn-ghost:hover { border-color: var(--status); color: var(--status); box-shadow: none; }
.film-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1.5rem; }
.film-backdrop {
  position: absolute; inset: 0;
  background: rgba(4,4,6,.82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.film-box {
  position: relative; width: min(960px, 100%);
}
@media (prefers-reduced-motion: no-preference) {
  .film-box { animation: film-in .35s var(--ease) both; }
  @keyframes film-in { from { opacity: 0; transform: scale(.96) translateY(10px); } }
}
.film-box video {
  width: 100%; display: block; border-radius: 16px;
  aspect-ratio: 16 / 9; object-fit: contain;
  background: #000;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,1);
}
.film-close {
  position: absolute; top: -2.6rem; right: 0;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  font-size: 1.2rem; line-height: 1; cursor: pointer;
  color: var(--text); background: rgba(255,255,255,.1); border: 0;
  transition: background .25s;
}
.film-close:hover { background: rgba(255,255,255,.22); }
.film-note {
  margin: .9rem 0 0; text-align: center;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .12em;
  color: rgba(255,255,255,.4);
}
.modal-open { overflow: hidden; }

/* ---------- mobile sticky CTA ---------- */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta {
    display: block; position: fixed; z-index: 55;
    left: 1rem; right: 1rem; bottom: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px -8px rgba(0,0,0,.8);
    transform: translateY(140%); opacity: 0;
    transition: transform .45s var(--ease), opacity .45s var(--ease);
    pointer-events: none;
  }
  .mobile-cta.show { transform: none; opacity: 1; pointer-events: auto; }
  .footer { padding-bottom: 6.5rem; }
}

/* ---------- reveals ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  /* gentle stagger inside grids/strips */
  :is(.cards, .quotes, .eco-grid, .trust-grid, .stats, .models) .reveal:nth-child(2) { transition-delay: .08s; }
  :is(.cards, .quotes, .eco-grid, .trust-grid, .stats, .models) .reveal:nth-child(3) { transition-delay: .16s; }
  :is(.cards, .quotes, .eco-grid, .trust-grid, .stats, .models) .reveal:nth-child(4) { transition-delay: .24s; }
  :is(.cards, .quotes, .eco-grid, .trust-grid, .stats, .models) .reveal:nth-child(5) { transition-delay: .32s; }
}
