/* ═══════════════════════════════════════════════════════════════════════════
   FINDMYSITE — landing.css
   One night at camp. Scroll = time passing. --cin-day (0 midnight → 1 morning)
   is written by /static/js/cinematic.js and drives the sky, the ink and the
   light across every scene. Reduced motion pins a legible golden-hour frame.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── §0 · Sky engine vars (JS-written; defaults = midnight) ────────────────── */
:root {
  --sky-night: 1;
  --sky-dawn: 0;
  --sky-day: 0;
  --cin-bloom: 0;
  --moon-x: 76;   /* vw */
  --moon-y: 10;   /* vh */
  --moon-o: .95;
  --sun-x: 30;    /* vw */
  --sun-y: 112;   /* vh */
  --sun-o: 0;
  --nav-h: 64px;
}

/* ═══ §1 · THE SKY (fixed stack, opacity-only crossfade) ═══════════════════ */
.cin-sky {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background: var(--night);
}
.cin-sky > div { position: absolute; inset: 0; will-change: opacity; }
.cin-sky-night {
  background: linear-gradient(180deg,
    var(--night) 0%, var(--night-2) 46%, var(--indigo) 86%, #24365a 100%);
  opacity: var(--sky-night);
}
.cin-sky-dawn {
  background: linear-gradient(180deg,
    #223655 0%, #4a4468 34%, var(--dawn-rose) 68%, var(--dawn-peach) 88%, #ffd9ac 100%);
  opacity: var(--sky-dawn);
}
.cin-sky-day {
  background: linear-gradient(180deg,
    #b9d4e6 0%, #dfe8e0 42%, var(--day-cream) 74%, var(--day-warm) 100%);
  opacity: var(--sky-day);
}

/* Moon — journeys down and sets as you scroll */
.cin-moon {
  position: fixed;
  top: 0; left: 0;
  width: clamp(58px, 7vw, 96px);
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 32%, rgba(190,182,150,.5) 0 8%, transparent 9%),
    radial-gradient(circle at 62% 58%, rgba(190,182,150,.4) 0 6%, transparent 7%),
    radial-gradient(circle at 44% 74%, rgba(190,182,150,.35) 0 5%, transparent 6%),
    radial-gradient(circle at 38% 36%, #fffdf1 0%, #f7efcf 55%, #e9dcae 100%);
  box-shadow:
    0 0 34px 10px rgba(247,239,207,.35),
    0 0 130px 46px rgba(247,239,207,.14);
  transform: translate3d(calc(var(--moon-x) * 1vw), calc(var(--moon-y) * 1vh), 0);
  opacity: var(--moon-o);
  will-change: transform, opacity;
}

/* Sun — breaks the horizon mid-page and climbs */
.cin-sun {
  position: fixed;
  top: 0; left: 0;
  width: clamp(74px, 9vw, 130px);
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle at 42% 40%, #fff7dd 0%, #ffd98f 46%, var(--ember) 100%);
  box-shadow:
    0 0 60px 22px rgba(255,180,110,.55),
    0 0 190px 90px rgba(255,158,44,.22);
  transform: translate3d(calc(var(--sun-x) * 1vw), calc(var(--sun-y) * 1vh), 0);
  opacity: var(--sun-o);
  will-change: transform, opacity;
}

/* Dawn bloom — a page-wide warm exhale during the handoff */
.cin-bloom-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 104%,
    rgba(255,180,126,.6) 0%, rgba(232,131,107,.28) 42%, transparent 72%);
  opacity: var(--cin-bloom);
  will-change: opacity;
}

/* ═══ §2 · NAV (slim glass bar, slides in after ~80px) ═════════════════════ */
.top-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transform: translateY(-110%);
  transition: transform .5s var(--ease);
  background: color-mix(in srgb,
    color-mix(in oklab, var(--night) calc((1 - var(--cin-day)) * 100%), var(--day-cream)) 78%,
    transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid color-mix(in srgb, var(--cin-ink) 12%, transparent);
}
.top-nav.nav-on { transform: translateY(0); }
.nav-inner {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 1.6rem);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  color: var(--cin-ink-strong);
  text-decoration: none;
}
.nav-brand .nav-tent { font-size: 1.15rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: .6rem;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--cin-ink);
  opacity: .82;
  text-decoration: none;
  transition: opacity var(--t-fast) var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.auth-bar { display: flex; align-items: center; gap: .6rem; }
#auth-status {
  font-size: .8rem;
  font-weight: 600;
  color: var(--cin-ink);
  opacity: .8;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-cta { white-space: nowrap; }
body:has(#auth-btn.hidden) .nav-cta { display: none; }

@media (max-width: 980px) { .nav-links { display: none; } }
@media (max-width: 640px) {
  #auth-status { display: none; }
  .nav-inner { gap: .7rem; }
}

/* ═══ §3 · VERIFY BANNER (floats in under the nav when visible) ════════════ */
.verify-banner {
  position: fixed;
  top: calc(var(--nav-h) + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 8900;
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: min(680px, calc(100vw - 2rem));
  background: var(--warn-bg);
  color: var(--warn);
  border: 1px solid color-mix(in srgb, var(--warn) 30%, transparent);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: .65rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  animation: verifyIn .5s var(--ease);
}
@keyframes verifyIn { from { opacity: 0; transform: translate(-50%, -12px); } }
.verify-resend {
  background: var(--warn);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .35rem .8rem;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
}
.verify-resend:disabled { opacity: .6; }

/* ═══ §4 · SCENE PRIMITIVES ════════════════════════════════════════════════ */
.scene {
  position: relative;
  padding: clamp(5rem, 12vh, 9rem) clamp(1rem, 4vw, 2rem);
  color: var(--cin-ink);
}
.scene-inner { max-width: 1120px; margin-inline: auto; }
.scene-head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 1.1rem;
}
.kicker::before, .kicker::after {
  content: "";
  width: 26px;
  height: 1px;
  background: color-mix(in srgb, var(--ember) 55%, transparent);
}
.scene-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--cin-ink-strong);
}
.scene-sub {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--cin-ink-soft);
  line-height: 1.7;
}

/* Reveal system — ONE IntersectionObserver in cinematic.js adds .reveal-in */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .85s var(--ease),
    transform .85s var(--ease),
    clip-path .9s var(--ease);
  transition-delay: calc(var(--rd, 0) * 90ms);
}
.reveal.reveal-in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { --rd: 1; } [data-reveal-delay="2"] { --rd: 2; }
[data-reveal-delay="3"] { --rd: 3; } [data-reveal-delay="4"] { --rd: 4; }
[data-reveal-delay="5"] { --rd: 5; }

/* Scene-title sweep: wipes open left→right as it reveals */
.scene-title.reveal { clip-path: inset(-8% 100% -12% 0); transform: translateY(14px); }
.scene-title.reveal.reveal-in { clip-path: inset(-8% -4% -12% 0); transform: translateY(0); }

/* ═══ §5 · SCENE 01 — NIGHTFALL (hero) ═════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-diorama {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-diorama svg { width: 100%; height: 100%; }

/* — Diorama paint: ridgelines with atmospheric perspective that morning-shift — */
.dm-ridge-far  { fill: color-mix(in oklab, #24395c calc((1 - var(--cin-day)) * 100%), #a9bfae); }
.dm-ridge-mid  { fill: color-mix(in oklab, #16273f calc((1 - var(--cin-day)) * 100%), #6f8f77); }
.dm-ridge-near { fill: color-mix(in oklab, #0d1a2c calc((1 - var(--cin-day)) * 100%), #46664f); }
.dm-pines-far  { fill: color-mix(in oklab, #0a1626 calc((1 - var(--cin-day)) * 100%), #33513c); }
.dm-ground     { fill: color-mix(in oklab, #071120 calc((1 - var(--cin-day)) * 100%), #2c4a36); }
.dm-pines      { fill: color-mix(in oklab, #050d18 calc((1 - var(--cin-day)) * 100%), #21392a); }
.dm-lake-fill  { fill: color-mix(in oklab, #0a1830 calc((1 - var(--cin-day)) * 100%), #9fc0cf); }

/* Moonlight road on the lake — dissolves as the moon sets */
.dm-moonroad { opacity: calc((1 - var(--cin-day)) * .85); }
.dm-moonroad .mr-shimmer { animation: mrShimmer 5.5s ease-in-out infinite alternate; }
@keyframes mrShimmer {
  from { opacity: .35; transform: translateX(0); }
  to   { opacity: .8;  transform: translateX(9px); }
}

/* Lake glints */
.dm-glint { stroke: rgba(255,255,255,.12); animation: glintDrift 7s ease-in-out infinite alternate; }
.dm-glint.g2 { animation-delay: -2.4s; }
.dm-glint.g3 { animation-delay: -4.8s; }
@keyframes glintDrift {
  from { opacity: .25; transform: translateX(-8px); }
  to   { opacity: .7;  transform: translateX(10px); }
}

/* Tent — warm light through canvas, breathing gently */
.dm-tent-glow {
  animation: tentBreathe 5s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes tentBreathe {
  0%, 100% { opacity: .8; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.06); }
}
.dm-tent-inner { animation: tentInner 5s ease-in-out infinite; }
@keyframes tentInner {
  0%, 100% { opacity: .75; }
  50%      { opacity: .95; }
}

/* Campfire — independent flame tongues + halo pulse */
.dm-flame { transform-origin: 50% 100%; transform-box: fill-box; }
.dm-flame.fl-1 { animation: flick1 .62s ease-in-out infinite alternate; }
.dm-flame.fl-2 { animation: flick2 .48s ease-in-out infinite alternate; animation-delay: -.18s; }
.dm-flame.fl-3 { animation: flick3 .55s ease-in-out infinite alternate; animation-delay: -.32s; }
.dm-flame.fl-4 { animation: flick2 .42s ease-in-out infinite alternate; animation-delay: -.09s; }
@keyframes flick1 {
  from { transform: scaleY(1) skewX(0deg); }
  to   { transform: scaleY(1.18) skewX(-3.5deg); }
}
@keyframes flick2 {
  from { transform: scaleY(.92) skewX(2.5deg); }
  to   { transform: scaleY(1.12) skewX(-2deg); }
}
@keyframes flick3 {
  from { transform: scaleY(1.05) skewX(-2deg); opacity: .95; }
  to   { transform: scaleY(.88) skewX(3deg);   opacity: .8; }
}
.dm-fire-halo {
  animation: haloPulse 1.7s ease-in-out infinite;
  transform-origin: center;
  transform-box: fill-box;
  opacity: calc(.4 + (1 - var(--cin-day)) * .6);
}
@keyframes haloPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.12); }
}

/* Ember motes rising from the fire */
.dm-ember {
  transform-box: fill-box;
  animation: emberRise 2.8s linear infinite;
  opacity: 0;
}
.dm-ember.em-2 { animation-duration: 3.4s; animation-delay: -1.2s; }
.dm-ember.em-3 { animation-duration: 2.4s; animation-delay: -.7s; }
.dm-ember.em-4 { animation-duration: 3.8s; animation-delay: -2.1s; }
.dm-ember.em-5 { animation-duration: 3.1s; animation-delay: -1.7s; }
@keyframes emberRise {
  0%   { opacity: 0;  transform: translate(0, 0) scale(1); }
  12%  { opacity: .9; }
  100% { opacity: 0;  transform: translate(-14px, -74px) scale(.4); }
}

/* Smoke wisps — fade out by dawn */
.dm-smoke path {
  fill: none;
  stroke: rgba(210,222,236,.16);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 40 200;
  animation: smokeFlow 6s linear infinite;
}
.dm-smoke path.sm-2 { animation-delay: -2s; stroke-width: 2.4; }
.dm-smoke { opacity: calc((1 - var(--cin-day)) * .9); }
@keyframes smokeFlow {
  from { stroke-dashoffset: 240; }
  to   { stroke-dashoffset: 0; }
}

/* Drifting mist bands */
.hero-mist {
  position: absolute;
  left: -12%;
  width: 124%;
  height: 90px;
  border-radius: 50%;
  filter: blur(26px);
  background: linear-gradient(90deg,
    transparent, rgba(178,196,214,.16) 30%, rgba(178,196,214,.22) 55%, transparent);
  pointer-events: none;
  opacity: calc(.5 + (1 - var(--cin-day)) * .5);
}
.hero-mist-1 { bottom: 17%; animation: mistDrift 26s ease-in-out infinite alternate; }
.hero-mist-2 { bottom: 9%; height: 70px; animation: mistDrift 34s ease-in-out infinite alternate-reverse; }
@keyframes mistDrift {
  from { transform: translateX(-4%); }
  to   { transform: translateX(5%); }
}

/* — Hero content — */
.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  text-align: center;
  padding: clamp(5.5rem, 14vh, 8rem) 1.25rem clamp(11rem, 26vh, 15rem);
  max-width: 880px;
  margin-inline: auto;
  will-change: transform, opacity;
}
.hero-logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--starlight);
  margin-bottom: clamp(1.4rem, 4vh, 2.4rem);
  user-select: none;
}
.hero-logo .hero-logo-icon { font-size: 1.5rem; filter: drop-shadow(0 0 14px rgba(255,158,44,.45)); }
.hero h1 {
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  font-weight: 900;
  color: var(--starlight);
  text-shadow: 0 2px 30px rgba(5,10,20,.45);
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--dawn-peach);
}
.hero-lede {
  margin: 1.4rem auto 0;
  max-width: 620px;
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.7;
  color: var(--mist);
}
.hero-lede strong { color: var(--starlight); font-weight: 600; }
.hero-ctas {
  margin-top: 2.2rem;
  display: flex;
  gap: .9rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero {
  font-size: 1.05rem;
  padding: 1rem 2rem;
  border-radius: 999px;
}
.btn-ghost-dark {
  background: rgba(238,243,250,.07);
  border-color: rgba(238,243,250,.28);
  color: var(--starlight);
  border-radius: 999px;
  padding: 1rem 1.7rem;
}
.btn-ghost-dark:hover { background: rgba(238,243,250,.14); border-color: rgba(238,243,250,.5); }
.hero-micro {
  margin-top: .9rem;
  font-size: .8rem;
  color: var(--mist);
  opacity: .85;
}
.hero-chips {
  margin-top: 2.4rem;
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--starlight);
  background: rgba(16,28,48,.55);
  border: 1px solid rgba(159,176,196,.25);
  border-radius: 999px;
  padding: .45rem .95rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Word-by-word H1 rise; hero elements stagger in after the overture */
.hw {
  display: inline-block;
  opacity: 0;
  transform: translateY(.55em) rotate(1.5deg);
  animation: wordUp .75s var(--ease) forwards;
  animation-delay: var(--wd, 0s);
}
@keyframes wordUp {
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}
.hro {
  opacity: 0;
  animation: heroUp .9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Held closed while the overture curtain is up */
html.cin-armed .hw, html.cin-armed .hro { animation-play-state: paused; }

/* Scroll cue */
.hero-cue {
  position: relative;
  z-index: 2;
  justify-self: center;
  margin-bottom: clamp(1.4rem, 5vh, 2.6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mist);
}
.hero-cue .cue-arrow { animation: cueBob 1.8s ease-in-out infinite; font-size: 1rem; }
@keyframes cueBob {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50%      { transform: translateY(7px); opacity: 1; }
}

/* ═══ §6 · SCENE 02 — THE RUSH ═════════════════════════════════════════════ */
.scene-rush .scene-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1020px;
}
.scene-rush .scene-head { text-align: left; margin: 0; }
.scene-rush .kicker::after { display: none; }
.rush-fact {
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
  font-style: italic;
  color: var(--dawn-peach);
}
.rush-cal {
  background: color-mix(in srgb,
    color-mix(in oklab, var(--night-2) calc((1 - var(--cin-day)) * 100%), var(--paper)) 78%,
    transparent);
  border: 1px solid color-mix(in srgb, var(--cin-ink) 14%, transparent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.3rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.rush-cal-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: .9rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--cin-ink);
}
.rush-cal-head .rc-month { font-family: var(--font-display); font-size: .95rem; }
.rush-clock { color: var(--danger); font-variant-numeric: tabular-nums; }
.rush-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .4rem;
}
.avail-cell {
  aspect-ratio: 1;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .55s var(--ease);
  transition-delay: var(--fd, 0ms);
}
.avail-cell .cf {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: .74rem;
  font-weight: 800;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.avail-cell .cf-a {
  background: color-mix(in srgb, var(--success) 18%, transparent);
  color: #6ee7a0;
  border: 1px solid color-mix(in srgb, var(--success) 40%, transparent);
}
.avail-cell .cf-x {
  background: color-mix(in srgb, var(--danger) 16%, transparent);
  color: #f87171;
  border: 1px solid color-mix(in srgb, var(--danger) 36%, transparent);
  transform: rotateX(180deg);
}
.scene-rush.fx-on .avail-cell { transform: rotateX(180deg); }
.rush-note {
  margin-top: .95rem;
  font-size: .78rem;
  color: var(--cin-ink-soft);
  text-align: center;
}

/* ═══ §7 · SCENE 03 — THE LONG WATCH ═══════════════════════════════════════ */
.watch-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  max-width: 1020px;
  margin-inline: auto;
}
.watch-connector {
  position: absolute;
  top: 44px;
  left: 12%;
  width: 76%;
  height: 60px;
  pointer-events: none;
}
.watch-connector path {
  fill: none;
  stroke: color-mix(in srgb, var(--ember) 65%, transparent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 6 8;
  stroke-dashoffset: 400;
}
.scene-watch.fx-on .watch-connector path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 2.1s var(--ease) .25s;
}
.watch-step {
  position: relative;
  text-align: center;
  padding: 1.4rem 1rem 0;
}
.watch-step-num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: .8rem;
  font-weight: 800;
  font-family: var(--font-ui);
  color: var(--ember);
  border: 1.5px solid color-mix(in srgb, var(--ember) 55%, transparent);
  background: color-mix(in srgb, var(--night-2) 55%, transparent);
  margin-bottom: 1.1rem;
}
.watch-step h3 {
  font-size: 1.28rem;
  color: var(--cin-ink-strong);
  margin-bottom: .55rem;
}
.watch-step p {
  font-size: .93rem;
  color: var(--cin-ink-soft);
  line-height: 1.7;
  max-width: 300px;
  margin-inline: auto;
}
.watch-step .step-icon { font-size: 1.9rem; margin-bottom: .6rem; }

/* Radar motif on the middle step */
.radar {
  position: relative;
  width: 78px;
  height: 78px;
  margin: 0 auto .8rem;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--ember) 40%, transparent);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
}
.radar::before, .radar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--ember) 55%, transparent);
  opacity: 0;
}
.scene-watch.fx-on .radar::before { animation: ringPing 2.6s var(--ease) infinite .4s; }
.scene-watch.fx-on .radar::after  { animation: ringPing 2.6s var(--ease) infinite 1.7s; }
@keyframes ringPing {
  0%   { transform: scale(1);    opacity: .8; }
  100% { transform: scale(1.85); opacity: 0; }
}
.radar-beam {
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
    color-mix(in srgb, var(--ember) 35%, transparent) 0deg, transparent 70deg);
  opacity: 0;
}
.scene-watch.fx-on .radar-beam { opacity: 1; animation: radarSpin 3.2s linear infinite; }
@keyframes radarSpin { to { transform: rotate(360deg); } }

/* ═══ §8 · SCENE 04 — 3:47 AM (the catch — emotional peak) ═════════════════ */
.scene-alert { isolation: isolate; }
.scene-alert::before {
  /* deepest-night vignette to make the phone light land */
  content: "";
  position: absolute;
  inset: -18% 0;
  z-index: -1;
  background: radial-gradient(65% 60% at 50% 46%,
    rgba(4,8,16,.0) 0%, rgba(4,8,16,calc((1 - var(--cin-day)) * .5)) 100%);
  pointer-events: none;
}
.alert-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: .5rem;
}
.phone {
  position: relative;
  width: min(310px, 80vw);
  aspect-ratio: 9 / 18.6;
  border-radius: 44px;
  background: #04070d;
  border: 7px solid #182130;
  box-shadow: 0 36px 90px rgba(2,5,10,.6);
  overflow: hidden;
}
.phone::before {
  /* notch pill */
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 22px;
  border-radius: 999px;
  background: #182130;
  z-index: 3;
}
.phone-screen {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 21%;
  background: radial-gradient(120% 90% at 50% 0%, #0b1322 0%, #05080f 70%);
  transition: filter 1.1s var(--ease);
  filter: brightness(.62);
}
.scene-alert.fx-on .phone-screen { filter: brightness(1); }
.phone-time {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.3rem;
  letter-spacing: -.01em;
  color: #dfe7f2;
  line-height: 1;
}
.phone-date {
  margin-top: .45rem;
  font-size: .78rem;
  font-weight: 600;
  color: #6d7f96;
  letter-spacing: .06em;
}
.push-card {
  margin: 1.5rem .8rem 0;
  width: calc(100% - 1.6rem);
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  background: rgba(30,40,58,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(159,176,196,.16);
  border-radius: 18px;
  padding: .8rem .85rem;
  text-align: left;
  opacity: 0;
  transform: translateY(-30px) scale(.94);
}
.scene-alert.fx-on .push-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity .55s var(--ease) .5s,
    transform .65s var(--ease-spring) .5s;
}
.push-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 1.05rem;
  background: linear-gradient(160deg, var(--forest), var(--pine));
}
.push-body { min-width: 0; }
.push-top {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .68rem;
  font-weight: 700;
  color: #93a5bd;
  letter-spacing: .04em;
}
.push-top .push-app { color: #dfe7f2; }
.push-live {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  color: #6ee7a0;
  text-transform: uppercase;
  font-size: .6rem;
  letter-spacing: .1em;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(52,211,153,.55); }
  60%      { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}
.push-time { margin-left: auto; color: #6d7f96; }
.push-msg {
  margin-top: .3rem;
  font-size: .8rem;
  line-height: 1.5;
  color: #cfdaea;
}
.push-msg strong { color: #fff; }
.push-cta {
  display: inline-block;
  margin-top: .4rem;
  font-size: .76rem;
  font-weight: 700;
  color: var(--ember);
}

/* Warm light spilling from the phone when the alert lands */
.phone-glow {
  position: absolute;
  left: 50%;
  bottom: -6%;
  width: 130%;
  height: 46%;
  transform: translateX(-50%);
  background: radial-gradient(50% 60% at 50% 100%,
    rgba(255,158,44,.32) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 1.2s var(--ease) .6s;
  pointer-events: none;
  z-index: -1;
}
.scene-alert.fx-on .phone-glow { opacity: 1; }

/* The email card stacks in beside/behind the phone */
.email-card {
  position: relative;
  z-index: 2;
  width: min(400px, 92vw);
  margin-top: -3.4rem;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.15rem;
  text-align: left;
  opacity: 0;
  transform: translateY(28px) rotate(1.2deg);
}
.scene-alert.fx-on .email-card {
  opacity: 1;
  transform: translateY(0) rotate(-1deg);
  transition:
    opacity .6s var(--ease) 1.25s,
    transform .7s var(--ease-spring) 1.25s;
}
.email-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  color: var(--ink-soft);
  margin-bottom: .35rem;
}
.email-chip {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--starlight);
  font-size: .8rem;
}
.email-subject { font-weight: 700; font-size: .92rem; color: var(--ink); }
.email-preview { font-size: .82rem; color: var(--ink-soft); margin-top: .25rem; }
.email-preview a { color: var(--ember-deep); font-weight: 700; text-decoration: none; }
.alert-foot {
  margin-top: 2.2rem;
  text-align: center;
  font-size: .84rem;
  color: var(--cin-ink-soft);
}

/* ═══ §9 · SCENE 05 — FIRST LIGHT (Pro features) ═══════════════════════════ */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  max-width: 1120px;
  margin-inline: auto;
}
/* Cards ride the most saturated dawn band (day ≈ .35–.6), where the sky-paced
   --cin-ink is mid-gray mush. --fday accelerates their day clock so the cards
   commit to the light look early and keep text high-contrast. */
.scene-pro { --fday: min(calc(var(--cin-day) * 1.7), 1); }
.feat-card {
  position: relative;
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem 1.5rem;
  background: color-mix(in srgb,
    color-mix(in oklab, var(--night-2) calc((1 - var(--fday)) * 100%), var(--paper)) 92%,
    transparent);
  border: 1px solid color-mix(in srgb, var(--cin-ink) 13%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.feat-card h3 {
  font-size: 1.06rem;
  color: color-mix(in oklab, var(--starlight) calc((1 - var(--fday)) * 100%), var(--forest));
  margin-bottom: .4rem;
}
.feat-card p {
  font-size: .85rem;
  line-height: 1.65;
  color: color-mix(in oklab, var(--mist) calc((1 - var(--fday)) * 100%), var(--ink-soft));
}
.pro-pill {
  position: absolute;
  top: .9rem;
  right: .9rem;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: #2b1500;
  background: linear-gradient(180deg, var(--ember), var(--ember-deep));
  border-radius: 999px;
  padding: .22rem .5rem;
}

/* — mini animated illustrations (play only once revealed) — */
.viz {
  height: 88px;
  margin-bottom: 1rem;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--night) calc((1 - var(--cin-day)) * 40%), transparent);
}
.feat-card .viz * { animation-play-state: paused; }
.feat-card.reveal-in .viz * { animation-play-state: running; }

/* radius watch: radar rings over map dots */
.viz-map { position: absolute; inset: 0; }
.viz-map i {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cin-ink) 45%, transparent);
}
.viz-pin {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 12px rgba(255,158,44,.7);
}
.viz-ring {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  margin: -6px;
  border-radius: 50%;
  border: 1.5px solid color-mix(in srgb, var(--ember) 70%, transparent);
  animation: vizRing 2.4s var(--ease) infinite;
}
.viz-ring.r2 { animation-delay: .8s; }
.viz-ring.r3 { animation-delay: 1.6s; }
@keyframes vizRing {
  from { transform: scale(1);   opacity: .9; }
  to   { transform: scale(6.2); opacity: 0; }
}

/* flexible dates: window sliding across a calendar strip */
.viz-cal { display: flex; gap: 4px; position: relative; padding: 4px; }
.viz-cal i {
  width: 16px;
  height: 22px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--cin-ink) 16%, transparent);
}
.viz-cal-win {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 30px;
  border: 2px solid var(--ember);
  border-radius: 7px;
  animation: vizWin 3.2s var(--ease) infinite alternate;
}
@keyframes vizWin {
  from { transform: translateX(0); }
  to   { transform: translateX(78px); }
}

/* buddy sites: two adjacent pads lighting up together */
.viz-pads { display: flex; gap: 10px; }
.viz-pad {
  width: 34px;
  height: 26px;
  border-radius: 7px;
  border: 1.5px solid color-mix(in srgb, var(--cin-ink) 30%, transparent);
  background: transparent;
  animation: padGlow 2.2s ease-in-out infinite;
}
.viz-pad.p2 { animation-delay: .12s; }
@keyframes padGlow {
  0%, 100% { background: transparent; border-color: color-mix(in srgb, var(--cin-ink) 30%, transparent); }
  45%, 65% { background: color-mix(in srgb, var(--success) 30%, transparent); border-color: var(--success); }
}

/* weekends only: Fri–Sun highlight */
.viz-week { display: flex; gap: 4px; }
.viz-week i {
  width: 15px;
  height: 24px;
  border-radius: 4px;
  display: grid;
  background: color-mix(in srgb, var(--cin-ink) 14%, transparent);
}
.viz-week i.wk { animation: wkGlow 2.6s ease-in-out infinite; }
@keyframes wkGlow {
  0%, 100% { background: color-mix(in srgb, var(--cin-ink) 14%, transparent); }
  50%      { background: color-mix(in srgb, var(--ember) 65%, transparent); }
}

/* Count-up stats strip */
.stats-strip {
  margin: 4rem auto 0;
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 7vw, 5rem);
  flex-wrap: wrap;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  /* fday-paced ink (see .scene-pro) — the sky-paced ink is unreadable mid-dawn */
  color: color-mix(in oklab, var(--starlight) calc((1 - var(--fday, var(--cin-day))) * 100%), var(--forest));
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 12px color-mix(in srgb, var(--night) calc((1 - var(--fday, var(--cin-day))) * 40%), transparent);
}
.stat-label {
  margin-top: .3rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--mist) calc((1 - var(--fday, var(--cin-day))) * 100%), var(--ink-soft));
}

/* ═══ §10 · SCENE 06 — PRICING AT DAWN ═════════════════════════════════════ */
.scene-pricing { padding-bottom: clamp(4rem, 9vh, 7rem); }
.scene-pricing::before {
  /* soft cream veil so pricing copy stays crisp during the sky handoff */
  content: "";
  position: absolute;
  inset: 6% 0 0;
  z-index: -1;
  background: radial-gradient(80% 70% at 50% 46%,
    color-mix(in srgb, var(--day-cream) calc(var(--cin-day) * 34%), transparent) 0%,
    transparent 75%);
  pointer-events: none;
}
#pricing.pricing-compact { padding-block: 2.2rem; }
#pro-member-bar { font-size: .92rem; color: var(--cin-ink-soft); }
#pro-member-bar span:first-child, #pro-member-bar strong { color: var(--cin-ink-strong); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  justify-content: center;
  gap: 1.6rem;
  perspective: 1100px;
}
.pricing-card {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.9rem 1.9rem;
  box-shadow: var(--shadow-lg);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition: box-shadow var(--t-med) var(--ease);
}
.pricing-plan {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pricing-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  color: var(--forest);
  margin: .5rem 0 1.1rem;
  line-height: 1;
}
.pricing-price span {
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  font-size: .92rem;
  line-height: 2.05;
  color: var(--ink);
}
.pricing-note { font-size: .8rem; color: var(--ink-soft); }
.pricing-cta { width: 100%; }
.pricing-card-pro {
  border: 1.5px solid color-mix(in srgb, var(--ember) 60%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--ember) 22%, transparent),
    0 22px 70px rgba(224,123,0,.16),
    var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--ember), var(--ember-deep));
  color: #2b1500;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .35rem .95rem;
  box-shadow: 0 6px 18px rgba(255,158,44,.4);
}
.pricing-trust {
  margin-top: 2rem;
  text-align: center;
  font-size: .8rem;
  color: var(--cin-ink-soft);
}
.pricing-trust b { color: var(--cin-ink); font-weight: 700; }

/* FAQ — native details, styled */
.faq {
  max-width: 700px;
  margin: 4rem auto 0;
}
.faq-title {
  text-align: center;
  font-size: clamp(1.4rem, 2.6vw, 1.8rem);
  color: var(--cin-ink-strong);
  margin-bottom: 1.4rem;
}
.faq-item {
  background: color-mix(in srgb,
    color-mix(in oklab, var(--night-2) calc((1 - var(--cin-day)) * 100%), var(--paper)) 82%,
    transparent);
  border: 1px solid color-mix(in srgb, var(--cin-ink) 13%, transparent);
  border-radius: var(--radius-sm);
  margin-bottom: .6rem;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .95rem 1.15rem;
  font-weight: 600;
  font-size: .94rem;
  color: var(--cin-ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "▾";
  margin-left: auto;
  color: var(--ember);
  transition: transform var(--t-med) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p {
  padding: 0 1.15rem 1rem;
  font-size: .88rem;
  line-height: 1.7;
  color: var(--cin-ink-soft);
}

/* ═══ §11 · SCENE 07 — MORNING (the app region wrapper) ════════════════════ */
.scene-morning-head { padding-top: clamp(4rem, 9vh, 7rem); }
main.app-shell {
  position: relative;
  padding-bottom: clamp(3rem, 8vh, 5rem);
}
main.app-shell > section { margin-bottom: 1.8rem; }

/* ═══ §12 · SCENE 08 — DAYBREAK (footer) ═══════════════════════════════════ */
.site-footer {
  position: relative;
  margin-top: clamp(2rem, 6vh, 4rem);
}
.foot-scene {
  position: relative;
  overflow: hidden;
}
.foot-payoff {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(3rem, 8vh, 5rem) 1.25rem clamp(9rem, 22vh, 13rem);
  max-width: 720px;
  margin-inline: auto;
}
.foot-payoff h2 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 900;
  color: var(--forest);
}
.foot-payoff h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--ember-deep);
}
.foot-payoff p {
  margin: 1rem auto 1.8rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 480px;
}
.foot-sun {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: clamp(150px, 22vw, 260px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #fff6dc 0%, #ffd98f 46%, var(--ember) 100%);
  box-shadow:
    0 0 70px 26px rgba(255,180,110,.5),
    0 0 220px 110px rgba(255,158,44,.18);
  animation: sunGlow 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sunGlow {
  0%, 100% { box-shadow: 0 0 70px 26px rgba(255,180,110,.5), 0 0 220px 110px rgba(255,158,44,.18); }
  50%      { box-shadow: 0 0 90px 34px rgba(255,180,110,.62), 0 0 260px 130px rgba(255,158,44,.24); }
}
.foot-ridges {
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: clamp(110px, 18vw, 190px);
  pointer-events: none;
}
.foot-ridges svg { width: 100%; height: 100%; }
.fr-far  { fill: #7fa389; }
.fr-mid  { fill: #3f6a50; }
.fr-near { fill: var(--forest); }
.foot-bird {
  position: absolute;
  width: 26px;
  height: 12px;
  opacity: 0;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .foot-bird { opacity: 1; animation: birdGlide 17s linear infinite; }
  .foot-bird.b2 { animation-delay: -8s; top: 26%; }
  .foot-bird.b1 { top: 18%; }
}
@keyframes birdGlide {
  0%   { transform: translate(-8vw, 20px) scale(.8); }
  50%  { transform: translate(50vw, -16px) scale(1); }
  100% { transform: translate(108vw, 8px) scale(.85); }
}
.foot-meta {
  position: relative;
  z-index: 2;
  background: var(--pine);
  color: var(--mist);
  padding: 1.7rem 1.25rem 1.9rem;
  text-align: center;
  font-size: .82rem;
}
.foot-meta .foot-brand {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--starlight);
  margin-bottom: .4rem;
}
.foot-meta a { color: var(--dawn-peach); text-decoration: none; }
.foot-meta a:hover { text-decoration: underline; }
.foot-links { margin-bottom: .5rem; }
.foot-sep { margin: 0 .5rem; opacity: .5; }
.foot-copy { opacity: .75; }

/* ═══ §13 · OVERTURE (first-visit star-wipe, ≤1s, skippable) ═══════════════ */
.cin-overture {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: grid;
  place-items: center;
  background:
    radial-gradient(1.5px 1.5px at 12% 20%, rgba(255,255,255,.9) 50%, transparent 51%),
    radial-gradient(1px 1px at 32% 64%, rgba(255,255,255,.7) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 58% 32%, rgba(255,255,255,.85) 50%, transparent 51%),
    radial-gradient(1px 1px at 74% 70%, rgba(255,255,255,.6) 50%, transparent 51%),
    radial-gradient(2px 2px at 86% 18%, rgba(255,255,255,.9) 50%, transparent 51%),
    radial-gradient(1px 1px at 44% 84%, rgba(255,255,255,.6) 50%, transparent 51%),
    linear-gradient(180deg, var(--night) 0%, var(--night-2) 62%, var(--indigo) 100%);
  transition: transform .72s var(--ease), opacity .72s var(--ease);
  will-change: transform, opacity;
}
.cin-overture.lift { transform: translateY(-101%); opacity: .6; }
.ov-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 700;
  color: var(--starlight);
  animation: ovIn .7s var(--ease);
}
.ov-mark .ov-tent { font-size: 2.4rem; filter: drop-shadow(0 0 18px rgba(255,158,44,.55)); }
.ov-line {
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--ember), transparent);
  animation: ovLine .8s var(--ease) .15s forwards;
}
@keyframes ovIn { from { opacity: 0; transform: translateY(14px) scale(.97); } }
@keyframes ovLine { to { width: 130px; } }
.ov-skip {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mist);
  opacity: .7;
}

/* ═══ §14 · RESPONSIVE ═════════════════════════════════════════════════════ */
@media (max-width: 980px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .scene-rush .scene-inner { grid-template-columns: 1fr; }
  .scene-rush .scene-head { text-align: center; margin-inline: auto; }
  .scene-rush .kicker::after { display: block; }
  .rush-cal { max-width: 470px; margin-inline: auto; }
}
@media (max-width: 760px) {
  .pricing-cards { grid-template-columns: minmax(0, 430px); }
  .watch-steps { grid-template-columns: 1fr; gap: 2.2rem; max-width: 420px; }
  .watch-connector { display: none; }
}
@media (max-width: 640px) {
  .scene { padding-inline: 1rem; }
  .feat-grid { grid-template-columns: 1fr; max-width: 430px; margin-inline: auto; }
  .hero-content { padding-bottom: clamp(8rem, 20vh, 11rem); }
  .hero-chips { gap: .45rem; }
  .chip { font-size: .72rem; padding: .38rem .75rem; }
  .email-card { margin-top: -2.4rem; }
  .stats-strip { gap: 1.6rem 2.4rem; }
  .rush-grid { gap: .3rem; }
}
@media (max-width: 400px) {
  .hero h1 { font-size: 2.25rem; }
  .btn-hero { padding: .9rem 1.5rem; font-size: .98rem; }
  .phone { width: min(270px, 84vw); }
}

/* ═══ §15 · REDUCED MOTION — a still, legible golden hour ══════════════════ */
@media (prefers-reduced-motion: reduce) {
  :root {
    --sky-night: 0;
    --sky-dawn: .8;
    --sky-day: .55;
    --cin-bloom: .18;
    --moon-o: 0;
    --sun-x: 50; --sun-y: 74; --sun-o: .85;
  }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .top-nav { transform: none; }
  .hero-canvas { display: none; }
  .hw, .hro { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; clip-path: none; }
  .scene-title.reveal { clip-path: none; transform: none; }
  .avail-cell { transform: rotateX(180deg); }
  .push-card, .email-card { opacity: 1; transform: none; }
  .phone-screen { filter: brightness(1); }
  .phone-glow { opacity: .8; }
  .watch-connector path { stroke-dashoffset: 0; }
  .radar-beam { opacity: .5; }
  .viz-cal-win { transform: translateX(39px); }
  .hero-content { transform: none !important; opacity: 1 !important; }
  .cin-overture { display: none; }
  .foot-bird { display: none; }
}
