/* ============================================================
   POMODEV — PREMIUM CINEMATIC LANDING
   Palette: warm, physical, editorial. No AI-gradient clichés.
   ink / bone / tomato / ember / clay / sage
   ============================================================ */

/* ---------- 1. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, video, canvas { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- 2. TOKENS ---------- */
:root {
  /* warm ink scale */
  --ink-950: #070605;
  --ink-900: #0B0A09;
  --ink-850: #100E0C;
  --ink-800: #16130F;
  --ink-700: #1E1A16;
  --ink-600: #2A241E;
  --ink-500: #392F27;

  /* bone / paper */
  --bone: #F4EFE8;
  --bone-2: #DED5C9;
  --muted: #8E8377;
  --muted-2: #6A6157;

  /* real-world accents */
  --tomato: #DF4526;
  --tomato-lit: #FF5C36;
  --tomato-deep: #A32E17;
  --ember: #E8913C;
  --sage: #7E8C63;
  --clay: #B4643F;

  --line: rgba(244, 239, 232, 0.09);
  --line-2: rgba(244, 239, 232, 0.16);
  --surface: rgba(244, 239, 232, 0.028);
  --surface-2: rgba(244, 239, 232, 0.05);

  --shadow-lift: 0 40px 80px -30px rgba(0,0,0,.85), 0 2px 0 rgba(244,239,232,.05) inset;

  --font-sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --pad: clamp(20px, 5vw, 72px);
  --maxw: 1320px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.65, .05, .36, 1);

  --nav-h: 76px;
  color-scheme: dark;
}

[data-theme="light"] {
  --ink-950: #FFFFFF;
  --ink-900: #F7F3EC;
  --ink-850: #F2EDE5;
  --ink-800: #EDE7DD;
  --ink-700: #E4DCCF;
  --ink-600: #D8CEBE;
  --ink-500: #C6BAA7;

  --bone: #16120E;
  --bone-2: #3A332B;
  --muted: #6E6459;
  --muted-2: #8A7F72;

  --tomato: #C93A1D;
  --tomato-lit: #E24A28;
  --tomato-deep: #8C2712;

  --line: rgba(22, 18, 14, 0.10);
  --line-2: rgba(22, 18, 14, 0.18);
  --surface: rgba(22, 18, 14, 0.028);
  --surface-2: rgba(22, 18, 14, 0.05);
  --shadow-lift: 0 40px 70px -34px rgba(60, 44, 30, .30), 0 1px 0 rgba(255,255,255,.7) inset;
  color-scheme: light;
}

/* ---------- 3. BASE ---------- */
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }

body.pv {
  font-family: var(--font-sans);
  background: var(--ink-900);
  color: var(--bone);
  margin: 0;
  text-align: left;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis-weight: none;
  letter-spacing: -0.011em;
  transition: background-color .7s var(--ease), color .7s var(--ease);
}
body.pv.is-locked { overflow: hidden; height: 100vh; }

::selection { background: var(--tomato); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.wrap-wide { width: 100%; max-width: 1660px; margin-inline: auto; padding-inline: var(--pad); }

/* ---------- 4. FILM GRAIN + VIGNETTE ---------- */
.pv-grain {
  position: fixed; inset: -120%;
  z-index: 9998; pointer-events: none;
  opacity: .30; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  animation: grainShift 700ms steps(3) infinite;
  will-change: transform;
}
[data-theme="light"] .pv-grain { opacity: .16; mix-blend-mode: multiply; }
@keyframes grainShift {
  0%   { transform: translate3d(0,0,0); }
  33%  { transform: translate3d(-2%, 1.5%, 0); }
  66%  { transform: translate3d(1.5%, -2%, 0); }
  100% { transform: translate3d(0,0,0); }
}
.pv-vignette {
  position: fixed; inset: 0; z-index: 9997; pointer-events: none;
  background: radial-gradient(130% 100% at 50% 40%, transparent 45%, rgba(0,0,0,.55) 100%);
}
[data-theme="light"] .pv-vignette { background: radial-gradient(130% 100% at 50% 40%, transparent 55%, rgba(90,70,50,.14) 100%); }

/* ---------- 5. PRELOADER ---------- */
.pv-loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink-950);
  display: grid; grid-template-rows: 1fr auto;
  padding: var(--pad);
  transition: opacity .5s ease;
}
.pv-loader__core { display: grid; place-content: center; gap: 26px; justify-items: center; }
.pv-loader__mark {
  width: 74px; height: 74px; position: relative;
}
.pv-loader__mark svg { width: 100%; height: 100%; overflow: visible; }
.pv-loader__ring { fill: none; stroke: var(--ink-600); stroke-width: 2; }
.pv-loader__prog {
  fill: none; stroke: var(--tomato); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 213; stroke-dashoffset: 213;
  transform: rotate(-90deg); transform-origin: center;
  filter: drop-shadow(0 0 12px rgba(223,69,38,.55));
}
.pv-loader__word {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--muted-2);
  overflow: hidden;
}
.pv-loader__bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.pv-loader__num {
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(58px, 13vw, 170px); line-height: .82;
  letter-spacing: -0.05em; color: var(--bone);
  font-variant-numeric: tabular-nums;
}
.pv-loader__num sup { font-size: .26em; vertical-align: super; color: var(--muted-2); margin-left: .12em; }
.pv-loader__meta { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); text-align: right; line-height: 2; }
.pv-loader__bar { position: absolute; left: 0; bottom: 0; height: 2px; width: 0%; background: var(--tomato); }

.pv-curtain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  display: grid; grid-template-columns: repeat(6, 1fr);
}
.pv-curtain span { background: var(--ink-950); transform-origin: top; }

/* ---------- 7. SCROLL PROGRESS ---------- */
.pv-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  z-index: 9995; transform-origin: 0 50%; transform: scaleX(0);
  background: linear-gradient(90deg, var(--tomato-deep), var(--tomato), var(--ember));
}

/* ---------- 8. NAV ---------- */
.pv-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: transform .55s var(--ease), background-color .45s var(--ease), border-color .45s;
  border-bottom: 1px solid transparent;
}
.pv-nav.is-stuck {
  background: color-mix(in srgb, var(--ink-900) 78%, transparent);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border-bottom-color: var(--line);
}
.pv-nav.is-hidden { transform: translateY(-102%); }
.pv-nav__inner { width: 100%; max-width: 1660px; margin-inline: auto; padding-inline: var(--pad); display: flex; align-items: center; gap: 20px; }

.pv-brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.pv-brand__dot {
  width: 62px; height: 62px; object-fit: contain; flex: none;
  filter: drop-shadow(0 4px 14px rgba(223,69,38,.55));
  transition: transform .5s var(--ease);
}
@media (max-width: 640px) { .pv-brand__dot { width: 48px; height: 48px; } }
.pv-brand:hover .pv-brand__dot { transform: rotate(-6deg) scale(1.08); }
.pv-brand__name { font-weight: 600; font-size: 17.5px; letter-spacing: -0.03em; }

.pv-nav__links { display: flex; gap: 4px; }
.pv-nav__link {
  position: relative; padding: 9px 15px; border-radius: 999px;
  font-size: 14px; font-weight: 450; color: var(--muted);
  transition: color .3s var(--ease);
  overflow: hidden;
}
.pv-nav__link span { position: relative; z-index: 1; display: block; }
.pv-nav__link::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  background: var(--surface-2); transform: scale(.7); opacity: 0;
  transition: transform .42s var(--ease), opacity .42s var(--ease);
}
.pv-nav__link:hover { color: var(--bone); }
.pv-nav__link:hover::before { transform: scale(1); opacity: 1; }

.pv-nav__right { display: flex; align-items: center; gap: 10px; }
.pv-iconbtn {
  width: 38px; height: 38px; border-radius: 999px; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted);
  transition: color .3s, border-color .3s, transform .3s var(--ease), background-color .3s;
}
.pv-iconbtn:hover { color: var(--bone); border-color: var(--line-2); background: var(--surface); transform: translateY(-2px); }
.pv-iconbtn svg { width: 16px; height: 16px; }
.pv-sun { display: none; } [data-theme="light"] .pv-sun { display: block; }
[data-theme="light"] .pv-moon { display: none; }

.pv-burger { display: none; width: 40px; height: 40px; border-radius: 999px; border: 1px solid var(--line); place-items: center; }
.pv-burger i { display: block; width: 16px; height: 1.5px; background: var(--bone); position: relative; transition: transform .4s var(--ease); }
.pv-burger i::before, .pv-burger i::after { content: ""; position: absolute; left: 0; width: 16px; height: 1.5px; background: var(--bone); transition: transform .4s var(--ease); }
.pv-burger i::before { top: -5px; } .pv-burger i::after { top: 5px; }
body.nav-open .pv-burger i { background: transparent; }
body.nav-open .pv-burger i::before { transform: translateY(5px) rotate(45deg); }
body.nav-open .pv-burger i::after { transform: translateY(-5px) rotate(-45deg); }

/* mobile drawer */
.pv-drawer {
  position: fixed; inset: 0; z-index: 890; background: var(--ink-950);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: var(--pad);
  clip-path: inset(0 0 100% 0); transition: clip-path .8s var(--ease);
}
body.nav-open .pv-drawer { clip-path: inset(0 0 0% 0); }
.pv-drawer a {
  font-size: clamp(30px, 9vw, 54px); font-weight: 500; letter-spacing: -0.045em; line-height: 1.16;
  opacity: 0; transform: translateY(30px); transition: opacity .6s var(--ease), transform .6s var(--ease);
}
body.nav-open .pv-drawer a { opacity: 1; transform: none; }
body.nav-open .pv-drawer a:nth-child(1) { transition-delay: .16s; }
body.nav-open .pv-drawer a:nth-child(2) { transition-delay: .22s; }
body.nav-open .pv-drawer a:nth-child(3) { transition-delay: .28s; }
body.nav-open .pv-drawer a:nth-child(4) { transition-delay: .34s; }
body.nav-open .pv-drawer a:nth-child(5) { transition-delay: .40s; }

/* ---------- 9. BUTTONS ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 30px; border-radius: 999px;
  font-size: 15px; font-weight: 550; letter-spacing: -0.015em;
  overflow: hidden; isolation: isolate; white-space: nowrap;
  transition: transform .5s var(--ease), color .35s var(--ease), border-color .35s;
  will-change: transform;
}
.btn__t { position: relative; z-index: 2; display: block; }
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  border-radius: inherit; transform: translateY(101%);
  transition: transform .58s var(--ease);
}
.btn:hover::before { transform: translateY(0); }

.btn--tomato {
  background: var(--tomato); color: #fff;
  box-shadow: 0 14px 34px -14px rgba(223,69,38,.75), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn--tomato::before { background: var(--ink-950); }
[data-theme="light"] .btn--tomato::before { background: var(--ink-950); }
.btn--tomato:hover { color: var(--bone); }
[data-theme="light"] .btn--tomato:hover { color: #F4EFE8; }

.btn--ghost { border: 1px solid var(--line-2); color: var(--bone); }
.btn--ghost::before { background: var(--bone); }
.btn--ghost:hover { color: var(--ink-900); border-color: var(--bone); }

.btn--lg { height: 62px; padding: 0 38px; font-size: 16px; }
.btn__arrow { transition: transform .5s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- 10. TYPE / REVEAL PRIMITIVES ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--muted);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--tomato); flex: none;
  transform: scaleX(0); transform-origin: left; transition: transform .8s var(--ease) .1s;
}
.is-in .eyebrow::before, .eyebrow.is-in::before { transform: scaleX(1); }

.h-display {
  font-weight: 500; letter-spacing: -0.052em; line-height: .95;
  font-size: clamp(42px, min(6.6vw, 9.2vh), 108px);
}
.h1 { font-weight: 500; letter-spacing: -0.045em; line-height: 1.0; font-size: clamp(38px, 5.6vw, 82px); }
.h2 { font-weight: 550; letter-spacing: -0.035em; line-height: 1.1; font-size: clamp(26px, 2.7vw, 38px); }
.h3 { font-weight: 550; letter-spacing: -0.025em; line-height: 1.25; font-size: clamp(18px, 1.5vw, 21px); }
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.02em; }
.tint { color: var(--tomato); }
.lead { font-size: clamp(16px, 1.35vw, 19.5px); line-height: 1.62; color: var(--muted); font-weight: 400; letter-spacing: -0.005em; }
.body { font-size: 15.5px; line-height: 1.68; color: var(--muted); }
.mono-s { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); }

/* split text */
.st-line { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.st-w { display: inline-block; transform: translate3d(0, 108%, 0) rotate(3.2deg); will-change: transform; }
.is-in .st-w { animation: stIn .95s var(--ease) forwards; }
@keyframes stIn { to { transform: translate3d(0,0,0) rotate(0); } }

.st-ch { display: inline-block; opacity: 0; transform: translate3d(0, 42%, 0); filter: blur(6px); }
.is-in .st-ch { animation: chIn .7s var(--ease) forwards; }
@keyframes chIn { to { opacity: 1; transform: none; filter: blur(0); } }

/* generic reveals */
[data-rv] { opacity: 0; will-change: transform, opacity; }
[data-rv="up"]    { transform: translate3d(0, 38px, 0); }
[data-rv="down"]  { transform: translate3d(0, -30px, 0); }
[data-rv="left"]  { transform: translate3d(46px, 0, 0); }
[data-rv="right"] { transform: translate3d(-46px, 0, 0); }
[data-rv="scale"] { transform: scale(.93); }
[data-rv="blur"]  { filter: blur(14px); transform: translate3d(0, 22px, 0); }
[data-rv].is-in {
  opacity: 1; transform: none; filter: none;
  transition: opacity .95s var(--ease), transform 1.05s var(--ease), filter .95s var(--ease);
}
[data-rv-clip] { clip-path: inset(0 0 100% 0); transition: clip-path 1.15s var(--ease); }
[data-rv-clip].is-in { clip-path: inset(0 0 0% 0); }

.rule { height: 1px; background: var(--line); transform: scaleX(0); transform-origin: left; transition: transform 1.3s var(--ease); }
.rule.is-in { transform: scaleX(1); }

/* section shell */
.sec { position: relative; padding-block: clamp(90px, 12vh, 170px); }
.sec-head { display: grid; gap: 22px; max-width: 780px; }
.sec-num {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .24em; color: var(--muted-2);
}

/* ---------- 11. HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: calc(var(--nav-h) + 30px); padding-bottom: 60px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55;
  will-change: transform;
}
.hero__glow--a { width: 46vw; height: 46vw; left: -8vw; top: -6vw; background: radial-gradient(circle, rgba(223,69,38,.34), transparent 66%); }
.hero__glow--b { width: 40vw; height: 40vw; right: -6vw; top: 18vh; background: radial-gradient(circle, rgba(232,145,60,.20), transparent 66%); }
.hero__glow--c { width: 34vw; height: 34vw; left: 32vw; bottom: -14vw; background: radial-gradient(circle, rgba(126,140,99,.16), transparent 66%); }
[data-theme="light"] .hero__glow { opacity: .42; }
.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero__grid {
  position: absolute; inset: 0; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 42%, #000 0%, transparent 72%);
}

.hero__inner { position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: clamp(32px, 5vw, 78px); align-items: center; }
.hero__copy { display: grid; gap: clamp(18px, 2.6vh, 30px); align-content: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; align-self: start; justify-self: start;
  padding: 7px 8px 7px 7px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface);
  font-size: 12.5px; color: var(--muted);
  backdrop-filter: blur(10px);
}
.hero__badge b { color: var(--bone); font-weight: 550; }
.hero__badge-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--tomato); color: #fff; font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 999px;
}
.pulse { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulseDot 1.7s infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__note { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }

.hero__facts { display: flex; gap: clamp(20px, 3vw, 44px); flex-wrap: wrap; padding-top: 8px; }
.fact__n { font-size: clamp(24px, 2.4vw, 34px); font-weight: 550; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; line-height: 1; }
.fact__l { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); margin-top: 8px; }

/* hero device */
.hero__stage { position: relative; display: grid; place-items: center; perspective: 1600px; }
.dial {
  position: relative; width: min(430px, 78vw); aspect-ratio: 1;
  display: grid; place-items: center;
  transform-style: preserve-3d; will-change: transform;
}
.dial__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.dial__track { fill: none; stroke: var(--line-2); stroke-width: 1.4; }
.dial__arc {
  fill: none; stroke: url(#dialGrad); stroke-width: 8; stroke-linecap: round;
  transform: rotate(-90deg); transform-origin: center;
  filter: drop-shadow(0 0 22px rgba(223,69,38,.42));
}
.dial__tick { stroke: var(--line-2); stroke-width: 1.2; }
.dial__tick--m { stroke: var(--muted-2); stroke-width: 1.6; }

.dial__glassy {
  position: absolute; inset: 10%; border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 18%, rgba(244,239,232,.07), transparent 55%);
  border: 1px solid var(--line);
  backdrop-filter: blur(3px);
}
.dial__center { position: relative; z-index: 3; display: grid; gap: 10px; justify-items: center; }
.dial__mode {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--tomato);
}
.dial__time {
  font-family: var(--font-sans); font-weight: 500;
  font-size: clamp(52px, 7.4vw, 84px); letter-spacing: -0.05em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.dial__sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted-2); }

.dial__chip {
  position: absolute; z-index: 4;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 12px;
  background: color-mix(in srgb, var(--ink-800) 82%, transparent);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  font-size: 12.5px; font-weight: 480; white-space: nowrap;
  box-shadow: var(--shadow-lift);
  will-change: transform;
}
[data-theme="light"] .dial__chip { background: rgba(255,255,255,.86); }
.dial__chip i { font-style: normal; font-size: 14px; }
.dial__chip--1 { top: 4%; left: -12%; }
.dial__chip--2 { bottom: 12%; right: -14%; }
.dial__chip--3 { bottom: -3%; left: 4%; }
.dial__chip b { color: var(--tomato); font-weight: 600; font-family: var(--font-mono); font-size: 11.5px; }

/* scroll cue */
.hero__cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; display: grid; justify-items: center; gap: 10px; }
.hero__cue span { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted-2); }
.hero__cue i { display: block; width: 1px; height: 46px; background: linear-gradient(var(--tomato), transparent); animation: cueDrop 2.1s var(--ease) infinite; }
@keyframes cueDrop { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 46% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- 12. MARQUEE ---------- */
.mq { position: relative; overflow: hidden; border-block: 1px solid var(--line); padding-block: 22px; background: var(--ink-850); }
.mq__row { display: flex; width: max-content; will-change: transform; }
.mq__set { display: flex; align-items: center; gap: clamp(28px, 4vw, 62px); padding-right: clamp(28px, 4vw, 62px); }
.mq__item { display: inline-flex; align-items: center; gap: 12px; font-size: clamp(15px, 1.5vw, 20px); font-weight: 500; letter-spacing: -0.025em; color: var(--muted); white-space: nowrap; }
.mq__item em { font-family: var(--font-serif); font-style: italic; color: var(--bone); }
.mq__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--tomato); flex: none; }
.mq::before, .mq::after { content: ""; position: absolute; top: 0; bottom: 0; width: 14vw; z-index: 2; pointer-events: none; }
.mq::before { left: 0; background: linear-gradient(90deg, var(--ink-850), transparent); }
.mq::after { right: 0; background: linear-gradient(270deg, var(--ink-850), transparent); }

/* ---------- 13. STATS STRIP ---------- */
.stats { border-bottom: 1px solid var(--line); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__cell { padding: clamp(34px, 5vw, 56px) clamp(16px, 2vw, 30px); border-left: 1px solid var(--line); position: relative; overflow: hidden; }
.stats__cell:first-child { border-left: 0; }
.stats__cell::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--tomato); transform: scaleX(0); transform-origin: left;
  transition: transform 1.4s var(--ease);
}
.stats__cell.is-in::after { transform: scaleX(1); }
.stats__n { font-size: clamp(34px, 4.6vw, 62px); font-weight: 500; letter-spacing: -0.05em; line-height: 1; font-variant-numeric: tabular-nums; }
.stats__n sub { font-size: .38em; vertical-align: baseline; color: var(--tomato); margin-left: .06em; font-weight: 550; }
.stats__l { margin-top: 14px; font-size: 13.5px; color: var(--muted); line-height: 1.45; }

/* ---------- 14. STICKY STEPS ---------- */
.steps { position: relative; }
.steps__layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(30px, 6vw, 96px); align-items: start; }
.steps__pin { position: sticky; top: calc(var(--nav-h) + 8vh); display: grid; gap: 26px; align-content: start; }
.steps__counter { display: flex; align-items: baseline; gap: 4px; font-family: var(--font-mono); color: var(--muted-2); font-size: 13px; letter-spacing: .12em; }
.steps__counter b { font-family: var(--font-sans); font-size: clamp(46px, 6vw, 76px); font-weight: 500; letter-spacing: -0.05em; color: var(--tomato); line-height: 1; }
.steps__bars { display: grid; gap: 9px; margin-top: 6px; }
.steps__bar { height: 2px; background: var(--line); position: relative; overflow: hidden; }
.steps__bar i { position: absolute; inset: 0; background: var(--tomato); transform: scaleX(0); transform-origin: left; transition: transform .6s linear; }

.steps__list { display: grid; gap: clamp(20px, 3vw, 34px); }
.step {
  position: relative; padding: clamp(26px, 3.4vw, 44px);
  border: 1px solid var(--line); border-radius: 22px;
  background: var(--surface); overflow: hidden;
  transition: border-color .6s var(--ease), background-color .6s var(--ease), transform .8s var(--ease);
  will-change: transform;
}
.step::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(700px circle at var(--mx, 50%) var(--my, 50%), rgba(223,69,38,.10), transparent 42%);
  transition: opacity .5s;
}
.step:hover::before { opacity: 1; }
.step.is-active { border-color: color-mix(in srgb, var(--tomato) 45%, transparent); background: var(--surface-2); }
.step__top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.step__idx { font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em; color: var(--tomato); }
.step__ico { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; font-size: 19px; background: var(--surface-2); border: 1px solid var(--line); }
.step h3 { margin-bottom: 12px; }
.step__viz { margin-top: 26px; height: 92px; position: relative; }

/* mini viz: bars */
.vizbars { display: flex; align-items: flex-end; gap: 6px; height: 100%; }
.vizbars i { flex: 1; background: linear-gradient(180deg, var(--tomato), var(--tomato-deep)); border-radius: 4px 4px 2px 2px; height: 12%; transition: height 1s var(--ease); opacity: .85; }
.step.is-active .vizbars i { opacity: 1; }
/* mini viz: rings */
.vizring { display: flex; gap: 8px; align-items: center; height: 100%; }
.vizring i { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--line-2); transition: all .6s var(--ease); }
.step.is-active .vizring i.on { border-color: var(--tomato); background: color-mix(in srgb, var(--tomato) 22%, transparent); box-shadow: 0 0 16px -3px var(--tomato); }
/* mini viz: line */
.vizline { width: 100%; height: 100%; }
.vizline path { fill: none; stroke: var(--tomato); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 600; stroke-dashoffset: 600; transition: stroke-dashoffset 1.6s var(--ease); }
.step.is-active .vizline path { stroke-dashoffset: 0; }
.vizline .grid-l { stroke: var(--line); stroke-width: 1; }

/* ---------- 15. SCRUB TIMER (the showpiece) ---------- */
.scrub { position: relative; height: 340vh; }
.scrub__pin { position: sticky; top: 0; height: 100svh; overflow: hidden; display: grid; place-items: center; }
.scrub__aura {
  position: absolute; width: 120vmin; height: 120vmin; border-radius: 50%;
  background: radial-gradient(circle, rgba(223,69,38,.34), rgba(232,145,60,.10) 38%, transparent 62%);
  filter: blur(58px); will-change: transform, opacity;
}
.scrub__rings { position: absolute; inset: 0; display: grid; place-items: center; }
.scrub__ring { position: absolute; border-radius: 50%; border: 1px solid color-mix(in srgb, var(--tomato) 40%, transparent); will-change: transform, opacity; }
.scrub__stage { position: relative; z-index: 3; display: grid; justify-items: center; gap: 26px; text-align: center; width: 100%; padding-inline: var(--pad); }
.scrub__label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-2); }
.scrub__clock {
  font-weight: 500; letter-spacing: -0.06em; line-height: .86;
  font-size: clamp(84px, 20vw, 300px); font-variant-numeric: tabular-nums;
  will-change: transform, opacity;
  background: linear-gradient(180deg, var(--bone) 30%, color-mix(in srgb, var(--bone) 30%, transparent) 130%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.scrub__phase { font-size: clamp(17px, 2vw, 26px); font-weight: 500; letter-spacing: -0.03em; min-height: 1.4em; }
.scrub__phase em { font-family: var(--font-serif); font-style: italic; color: var(--tomato); }
.scrub__meter { width: min(560px, 84vw); height: 3px; background: var(--line); border-radius: 999px; overflow: hidden; }
.scrub__meter i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--tomato-deep), var(--tomato), var(--ember)); border-radius: 999px; }
.scrub__legend { display: flex; gap: clamp(16px, 3vw, 40px); flex-wrap: wrap; justify-content: center; }
.scrub__leg { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); display: flex; align-items: center; gap: 8px; transition: color .4s; }
.scrub__leg i { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-500); transition: background-color .4s, box-shadow .4s; }
.scrub__leg.on { color: var(--bone); }
.scrub__leg.on i { background: var(--tomato); box-shadow: 0 0 12px var(--tomato); }
.scrub__hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 4; }

/* ---------- 16. BENTO ---------- */
.bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px, 1.2vw, 18px); margin-top: clamp(40px, 6vw, 70px); }
.card {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 22px;
  background: linear-gradient(168deg, var(--surface-2), var(--surface));
  padding: clamp(24px, 2.4vw, 34px);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .5s var(--ease), transform .7s var(--ease), box-shadow .7s var(--ease);
  transform-style: preserve-3d; will-change: transform;
  min-height: 230px;
}
.card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 50%), rgba(244,239,232,.075), transparent 40%);
  transition: opacity .5s;
}
.card:hover { border-color: var(--line-2); box-shadow: var(--shadow-lift); }
.card:hover::after { opacity: 1; }
.card__ico { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; font-size: 20px; background: var(--surface-2); border: 1px solid var(--line); flex: none; transition: transform .6s var(--ease); }
.card:hover .card__ico { transform: translateY(-3px) rotate(-6deg) scale(1.06); }
.card h3 { letter-spacing: -0.028em; }
.card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.card__tag { position: absolute; top: 18px; right: 18px; background: color-mix(in srgb, var(--tomato) 12%, transparent); backdrop-filter: blur(6px); font-family: var(--font-mono); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--tomato); border: 1px solid color-mix(in srgb, var(--tomato) 34%, transparent); padding: 4px 8px; border-radius: 999px; }
.c-6 { grid-column: span 6; } .c-4 { grid-column: span 4; } .c-8 { grid-column: span 8; } .c-3 { grid-column: span 3; } .c-12 { grid-column: span 12; }
.card--hero { min-height: 340px; justify-content: flex-end; }
.card--tomato {
  background: linear-gradient(155deg, var(--tomato), var(--tomato-deep));
  border-color: transparent; color: #fff;
}
.card--tomato p { color: rgba(255,255,255,.82); }
.card--tomato .card__ico { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.24); }

.card__spark { margin-top: auto; display: flex; align-items: flex-end; gap: 4px; height: 56px; }
.card__spark i { flex: 1; background: color-mix(in srgb, var(--tomato) 70%, transparent); border-radius: 3px; height: 20%; transition: height .9s var(--ease); }
.card--tomato .card__spark i { background: rgba(255,255,255,.5); }

.mixer { display: grid; gap: 11px; margin-top: auto; }
.mixer__row { display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 12px; }
.mixer__row span:first-child { font-size: 15px; }
.mixer__bar { height: 4px; border-radius: 999px; background: var(--line); overflow: hidden; }
.mixer__bar i { display: block; height: 100%; width: 0; border-radius: 999px; background: var(--tomato); transition: width 1.2s var(--ease); }
.mixer__val { font-family: var(--font-mono); font-size: 10px; color: var(--muted-2); }
.card--tomato .mixer__bar { background: rgba(255,255,255,.20); }
.card--tomato .mixer__bar i { background: #fff; box-shadow: 0 0 12px rgba(255,255,255,.55); }
.card--tomato .mixer__val { color: rgba(255,255,255,.78); }
.card--tomato .mixer__row span:first-child { filter: drop-shadow(0 1px 2px rgba(0,0,0,.35)); }

.keys { display: flex; gap: 7px; flex-wrap: wrap; margin-top: auto; }
.key { font-family: var(--font-mono); font-size: 10.5px; padding: 7px 11px; border-radius: 8px; border: 1px solid var(--line-2); background: var(--surface); color: var(--bone-2); box-shadow: 0 2px 0 var(--line); }

/* ---------- 17. HORIZONTAL PIN ---------- */
.hpin { position: relative; }
.hpin__track { position: sticky; top: 0; height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hpin__rail { display: flex; gap: clamp(16px, 2vw, 30px); padding-inline: var(--pad); will-change: transform; }
.hslide {
  position: relative; flex: none;
  width: min(560px, 84vw); height: min(62svh, 560px);
  border-radius: 26px; border: 1px solid var(--line); overflow: hidden;
  background: linear-gradient(170deg, var(--ink-800), var(--ink-850));
  padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; justify-content: space-between;
}
.hslide__n { font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em; color: var(--muted-2); }
.hslide__body { display: grid; gap: 14px; }
.hslide h3 { font-size: clamp(22px, 2.6vw, 34px); font-weight: 550; letter-spacing: -0.035em; line-height: 1.12; }
.hslide p { font-size: 14.5px; line-height: 1.62; color: var(--muted); max-width: 42ch; }
.hslide__art { position: absolute; inset: 0; z-index: 0; opacity: .9; pointer-events: none; }
.hslide > * { position: relative; z-index: 1; }
.hslide__glow { position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; filter: blur(70px); opacity: .45; right: -18%; bottom: -22%; }
.hslide--a .hslide__glow { background: rgba(223,69,38,.6); }
.hslide--b .hslide__glow { background: rgba(232,145,60,.45); }
.hslide--c .hslide__glow { background: rgba(126,140,99,.45); }
.hslide--d .hslide__glow { background: rgba(180,100,63,.5); }
.hpin__intro { position: absolute; top: calc(var(--nav-h) + 4vh); left: 0; right: 0; z-index: 2; pointer-events: none; }
.hpin__bar { position: absolute; left: var(--pad); right: var(--pad); bottom: 6vh; height: 2px; background: var(--line); z-index: 2; }
.hpin__bar i { display: block; height: 100%; width: 0; background: var(--tomato); }

/* ---------- 18. CHART / ANALYTICS ---------- */
.an { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(30px, 5vw, 76px); align-items: center; }
.chart {
  border: 1px solid var(--line); border-radius: 24px; padding: clamp(22px, 2.6vw, 34px);
  background: linear-gradient(168deg, var(--surface-2), transparent);
  box-shadow: var(--shadow-lift);
}
.chart__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.chart__pill { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); border: 1px solid color-mix(in srgb, var(--sage) 40%, transparent); padding: 5px 10px; border-radius: 999px; }
.chart__plot { display: grid; grid-template-columns: repeat(7, 1fr); gap: clamp(8px, 1vw, 14px); align-items: end; height: clamp(170px, 22vw, 240px); }
.bar { display: grid; gap: 10px; justify-items: center; }
.bar__stack { width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.bar__fill {
  width: 100%; border-radius: 8px 8px 4px 4px; height: 0;
  background: linear-gradient(180deg, var(--tomato-lit), var(--tomato-deep));
  transition: height 1.25s var(--ease);
  position: relative;
}
.bar--peak .bar__fill { background: linear-gradient(180deg, var(--ember), var(--tomato)); box-shadow: 0 0 30px -6px var(--ember); }
.bar__d { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; color: var(--muted-2); }
.chart__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.chart__stat b { font-size: 22px; font-weight: 550; letter-spacing: -0.035em; display: block; font-variant-numeric: tabular-nums; }
.chart__stat span { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }

.an__list { display: grid; gap: 4px; margin-top: 34px; }
.an__item { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); align-items: start; }
.an__item:last-child { border-bottom: 1px solid var(--line); }
.an__k { font-family: var(--font-mono); font-size: 11px; color: var(--tomato); letter-spacing: .16em; padding-top: 3px; }
.an__item h4 { font-size: 16px; font-weight: 550; letter-spacing: -0.02em; margin-bottom: 6px; }
.an__item p { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ---------- 19. TESTIMONIALS ---------- */
.tm { overflow: hidden; }
.tm__row { display: flex; width: max-content; gap: 16px; margin-bottom: 16px; will-change: transform; }
.tm__card {
  flex: none; width: min(400px, 80vw);
  border: 1px solid var(--line); border-radius: 20px; padding: 26px;
  background: var(--surface); display: grid; gap: 18px;
  transition: border-color .4s, background-color .4s;
}
.tm__card:hover { border-color: var(--line-2); background: var(--surface-2); }
.tm__stars { color: var(--ember); font-size: 12px; letter-spacing: 2px; }
.tm__q { font-size: 15.5px; line-height: 1.62; color: var(--bone-2); letter-spacing: -0.01em; }
.tm__who { display: flex; align-items: center; gap: 12px; }
.tm__av { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 600; color: #fff; flex: none; }
.tm__name { font-size: 13.5px; font-weight: 550; }
.tm__role { font-size: 12px; color: var(--muted-2); }

/* ---------- 20. FREE / PRICE ---------- */
.free { position: relative; overflow: hidden; }
.free__inner { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,.85fr); gap: clamp(30px, 5vw, 80px); align-items: center; }
.pricecard {
  position: relative; border-radius: 28px; padding: clamp(28px, 3.2vw, 44px);
  border: 1px solid var(--line-2); overflow: hidden;
  background: linear-gradient(165deg, var(--ink-800), var(--ink-850));
  box-shadow: var(--shadow-lift);
}
.pricecard__glow { position: absolute; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(223,69,38,.4), transparent 66%); filter: blur(60px); top: -140px; right: -110px; }
.pricecard__amount { display: flex; align-items: flex-start; gap: 6px; margin: 8px 0 6px; }
.pricecard__amount b { font-size: clamp(60px, 8vw, 104px); font-weight: 500; letter-spacing: -0.06em; line-height: .9; }
.pricecard__amount span { font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted-2); padding-top: 12px; }
.pricecard__strike { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); text-decoration: line-through; }
.pricecard ul { display: grid; gap: 13px; margin: 28px 0; }
.pricecard li { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; font-size: 14.5px; color: var(--bone-2); }
.tick { width: 18px; height: 18px; border-radius: 50%; background: color-mix(in srgb, var(--tomato) 20%, transparent); display: grid; place-items: center; margin-top: 1px; }
.tick svg { width: 10px; height: 10px; stroke: var(--tomato); }

/* ---------- 21. FAQ ---------- */
.faq { display: grid; gap: 0; margin-top: clamp(34px, 5vw, 56px); }
.q { border-top: 1px solid var(--line); }
.q:last-child { border-bottom: 1px solid var(--line); }
.q__btn { width: 100%; display: flex; align-items: center; gap: 20px; padding: clamp(20px, 2.4vw, 30px) 0; text-align: left; }
.q__n { font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); letter-spacing: .14em; flex: none; width: 30px; transition: color .4s; }
.q__t { flex: 1; font-size: clamp(16px, 1.7vw, 21px); font-weight: 500; letter-spacing: -0.025em; transition: color .4s, transform .5s var(--ease); }
.q__ico { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; position: relative; transition: background-color .4s, border-color .4s, transform .5s var(--ease); }
.q__ico::before, .q__ico::after { content: ""; position: absolute; background: var(--bone); transition: transform .45s var(--ease), background-color .4s; }
.q__ico::before { width: 11px; height: 1.5px; }
.q__ico::after { width: 1.5px; height: 11px; }
.q.open .q__ico { background: var(--tomato); border-color: var(--tomato); transform: rotate(180deg); }
.q.open .q__ico::before, .q.open .q__ico::after { background: #fff; }
.q.open .q__ico::after { transform: scaleY(0); }
.q.open .q__n { color: var(--tomato); }
.q.open .q__t { transform: translateX(4px); }
.q:hover .q__t { color: var(--bone); }
.q__panel { overflow: hidden; height: 0; transition: height .6s var(--ease); }
.q__inner { padding: 0 50px 30px 50px; font-size: 15px; line-height: 1.68; color: var(--muted); max-width: 74ch; }

/* ---------- 22. FINAL CTA ---------- */
.finale { position: relative; overflow: hidden; padding-block: clamp(110px, 18vh, 220px); text-align: center; }
.finale__bg { position: absolute; inset: 0; z-index: 0; }
.finale__orb { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 90vmin; height: 90vmin; border-radius: 50%; background: radial-gradient(circle, rgba(223,69,38,.30), transparent 62%); filter: blur(70px); will-change: transform; }
.finale__inner { position: relative; z-index: 2; display: grid; gap: 34px; justify-items: center; }
.finale h2 { font-size: clamp(42px, 9vw, 140px); font-weight: 500; letter-spacing: -0.055em; line-height: .92; }
.finale .lead { max-width: 54ch; }

/* ---------- 23. FOOTER ---------- */
.ft { border-top: 1px solid var(--line); padding-top: clamp(50px, 7vw, 80px); position: relative; overflow: hidden; }
.ft__top { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: clamp(26px, 4vw, 56px); padding-bottom: clamp(46px, 6vw, 74px); }
.ft__about { display: grid; gap: 18px; align-content: start; max-width: 38ch; }
.ft__col h5 { font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px; }
.ft__col ul { display: grid; gap: 11px; }
.ft__col a { font-size: 14px; color: var(--muted); transition: color .3s, transform .3s var(--ease); display: inline-block; }
.ft__col a:hover { color: var(--tomato); transform: translateX(3px); }
.ft__word {
  font-size: clamp(54px, 15.6vw, 268px); font-weight: 500; letter-spacing: -0.055em; line-height: .84;
  color: transparent; -webkit-text-stroke: 1px var(--line-2);
  text-align: center; user-select: none; white-space: nowrap;
  transition: -webkit-text-stroke-color .6s;
}
.ft__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; padding-block: 28px; border-top: 1px solid var(--line); margin-top: 20px; }
.ft__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.ft__legal a, .ft__copy { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.ft__legal a:hover { color: var(--bone); }

@media (min-width: 1081px) and (max-height: 900px) {
  .hero { padding-top: calc(var(--nav-h) + 12px); padding-bottom: 40px; }
  .hero__facts { display: none; }
  .dial { width: min(370px, 30vw); }
}
@media (min-width: 1081px) and (max-height: 760px) {
  .hero__badge { display: none; }
}

/* ---------- 24. RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; gap: 46px; }
  .hero__stage { order: -1; }
  .dial { width: min(340px, 72vw); }
  .dial__chip--1 { left: -4%; } .dial__chip--2 { right: -4%; }
  .steps__layout { grid-template-columns: 1fr; }
  .steps__pin { position: relative; top: 0; }
  .an { grid-template-columns: 1fr; }
  .free__inner { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__cell:nth-child(3) { border-left: 0; }
  .stats__cell:nth-child(3), .stats__cell:nth-child(4) { border-top: 1px solid var(--line); }
  .c-6, .c-4, .c-8, .c-3 { grid-column: span 12; }
  .ft__top { grid-template-columns: 1fr 1fr; }
  .ft__about { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .pv-nav__links { display: none; }
  .pv-burger { display: grid; }
  .pv-nav__right .btn { display: none; }
  .hero__cue { display: none; }
  .scrub { height: 300vh; }
}
@media (max-width: 560px) {
  :root { --nav-h: 66px; }
  .hero { padding-top: calc(var(--nav-h) + 14px); }
  .hero__inner { gap: 30px; }
  .dial { width: min(268px, 64vw); }
  .dial__chip { font-size: 11.5px; padding: 7px 11px; }
  .dial__chip--1 { left: -6%; top: 0; }
  .dial__chip--2 { right: -6%; bottom: -4%; }
  .dial__chip--3 { display: none; }
  .hero__facts { gap: 22px; }
  .btn { height: 50px; padding: 0 24px; font-size: 14.5px; }
  .q__inner { padding-left: 0; padding-right: 0; }
  .ft__top { grid-template-columns: 1fr; }
}

/* ---------- 25. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-rv], .st-w, .st-ch { opacity: 1 !important; transform: none !important; filter: none !important; }
  [data-rv-clip] { clip-path: none !important; }
  .pv-grain { display: none; }
  .scrub { height: auto; } .scrub__pin { position: relative; height: auto; padding-block: 120px; }
  .hpin__track { position: relative; height: auto; }
  .hpin__rail { flex-wrap: wrap; transform: none !important; }
}
