/* ============================================================
   MOVVIVA — design system & page styles
   Canvas: warm cream · Ink: charcoal · Accent: Movviva orange
   Display: Bricolage Grotesque · Body/UI: Inter
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  /* color */
  --cream-0: #FDFBF7;
  --cream-50: #FAF6EF;
  --cream-100: #F4EDE2;
  --cream-200: #ECE2D2;
  --peach-50: #FFF3E8;
  --peach-100: #FFE5D1;
  --orange-300: #FFA259;
  --orange-400: #FB8A33;
  --orange-500: #F87018;   /* sampled from the mark */
  --orange-600: #E85D0A;
  --orange-700: #C94F06;
  --amber-400: #FFB347;
  --ink-900: #25262B;      /* matches wordmark */
  --ink-700: #43454D;
  --ink-500: #6E6A63;
  --ink-300: #A39E94;
  --dark-bg: #211E1B;      /* warm dark, not dev-tool dark */
  --dark-card: rgba(255, 255, 255, 0.05);
  --dark-line: rgba(255, 255, 255, 0.10);
  --line: rgba(38, 34, 30, 0.10);
  --line-strong: rgba(38, 34, 30, 0.16);

  /* type */
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* shape & shadow */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --shadow-soft: 0 2px 8px rgba(38, 34, 30, 0.05), 0 16px 48px rgba(38, 34, 30, 0.07);
  --shadow-orange: 0 8px 28px rgba(248, 112, 24, 0.30);
  --shadow-card: 0 1px 2px rgba(38, 34, 30, 0.04), 0 12px 32px rgba(38, 34, 30, 0.06);

  /* layout */
  --container: 1180px;
  --nav-h: 76px;
}

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
input, select { font: inherit; }
a { color: inherit; }

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

:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 32px);
}
.container-narrow { max-width: 820px; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}
h2 { font-size: 3.2rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 650; letter-spacing: 0; line-height: 1.25; }
h2 em { font-style: normal; color: var(--orange-500); }

.kicker {
  font-size: 0.8125rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 18px;
}
.kicker-light { color: var(--orange-300); }

.section { padding-block: clamp(80px, 10vw, 136px); }
.section-alt { background: var(--cream-100); }
.section-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-sub {
  margin-top: 20px;
  font-size: 1.125rem;
  color: var(--ink-500);
  max-width: 580px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 16px 30px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
  box-shadow: inset 0 0 0 1.5px var(--line-strong);
}
.btn-ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--orange-500);
  color: var(--orange-600);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--cream-0);
  color: var(--orange-600);
  box-shadow: 0 8px 24px rgba(33, 26, 18, 0.18);
}
.btn-light:hover { transform: translateY(-2px); background: #fff; }

.btn-sm { padding: 11px 22px; font-size: 0.9375rem; }
.btn-lg { padding: 18px 34px; font-size: 1.0625rem; }
.btn-block { width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream-50) 82%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: color-mix(in srgb, var(--cream-50) 92%, transparent);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--nav-h);
}
.nav-logo img { height: 44px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}
.nav-links a:not(.btn) {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 550;
  color: var(--ink-700);
  transition: color 0.15s ease;
}
.nav-links a:not(.btn):hover { color: var(--orange-600); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta-mobile { display: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 10px;
}
.nav-burger span {
  display: block; height: 2px; width: 100%;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 178svh;
  overflow: visible;
  background: var(--cream-0);
  --hero-veil: 1;
  --hero-brand: 0;
}

.hero-pin {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      var(--cream-0) 0%,
      rgba(255, 250, 240, 0.94) 28%,
      rgba(255, 250, 240, 0.66) 43%,
      rgba(255, 250, 240, 0) 68%);
  opacity: var(--hero-veil);
  transition: opacity 0.12s linear;
}
.hero-poster, .hero-poster img, .hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-video { opacity: 0; transition: opacity 0.8s ease; }
.hero-video.is-ready { opacity: 1; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 48px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-700);
  background: color-mix(in srgb, var(--cream-0) 75%, transparent);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(248, 112, 24, 0.18);
}
.hero-title {
  font-size: 5.35rem;
  font-weight: 750;
  max-width: 12ch;
}
.hero-keep { white-space: nowrap; }
.hero-sub {
  margin-top: 26px;
  font-size: 1.2rem;
  color: var(--ink-500);
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero-micro {
  margin-top: 18px;
  font-size: 0.875rem;
  color: var(--ink-300);
  font-weight: 500;
}

.hero-scrollcue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--ink-300);
  padding: 10px;
  border-radius: 50%;
  transition: color 0.2s ease, opacity 0.4s ease;
  animation: cueBob 2.6s ease-in-out infinite;
}
.hero-scrollcue:hover { color: var(--orange-600); }
.hero-endmark {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 52%;
  width: clamp(240px, 30vw, 440px);
  height: auto;
  opacity: var(--hero-brand);
  transform: translate(-50%, -50%) scale(0.96);
  filter: drop-shadow(0 24px 42px rgba(38, 34, 30, 0.22));
  pointer-events: none;
  transition: opacity 0.12s linear, transform 0.12s linear;
}
@keyframes cueBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ---------- signature loop ---------- */
.signature-loop {
  position: relative;
  overflow: hidden;
  padding-block: 92px;
  background:
    linear-gradient(180deg, var(--cream-0), var(--cream-50));
  border-block: 1px solid var(--line);
}
.signature-loop::before {
  content: "";
  position: absolute;
  inset: 9% -8% auto auto;
  width: 54vw;
  height: 54vw;
  max-width: 720px;
  max-height: 720px;
  border: 1px solid rgba(248, 112, 24, 0.18);
  border-radius: 44% 56% 52% 48%;
  transform: rotate(-18deg);
  pointer-events: none;
}
.loop-system {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 72px;
  align-items: center;
}
.loop-intro p:not(.kicker) {
  max-width: 54ch;
  margin-top: 20px;
  color: var(--ink-500);
  font-size: 1.08rem;
}
.loop-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.loop-proof span {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 9px 16px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink-900);
}
.loop-proof span:first-child,
.loop-proof span:last-child {
  color: var(--orange-700);
  background: var(--peach-50);
  border-color: var(--peach-100);
}
.loop-orbit {
  position: relative;
  min-height: 470px;
}
.loop-ribbon {
  position: absolute;
  inset: 34px 44px;
  border: 2px solid rgba(248, 112, 24, 0.34);
  border-radius: 48% 52% 45% 55%;
  transform: rotate(-10deg);
}
.loop-ribbon::before,
.loop-ribbon::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}
.loop-ribbon::before {
  inset: 28px;
  border: 1px solid rgba(248, 112, 24, 0.14);
  transform: rotate(22deg);
}
.loop-ribbon::after {
  width: 96px;
  height: 18px;
  right: 14%;
  top: 10%;
  background: linear-gradient(90deg, transparent, var(--orange-500), transparent);
  filter: blur(2px);
  transform: rotate(26deg);
}
.loop-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 156px;
  height: 156px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 38px;
  background: rgba(253, 251, 247, 0.9);
  border: 1px solid rgba(248, 112, 24, 0.22);
  box-shadow: 0 24px 70px rgba(38, 34, 30, 0.12);
}
.loop-core img { width: 84px; height: auto; }
.loop-core span {
  position: absolute;
  bottom: 22px;
  font-size: 0.75rem;
  font-weight: 750;
  color: var(--orange-700);
}
.loop-node {
  position: absolute;
  width: 158px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(253, 251, 247, 0.92);
  padding: 14px 16px;
  box-shadow: var(--shadow-card);
}
.loop-node b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--ink-900);
}
.loop-node small {
  display: block;
  margin-top: 3px;
  color: var(--ink-500);
  font-size: 0.765rem;
  line-height: 1.35;
}
.node-plan { left: 8%; top: 12%; }
.node-train { right: 2%; top: 25%; }
.node-log { right: 16%; bottom: 8%; }
.node-progress { left: 0; bottom: 23%; border-color: rgba(248, 112, 24, 0.38); }
.loop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.loop-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(253, 251, 247, 0.82);
  padding: 26px;
  box-shadow: 0 18px 50px rgba(38, 34, 30, 0.05);
}
.loop-card span {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--orange-600);
  margin-bottom: 20px;
}
.loop-card h3 { font-size: 1.2rem; margin-bottom: 9px; }
.loop-card p { font-size: 0.9375rem; color: var(--ink-500); }
.loop-card-hot {
  background:
    radial-gradient(320px 220px at 100% 0%, rgba(255, 179, 71, 0.2), transparent 66%),
    var(--ink-900);
  border-color: var(--ink-900);
}
.loop-card-hot h3 { color: var(--cream-50); }
.loop-card-hot p { color: rgba(250, 246, 239, 0.68); }
.loop-card-hot span { color: var(--orange-300); }

/* ---------- cards & grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--cream-0);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px;
}
.card-problem h3 { margin-block: 18px 10px; }
.card-problem p { color: var(--ink-500); font-size: 0.9844rem; }
.card-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--peach-50);
  color: var(--orange-600);
}
.card-icon svg { width: 26px; height: 26px; }

.promise {
  margin-top: clamp(40px, 5vw, 64px);
  max-width: 760px;
}
.promise p {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 550;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--ink-700);
}
.promise strong { color: var(--orange-600); font-weight: 700; }

/* ---------- steps ---------- */
.steps { list-style: none; padding: 0; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr 280px;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
  padding-block: 38px;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--orange-500);
}
.step-body h3 { font-size: 1.45rem; margin-bottom: 10px; }
.step-body p { color: var(--ink-500); max-width: 52ch; }

.step-art { display: flex; justify-content: flex-end; }
.chip-stack { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-700);
  background: var(--cream-0);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
}
.chip-on {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: #fff;
  box-shadow: var(--shadow-orange);
}

.mini-row {
  display: flex; align-items: center; gap: 14px;
  background: var(--cream-0);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
}
.mini-play {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--peach-100);
  color: var(--orange-600);
}
.mini-play svg { width: 17px; height: 17px; margin-left: 2px; }
.mini-lines b { display: block; font-size: 0.9375rem; color: var(--ink-900); }
.mini-lines span { font-size: 0.8125rem; color: var(--ink-500); }

.mini-log {
  display: flex; align-items: center; gap: 14px;
  background: var(--cream-0);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  font-weight: 650;
  color: var(--ink-900);
}
.mini-log .rpe {
  font-size: 0.8125rem;
  background: var(--peach-100);
  color: var(--orange-700);
  border-radius: 999px;
  padding: 4px 12px;
}
.mini-log .tick { color: var(--orange-500); font-size: 1.1rem; }

.mini-reco {
  display: flex; align-items: center; gap: 12px;
  background: var(--ink-900);
  color: var(--cream-50);
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-card);
  font-size: 0.9375rem;
}
.mini-reco svg { width: 20px; height: 20px; color: var(--orange-400); flex: none; }
.mini-reco b { color: var(--orange-300); }

/* ---------- progression engine (dark) ---------- */
.section-dark {
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(248, 112, 24, 0.16), transparent 60%),
    radial-gradient(700px 420px at -8% 110%, rgba(248, 112, 24, 0.10), transparent 60%),
    var(--dark-bg);
}
.section-dark h2 { color: var(--cream-50); }
.section-dark .section-sub { color: rgba(250, 246, 239, 0.62); }

.engine-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: 20px;
  margin-bottom: 22px;
}
.engine-reason,
.restart-card {
  border: 1px solid var(--dark-line);
  border-radius: var(--r-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  padding: 30px;
}
.engine-reason {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 28px 80px rgba(0,0,0,.16);
}
.engine-label,
.restart-badge {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(248, 112, 24, 0.16);
  color: var(--orange-300);
  border: 1px solid rgba(248, 112, 24, 0.24);
  padding: 7px 12px;
  font-size: 0.75rem;
  font-weight: 750;
}
.engine-reason h3,
.restart-card h3 {
  margin-top: 18px;
  color: var(--cream-50);
  font-size: 1.65rem;
}
.reason-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}
.reason-lines div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--dark-line);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
}
.reason-lines span {
  color: rgba(250, 246, 239, 0.48);
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.reason-lines b {
  color: rgba(250, 246, 239, 0.86);
  font-size: 0.95rem;
}
.reason-note,
.restart-card p {
  margin-top: 18px;
  color: rgba(250, 246, 239, 0.66);
  font-size: 0.95rem;
}
.restart-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 28px;
}
.restart-scale i {
  height: 8px;
  border-radius: 999px;
  background: rgba(250, 246, 239, 0.14);
}
.restart-scale .on {
  background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
  box-shadow: 0 0 22px rgba(248, 112, 24, 0.34);
}

.engine-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.engine-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-md);
  padding: 28px 28px 26px;
}
.engine-card-safety { border-color: rgba(248, 112, 24, 0.45); }
.engine-when {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(250, 246, 239, 0.55);
  margin-bottom: 14px;
}
.engine-then { display: flex; gap: 14px; align-items: flex-start; }
.engine-then svg { width: 22px; height: 22px; color: var(--orange-400); flex: none; margin-top: 3px; }
.engine-then p { color: rgba(250, 246, 239, 0.82); font-size: 1rem; }
.engine-then b { color: var(--cream-50); }

.engine-loop {
  margin-top: clamp(36px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--cream-50);
}
.engine-loop svg { width: 18px; height: 18px; color: var(--orange-500); }
.engine-loop .loop-again {
  color: rgba(250, 246, 239, 0.45);
  font-style: italic;
  font-weight: 500;
}

/* ---------- app preview phones ---------- */
.phones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  justify-content: center;
  gap: clamp(20px, 3.5vw, 40px);
  align-items: start;
}
.phone {
  background: #1D1B19;
  border-radius: 48px;
  padding: 11px;
  height: 642px;
  box-shadow: 0 2px 4px rgba(38, 34, 30, 0.12), 0 28px 64px rgba(38, 34, 30, 0.18);
}
.phone-center { transform: translateY(-18px); }
.phone-screen {
  background: var(--cream-0);
  border-radius: 38px;
  padding: 18px 18px 22px;
  height: 620px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  overflow: hidden;
}
.ph-status {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.6875rem; font-weight: 650; color: var(--ink-700);
  padding-inline: 6px;
  margin-bottom: 2px;
}
.ph-notch { width: 74px; height: 22px; background: #1D1B19; border-radius: 999px; }
.ph-date {
  font-size: 0.71875rem; font-weight: 650;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--orange-600);
}
.ph-title {
  font-family: var(--font-display);
  font-size: 1.36rem; font-weight: 700;
  color: var(--ink-900);
  letter-spacing: 0;
}
.ph-progress {
  height: 7px; border-radius: 999px;
  background: var(--cream-200);
  overflow: hidden;
}
.ph-progress i {
  display: block; height: 100%; width: var(--p, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
}
.ph-progress-label { font-size: 0.75rem; color: var(--ink-500); }

.ph-ex {
  display: flex; align-items: center; gap: 11px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 11px 12px;
  background: #fff;
}
.ph-ex-dim { opacity: 0.55; }
.ph-ex > div { flex: 1; min-width: 0; }
.ph-ex b { display: block; font-size: 0.8438rem; color: var(--ink-900); }
.ph-ex span { font-size: 0.75rem; color: var(--ink-500); }
.ph-ex em {
  font-style: normal; font-size: 0.65625rem; font-weight: 650;
  color: var(--orange-600); background: var(--peach-50);
  padding: 4px 9px; border-radius: 999px;
}
.ph-play {
  flex: none;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--peach-100);
  color: var(--orange-600);
}
.ph-play svg { width: 13px; height: 13px; margin-left: 1px; }
.ph-cta {
  margin-top: auto;
  border: 0; border-radius: 999px;
  background: var(--orange-500);
  color: #fff;
  font-weight: 650; font-size: 0.9063rem;
  padding: 14px;
  box-shadow: var(--shadow-orange);
}

.ph-video {
  position: relative;
  border-radius: 18px;
  background:
    radial-gradient(120% 160% at 80% 10%, var(--peach-100), transparent 60%),
    linear-gradient(150deg, var(--peach-50), var(--cream-100));
  min-height: 130px;
  display: grid; place-items: center;
}
.ph-play-lg { width: 46px; height: 46px; background: #fff; box-shadow: 0 6px 18px rgba(38,34,30,.14); }
.ph-play-lg svg { width: 17px; height: 17px; }
.ph-video-label {
  position: absolute; left: 12px; bottom: 10px;
  font-size: 0.6875rem; font-weight: 600; color: var(--ink-500);
}
.ph-set { display: flex; flex-direction: column; gap: 7px; }
.ph-set-row {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  padding: 9px 13px;
  font-size: 0.78125rem; color: var(--ink-500);
}
.ph-set-row b { color: var(--ink-900); font-size: 0.8438rem; }
.ph-set-live { border-color: var(--orange-400); box-shadow: 0 0 0 3px rgba(248, 112, 24, 0.10); }
.ph-done { color: var(--orange-500); font-weight: 700; }
.ph-log {
  font-size: 0.65625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--orange-600);
}
.ph-rpe-label { font-size: 0.78125rem; font-weight: 600; color: var(--ink-700); margin-top: 2px; }
.ph-rpe { display: flex; gap: 7px; }
.ph-rpe span {
  flex: 1;
  display: grid; place-items: center;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  font-size: 0.8438rem; font-weight: 650; color: var(--ink-500);
}
.ph-rpe .on {
  background: var(--orange-500); border-color: var(--orange-500);
  color: #fff; box-shadow: var(--shadow-orange);
}
.ph-hint {
  display: flex; align-items: center; gap: 9px;
  background: var(--ink-900); color: var(--cream-50);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 0.78125rem;
  margin-top: auto;
}
.ph-hint svg { width: 16px; height: 16px; color: var(--orange-400); flex: none; }
.ph-hint b { color: var(--orange-300); }

.ph-chart {
  display: flex; align-items: flex-end; gap: 7px;
  height: 110px;
  padding: 10px 4px 0;
}
.ph-chart i {
  flex: 1;
  height: var(--h, 40%);
  border-radius: 7px 7px 3px 3px;
  background: var(--peach-100);
}
.ph-chart i.now { background: linear-gradient(180deg, var(--orange-400), var(--orange-600)); }
.ph-chart-label { font-size: 0.71875rem; color: var(--ink-500); }
.ph-stat {
  display: flex; align-items: baseline; gap: 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 12px 14px;
}
.ph-stat b { font-family: var(--font-display); font-size: 1.06rem; color: var(--ink-900); }
.ph-stat span { font-size: 0.71875rem; color: var(--ink-500); flex: 1; }
.ph-stat em {
  font-style: normal; font-size: 0.65625rem; font-weight: 700;
}
.ph-stat .up { color: #2E8B57; }
.ph-next {
  background: var(--peach-50);
  border: 1px solid var(--peach-100);
  border-radius: 14px;
  padding: 13px 15px;
  font-size: 0.78125rem; color: var(--ink-700);
  margin-top: auto;
}
.ph-next b { color: var(--orange-700); }

.ph-profile-card,
.ph-plan-result,
.ph-change,
.ph-restart {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}
.ph-profile-card {
  padding: 18px;
  background:
    radial-gradient(220px 160px at 100% 0%, rgba(255, 229, 209, 0.78), transparent 66%),
    #fff;
}
.ph-profile-card span,
.ph-plan-result small,
.ph-change span {
  display: block;
  font-size: 0.68rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--orange-600);
}
.ph-profile-card b,
.ph-plan-result b,
.ph-change b {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--ink-900);
}
.ph-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}
.ph-choice {
  min-height: 54px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink-500);
  font-size: 0.75rem;
  font-weight: 650;
}
.ph-choice.on {
  color: var(--orange-700);
  background: var(--peach-50);
  border-color: var(--peach-100);
}
.ph-plan-result {
  margin-top: auto;
  padding: 18px;
  background: var(--ink-900);
}
.ph-plan-result small { color: var(--orange-300); }
.ph-plan-result b { color: var(--cream-50); }
.ph-plan-result span {
  display: block;
  margin-top: 8px;
  color: rgba(250, 246, 239, 0.6);
  font-size: 0.76rem;
}
.ph-change {
  padding: 18px;
  background:
    radial-gradient(220px 160px at 100% 0%, rgba(248, 112, 24, 0.14), transparent 64%),
    #fff;
}
.ph-change small {
  display: block;
  margin-top: 8px;
  color: var(--ink-500);
  font-size: 0.78rem;
}
.ph-why-list {
  display: grid;
  gap: 8px;
}
.ph-why-list div {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  padding: 10px 12px;
}
.ph-why-list span {
  display: inline-flex;
  color: var(--orange-700);
  background: var(--peach-50);
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 0.64rem;
  font-weight: 750;
  margin-bottom: 7px;
}
.ph-why-list b {
  display: block;
  color: var(--ink-900);
  font-size: 0.78rem;
}
.ph-why-list small {
  display: block;
  color: var(--ink-500);
  font-size: 0.68rem;
  margin-top: 2px;
}
.ph-restart {
  margin-top: auto;
  padding: 14px 15px;
  background: var(--peach-50);
  color: var(--orange-700);
  font-size: 0.78rem;
  font-weight: 650;
}

/* ---------- tracks & focus blocks ---------- */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prog-card {
  background: var(--cream-0);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, opacity 0.3s ease;
}
.prog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 112, 24, 0.45);
  box-shadow: var(--shadow-soft);
}
.prog-card.is-hidden { display: none; }
.prog-tag {
  display: inline-block;
  font-size: 0.71875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--orange-600);
  background: var(--peach-50);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.prog-card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.prog-card p { font-size: 0.9063rem; color: var(--ink-500); }
.prog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.prog-meta span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-500);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px;
}
.prog-card-flagship { border-color: rgba(248, 112, 24, 0.5); box-shadow: 0 12px 36px rgba(248, 112, 24, 0.10); }

.phase-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  margin-block: clamp(36px, 5vw, 56px);
}
.phase-strip > svg { width: 18px; height: 18px; color: var(--orange-500); align-self: center; flex: none; }
.phase-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--cream-0);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 20px;
  font-size: 0.8125rem;
  color: var(--ink-500);
}
.phase-chip b {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 650;
  color: var(--ink-900);
}
.phase-chip-on { background: var(--ink-900); border-color: var(--ink-900); color: rgba(250, 246, 239, 0.7); }
.phase-chip-on b { color: var(--orange-300); }

.blocks-head { margin-bottom: 24px; }
.blocks-head h3 { font-size: 1.45rem; }
.blocks-head p { color: var(--ink-500); font-size: 0.9844rem; margin-top: 6px; }
.prog-card-sm { padding: 22px 22px 20px; }
.prog-card-sm h3 { font-size: 1.05rem; margin-bottom: 7px; }
.prog-card-sm p { font-size: 0.875rem; }
.prog-note {
  margin-top: 32px;
  font-size: 0.9063rem;
  color: var(--ink-500);
  max-width: 640px;
}

/* ---------- pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -28px 0 34px;
}
.pricing-assurance span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream-0);
  color: var(--ink-700);
  font-size: 0.86rem;
  font-weight: 650;
  padding: 9px 15px;
}
.pricing-assurance span:first-child {
  color: var(--orange-700);
  background: var(--peach-50);
  border-color: var(--peach-100);
}
.price-fineprint {
  margin-top: 14px;
  font-size: 0.78125rem;
  line-height: 1.55;
  color: var(--ink-500);
}
.price-card {
  position: relative;
  background: var(--cream-0);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px 30px;
  display: flex;
  flex-direction: column;
}
.price-card h3 { font-size: 1.3rem; }
.price { margin-top: 16px; color: var(--ink-900); }
.price b {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 750;
  letter-spacing: 0;
}
.price span { color: var(--ink-500); font-size: 1rem; }
.price-sub { margin-top: 10px; font-size: 0.9063rem; color: var(--ink-500); }
.price-card ul {
  list-style: none;
  padding: 0;
  margin-block: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-card li {
  position: relative;
  padding-left: 30px;
  font-size: 0.9375rem;
  color: var(--ink-700);
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--peach-100) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23C94F06" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center / 10px no-repeat;
}
.price-card-hero {
  border: 2px solid var(--orange-500);
  box-shadow: 0 4px 12px rgba(248, 112, 24, 0.10), 0 28px 64px rgba(248, 112, 24, 0.16);
}
.price-flag {
  position: absolute;
  top: -15px; left: 28px;
  font-size: 0.71875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  background: var(--orange-500);
  border-radius: 999px;
  padding: 7px 15px;
  box-shadow: var(--shadow-orange);
}
.price-note {
  margin-top: 30px;
  font-size: 0.875rem;
  color: var(--ink-500);
  max-width: 640px;
}

/* ---------- teams ---------- */
.teams-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 24px;
  border-radius: var(--r-md);
  background: var(--ink-900);
  color: rgba(250, 246, 239, 0.85);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.teams-banner:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.teams-banner b { color: var(--cream-50); }
.teams-banner svg { flex: none; color: var(--orange-400); margin-left: auto; }
.teams-banner-label {
  flex: none;
  font-size: 0.71875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--orange-500);
  border-radius: 999px;
  padding: 6px 13px;
}

.teams-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.teams-cta { margin-top: 32px; }
.teams-micro { margin-top: 14px; font-size: 0.8125rem; color: rgba(250, 246, 239, 0.55); }
.teams-points {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.teams-points li {
  background: var(--dark-card);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-md);
  padding: 20px 22px;
  font-size: 0.9375rem;
  color: rgba(250, 246, 239, 0.75);
}
.teams-points b { display: block; color: var(--cream-50); margin-bottom: 4px; font-family: var(--font-display); font-weight: 650; }

/* ---------- why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px);
}
.why-item h3 {
  font-size: 1.13rem;
  margin-bottom: 9px;
  padding-top: 18px;
  border-top: 2px solid var(--orange-500);
}
.why-item p { font-size: 0.9375rem; color: var(--ink-500); }

/* ---------- faq ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  cursor: pointer;
  padding-block: 24px;
  font-family: var(--font-display);
  font-size: 1.17rem;
  font-weight: 650;
  letter-spacing: 0;
  color: var(--ink-900);
  transition: color 0.15s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--orange-600); }
.faq-icon {
  flex: none;
  position: relative;
  width: 30px; height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 11px; height: 1.8px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-list details p {
  padding-bottom: 26px;
  color: var(--ink-500);
  max-width: 64ch;
}

/* ---------- get-started cta ---------- */
.section-cta { padding-block: clamp(60px, 8vw, 110px); }
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background:
    radial-gradient(720px 420px at 92% 0%, rgba(255, 214, 170, 0.42), transparent 62%),
    radial-gradient(520px 320px at 0% 100%, rgba(33, 30, 27, 0.18), transparent 65%),
    linear-gradient(128deg, var(--orange-400) 0%, var(--orange-500) 48%, #EF5A0C 100%);
  padding: clamp(44px, 6vw, 84px);
  box-shadow: 0 32px 80px rgba(248, 112, 24, 0.28);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.cta-main { min-width: 0; }
.cta-kicker {
  color: rgba(255, 248, 240, 0.78);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-copy h2 { color: #fff; }
.cta-copy p {
  color: rgba(255, 248, 240, 0.92);
  max-width: 560px;
  margin-top: 20px;
  font-size: 1.0625rem;
}
.cta-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  max-width: 720px;
  margin-top: 36px;
}
.cta-form input[type="email"], .cta-form select {
  flex: 1 1 240px;
  border: 0;
  border-radius: 999px;
  padding: 17px 24px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink-900);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}
.cta-form select { flex: 0 1 210px; cursor: pointer; color: var(--ink-700); }
.cta-form input::placeholder { color: var(--ink-300); }
.cta-form input:focus-visible, .cta-form select:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 2px;
}
.cta-feedback {
  flex-basis: 100%;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  min-height: 1.4em;
}
.cta-feedback.is-error { color: #FFE3CC; }
.cta-micro {
  margin-top: 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 248, 240, 0.75);
}
.cta-micro + .cta-micro { margin-top: 10px; }
.cta-quiz-link {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.5);
}
.cta-quiz-link:hover { text-decoration-color: #fff; }

.cta-product {
  display: grid;
  gap: 14px;
  transform: rotate(2deg);
}
.cta-profile {
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-700);
  padding: 22px;
  box-shadow: 0 24px 54px rgba(33, 26, 18, 0.16);
}
.cta-profile span {
  display: block;
  color: var(--orange-700);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cta-profile b {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.34rem;
  color: var(--ink-900);
}
.cta-profile small {
  display: block;
  margin-top: 7px;
  color: var(--ink-500);
  line-height: 1.45;
}
.cta-profile-dark {
  background: rgba(33, 30, 27, 0.9);
  color: rgba(250, 246, 239, 0.7);
  transform: translateX(-26px) rotate(-3deg);
}
.cta-profile-dark b { color: var(--cream-50); }
.cta-profile-dark span { color: var(--orange-300); }
.cta-profile-dark small { color: rgba(250, 246, 239, 0.58); }

/* success state */
.cta-form.is-done input, .cta-form.is-done select, .cta-form.is-done button { display: none; }
.cta-form.is-done .cta-feedback {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 650;
}

/* ---------- footer ---------- */
.footer {
  background: var(--cream-100);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 6vw, 72px) 36px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand img { width: 168px; height: auto; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  max-width: 560px;
}
.footer-links a {
  text-decoration: none;
  font-size: 0.9063rem;
  font-weight: 550;
  color: var(--ink-700);
}
.footer-links a:hover { color: var(--orange-600); }
.footer-disclaimer {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.footer-disclaimer p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--ink-500);
  max-width: 76ch;
}
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  font-size: 0.8125rem;
  color: var(--ink-300);
}
.footer-tag { font-weight: 600; color: var(--orange-600); }

/* ---------- reveal on scroll (JS adds .in) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
}
.js .reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* gentle stagger inside grids */
.js .grid-3 .reveal.in:nth-child(2), .js .engine-grid .reveal.in:nth-child(2),
.js .prog-grid .reveal.in:nth-child(3n-1), .js .price-grid .reveal.in:nth-child(2),
.js .why-grid .reveal.in:nth-child(3n-1), .js .phones .reveal.in:nth-child(2) { transition-delay: 0.1s; }
.js .grid-3 .reveal.in:nth-child(3), .js .engine-grid .reveal.in:nth-child(4),
.js .prog-grid .reveal.in:nth-child(3n), .js .price-grid .reveal.in:nth-child(3),
.js .why-grid .reveal.in:nth-child(3n), .js .phones .reveal.in:nth-child(3) { transition-delay: 0.2s; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scrollcue { animation: none; }
  .btn, .prog-card { transition: none; }
}
/* automated browsers (navigator.webdriver): same static treatment,
   so Lighthouse / CI screenshots see the full page instantly */
.no-anim .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.no-anim .hero-scrollcue { animation: none; }
.no-anim .hero { min-height: 100svh; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .prog-grid { grid-template-columns: repeat(2, 1fr); }
  .phones { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .phone { height: 602px; }
  .phone-screen { height: 580px; }
  .loop-system { grid-template-columns: 1fr; gap: 34px; }
  .loop-orbit { max-width: 640px; width: 100%; margin-inline: auto; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-product { max-width: 420px; transform: none; }
  .cta-profile-dark { transform: none; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; max-width: 560px; }
  .engine-grid { grid-template-columns: 1fr; }
  .engine-showcase { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .price-card-hero { order: -1; }
  .phones {
    grid-template-columns: minmax(0, 340px);
    justify-content: center;
  }
  .phone-center { transform: none; }
  .step { grid-template-columns: 56px 1fr; }
  .step-art { grid-column: 2; justify-content: flex-start; margin-top: 18px; }

  /* nav collapses */
  .nav-burger { display: flex; }
  .nav-logo img { height: 36px; }
  .nav-cta { display: none; }
  .nav-cta-mobile { display: inline-flex; margin-top: 8px; }
  .nav-links {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: var(--cream-50);
    border-bottom: 1px solid var(--line);
    padding: 12px clamp(20px, 4vw, 32px) 24px;
    box-shadow: 0 24px 48px rgba(38, 34, 30, 0.10);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) {
    font-size: 1.0625rem;
    padding-block: 10px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  body { font-size: 1rem; }
  h2 { font-size: 2.28rem; }

  /* hero: ribbons become a soft top-right halo behind stacked content */
  .hero { min-height: 92svh; overflow: hidden; }
  .hero-pin {
    position: relative;
    min-height: 92svh;
    padding-top: var(--nav-h);
  }
  .hero-visual {
    width: 118vw;
    height: 68vh;
    right: -36vw;
    left: auto;
    -webkit-mask-image: linear-gradient(to left, #000 30%, transparent 92%),
                        linear-gradient(to top, transparent 4%, #000 36%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to left, #000 30%, transparent 92%),
                linear-gradient(to top, transparent 4%, #000 36%);
    mask-composite: intersect;
    opacity: 0.95;
  }
  .hero-visual::after { display: none; }
  .hero-endmark { display: none; }
  .hero-content { padding-block: 36px 72px; }
  .hero-title { font-size: 3.18rem; }
  .hero-keep { white-space: normal; }
  .hero-sub { font-size: 1.04rem; }
  .hero-ctas .btn { flex: 1 1 100%; }

  .section { padding-block: 64px; }
  .signature-loop { padding-block: 64px; }
  .loop-orbit { min-height: 380px; }
  .loop-ribbon { inset: 54px 30px; }
  .loop-core { width: 126px; height: 126px; border-radius: 30px; }
  .loop-core img { width: 66px; }
  .loop-core span { bottom: 17px; }
  .loop-node { width: 132px; padding: 12px; }
  .loop-node b { font-size: 0.98rem; }
  .loop-node small { font-size: 0.7rem; }
  .node-plan { left: 0; top: 6%; }
  .node-train { right: 0; top: 24%; }
  .node-log { right: 8%; bottom: 3%; }
  .node-progress { left: 0; bottom: 18%; }
  .loop-cards { grid-template-columns: 1fr; }
  .promise p { font-size: 1.35rem; }
  .why-grid { grid-template-columns: 1fr; }
  .prog-grid { grid-template-columns: 1fr; }
  .teams-grid { grid-template-columns: 1fr; }
  .teams-banner { flex-wrap: wrap; }
  .reason-lines div { grid-template-columns: 1fr; gap: 3px; }
  .pricing-assurance { margin-top: -18px; }
  .cta-panel { padding: 38px 24px; }
  .cta-form input[type="email"], .cta-form select { flex-basis: 100%; }
  .cta-form .btn { flex-basis: 100%; }
  .footer-grid { flex-direction: column; }
}
