/* ───────────────────────────────────────────────────────────────
   GenuineFy — landing page
   Palette: navy + electric blue + orange + green + warm cream
   Type:    Inter Tight (display) + Inter (body) + JetBrains Mono (stats)
   ─────────────────────────────────────────────────────────────── */

:root {
  /* — Palette: navy (default) — */
  --navy:        #0B1B33;
  --navy-2:      #122648;
  --navy-3:      #1B345E;
  --ink:         #060D1A;
  --paper:       #F6F2EA;
  --paper-2:     #ECE5D5;
  --cream:       #FAF7EF;
  --white:       #FFFFFF;
  --text:        #0B1B33;
  --text-muted:  #4A5A75;
  --text-soft:   #6B7891;
  --line:        rgba(11, 27, 51, 0.10);
  --line-strong: rgba(11, 27, 51, 0.18);
  --on-dark:     #F6F2EA;
  --on-dark-mute:#A6B6CE;
  --on-dark-soft:#7B8AA3;
  --line-dark:   rgba(255, 255, 255, 0.12);
  --line-dark-strong: rgba(255, 255, 255, 0.22);

  --blue:        #3B82F6;
  --blue-2:      #60A5FA;
  --blue-deep:   #1E5BD8;
  --orange:      #F97316;
  --orange-2:    #FB923C;
  --green:       #10B981;
  --green-2:    #34D399;
  --red:         #EF4444;

  /* brand mark colors */
  --brand-mark-bg:     var(--orange);
  --brand-mark-stroke: var(--navy);

  /* type system */
  --f-display: "Inter Tight", "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --f-body:    "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* sizing scale */
  --container: 1240px;
  --container-narrow: 920px;
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;

  /* dynamic palette toggles handled below */
}

/* — palette: dark mode — */
body.theme-dark {
  --paper: #0A0F1E;
  --paper-2: #11182C;
  --cream:  #0E1525;
  --text:   #E6ECF6;
  --text-muted: #95A6C2;
  --text-soft:  #6B7891;
  --line:   rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.18);
  --navy:   #060D1A;
  --navy-2: #0E1729;
  --navy-3: #182645;
  --on-dark: #E6ECF6;
  color-scheme: dark;
}

/* — palette: cream (light editorial) — */
body.theme-cream {
  --paper: #FAF6EC;
  --paper-2: #F1EAD7;
  --cream:  #FFFCF4;
  --navy:   #0E1C36;
  --navy-2: #16264A;
  --orange: #D9612C;
  --orange-2: #E97F4B;
  --brand-mark-bg: var(--navy);
  --brand-mark-stroke: var(--orange);
}

/* ───── reset ───── */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
}
img, svg, video { display: block; max-width: 100%; }
img { background: var(--navy-2); }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--f-display); font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; }

::selection { background: var(--blue); color: white; }

/* ───── container ───── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ───── section base ───── */
.section {
  position: relative;
  padding: clamp(80px, 9vw, 140px) 0;
  isolation: isolate;
}
.section--light { background: var(--paper); color: var(--text); }
.section--dark  { background: var(--navy); color: var(--on-dark); }
.section--ink   { background: var(--ink); color: var(--on-dark); }

/* dark section: subtle topographic noise + grid */
.section--dark {
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(59,130,246,0.18), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(249,115,22,0.10), transparent 60%);
}

/* light section: warm grain */
.section--light::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(1px 1px at 50% 50%, rgba(11,27,51,0.05) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}

/* ───── kicker / eyebrow / h2 ───── */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.kicker--light { color: var(--on-dark-mute); }
.kicker__num {
  display: inline-block;
  font-feature-settings: "tnum";
  color: var(--orange);
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--on-dark-mute);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 28px;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(249,115,22,0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(249,115,22,0.25); }
  50%      { box-shadow: 0 0 0 7px rgba(249,115,22,0.10); }
}

.h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 18ch;
}
.h2--light { color: var(--on-dark); }
.h2 em { font-style: normal; color: var(--orange); }

.lede {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 60ch;
}

/* ───── buttons ───── */
.btn {
  --bg: var(--orange);
  --fg: white;
  --bd: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--bd);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .25s ease;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 8px 24px -10px rgba(249,115,22,0.55);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.2) inset, 0 14px 30px -10px rgba(249,115,22,0.65); }
.btn:active { transform: translateY(0); }
.btn--primary { --bg: var(--orange); }
.btn--primary:hover { --bg: var(--orange-2); }
.btn--ghost {
  --bg: transparent;
  --fg: var(--text);
  --bd: var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { --bg: rgba(11,27,51,0.04); box-shadow: none; transform: translateY(-1px); }
.section--dark .btn--ghost { --fg: var(--on-dark); --bd: var(--line-dark-strong); }
.section--dark .btn--ghost:hover { --bg: rgba(255,255,255,0.06); }
.btn--lg { padding: 17px 26px; font-size: 16px; }
.btn--sm { padding: 8px 14px; font-size: 13px; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn-time {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.18);
  padding: 3px 8px;
  border-radius: 999px;
  color: rgba(255,255,255,0.9);
}
.btn--ghost .btn-time { background: rgba(11,27,51,0.08); color: var(--text-muted); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.section--dark .link-arrow { color: var(--on-dark-mute); }
.link-arrow::after {
  content: "→";
  transition: transform .2s ease;
}
.link-arrow:hover { color: var(--orange); border-color: currentColor; }
.link-arrow:hover::after { transform: translateX(3px); }
.link-arrow--lg { font-size: 16px; }

/* ───── nav ───── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 32px;
  background: rgba(11, 27, 51, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--on-dark);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--on-dark);
}
.nav__left {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.nav__switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 3px;
  margin-left: 4px;
}
.nav__switch-opt {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 11px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--on-dark-mute);
  border-radius: 999px;
  letter-spacing: -0.005em;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.nav__switch-opt:hover { color: var(--on-dark); }
.nav__switch-opt.is-active {
  background: rgba(255,255,255,0.10);
  color: var(--on-dark);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 0 0 1px rgba(255,255,255,0.04);
}
.nsw-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.22);
}
.nav__switch-opt[href*="saas"] .nsw-dot { background: var(--blue); box-shadow: 0 0 0 3px rgba(59,130,246,0.22); }
.nsw-tag {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-2);
  background: rgba(59,130,246,0.14);
  border-radius: 4px;
  padding: 2px 5px;
}
.nav__switch-opt:not(.is-active) .nsw-dot { background: var(--on-dark-soft); box-shadow: none; }
@media (max-width: 780px) {
  .nav__switch { display: none; }
}
.logo-mark { display: inline-flex; }
.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-dark-mute);
}
.nav__links a { transition: color .15s; padding: 6px 0; }
.nav__links a:hover { color: var(--on-dark); }
.nav__cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__cta .link-arrow { color: var(--on-dark-mute); }
@media (max-width: 980px) {
  .nav__links { display: none; }
}
@media (max-width: 640px) {
  .nav__cta .link-arrow { display: none; }
  .nav { padding: 10px 18px; }
}

/* ───── HERO ───── */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 120px) 0 clamp(60px, 8vw, 140px);
  overflow: hidden;
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 120% 90% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 120% 90% at 50% 30%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  min-height: 70vh;
}
@media (max-width: 1080px) { .hero__inner { grid-template-columns: 1fr; gap: 48px; } }

.hero__h {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--on-dark);
  margin: 0 0 24px;
  display: block;
}
.hero__h span { display: block; }
.hero__h--accent { color: var(--orange); }
.hero__h[hidden] { display: none; }

.hero__sub {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--on-dark-mute);
  max-width: 56ch;
  margin-bottom: 32px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--on-dark-soft);
  font-size: 13.5px;
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__trust svg { color: var(--green-2); flex: 0 0 auto; }

.hero__scrollhint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  animation: float 2.6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50%     { transform: translateX(-50%) translateY(4px); opacity: 1; }
}

/* HERO STAGE — feature layout */
.hero__stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 16px;
  align-self: stretch;
  min-height: 540px;
}

/* Default layout: feature (per user's pick) */
.hero__stage[data-layout="feature"] .vtile--hero { grid-column: 1; grid-row: 1 / span 2; }
.hero__stage[data-layout="feature"] .hero__chip--verify { grid-column: 2; grid-row: 1; }
.hero__stage[data-layout="feature"] .hero__chip--stat   { grid-column: 2; grid-row: 2; }
.hero__stage[data-layout="feature"] .vtile--side[data-tile="side1"] { grid-column: 1; grid-row: 3; }
.hero__stage[data-layout="feature"] .vtile--side[data-tile="side2"] { grid-column: 2; grid-row: 3; }
.hero__stage[data-layout="feature"] .hero__ratiostrip { display: none; }

/* Alt: stack — 2x2 grid */
.hero__stage[data-layout="stack"] {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.hero__stage[data-layout="stack"] .vtile--hero { grid-column: 1 / span 2; grid-row: 1; }
.hero__stage[data-layout="stack"] .hero__chip--verify,
.hero__stage[data-layout="stack"] .hero__chip--stat { display: none; }
.hero__stage[data-layout="stack"] .vtile--side[data-tile="side1"] { grid-column: 1; grid-row: 2; }
.hero__stage[data-layout="stack"] .vtile--side[data-tile="side2"] { grid-column: 2; grid-row: 2; }
.hero__stage[data-layout="stack"] .hero__ratiostrip { display: none; }

/* Alt: fan — overlapping tiles, slight rotation */
.hero__stage[data-layout="fan"] {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: center;
  min-height: 600px;
}
.hero__stage[data-layout="fan"] .vtile {
  grid-column: 1; grid-row: 1;
  width: 70%;
  max-width: 360px;
  transition: transform .4s ease;
}
.hero__stage[data-layout="fan"] .vtile--hero { transform: translateX(0) rotate(0deg); z-index: 3; width: 75%; }
.hero__stage[data-layout="fan"] .vtile--side[data-tile="side1"] { transform: translateX(-58%) rotate(-7deg); z-index: 2; opacity: .9; }
.hero__stage[data-layout="fan"] .vtile--side[data-tile="side2"] { transform: translateX(58%) rotate(7deg); z-index: 2; opacity: .9; }
.hero__stage[data-layout="fan"] .hero__chip--verify,
.hero__stage[data-layout="fan"] .hero__chip--stat,
.hero__stage[data-layout="fan"] .hero__ratiostrip { display: none; }

@media (max-width: 1080px) {
  .hero__stage { min-height: auto; }
}
@media (max-width: 720px) {
  .hero__stage { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .hero__stage[data-layout="feature"] .vtile--hero { grid-column: 1 / span 2; grid-row: 1; }
  .hero__stage[data-layout="feature"] .hero__chip--verify { grid-column: 1 / span 2; grid-row: 2; }
  .hero__stage[data-layout="feature"] .hero__chip--stat   { grid-column: 1 / span 2; grid-row: 3; }
  .hero__stage[data-layout="feature"] .vtile--side[data-tile="side1"] { grid-column: 1; grid-row: 4; }
  .hero__stage[data-layout="feature"] .vtile--side[data-tile="side2"] { grid-column: 2; grid-row: 4; }
}

/* ───── VIDEO TILE ─────
   The workhorse: a credible-looking video player at multiple sizes. */
.vtile {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--navy-2);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 20px 60px -20px rgba(0,0,0,0.55),
    0 4px 16px -8px rgba(0,0,0,0.4);
  isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  cursor: pointer;
}
.vtile:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.07) inset,
    0 30px 80px -20px rgba(0,0,0,0.65),
    0 8px 24px -8px rgba(0,0,0,0.45);
}
.vtile__media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.vtile__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease-out, filter .35s ease;
  filter: saturate(0.92) contrast(1.04);
}
.vtile:hover .vtile__media img {
  transform: scale(1.16);
  filter: saturate(1) contrast(1.06);
}
.vtile__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(6,13,26,0.85) 0%, rgba(6,13,26,0.35) 38%, rgba(6,13,26,0) 60%);
  z-index: 1;
}
.vtile__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, 0.18);
  color: var(--green-2);
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 9px 5px 7px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.vtile__badge svg { color: var(--green-2); }
.vtile__badge--sm { font-size: 9px; padding: 3px 6px 3px 5px; top: 8px; left: 8px; }
.vtile__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  padding-left: 4px;
  transition: transform .3s ease, opacity .3s ease;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.45);
}
.vtile__play::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  animation: ripple 2.4s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}
.vtile:hover .vtile__play { opacity: 0; transform: translate(-50%, -50%) scale(0.85); }
.vtile--side .vtile__play, .vtile--mini .vtile__play { width: 44px; height: 44px; }

.vtile__captions {
  position: absolute;
  bottom: 96px;
  left: 16px; right: 16px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transition: opacity .3s ease;
}
.vtile:hover .vtile__captions { opacity: 1; }
.cap-line {
  align-self: flex-start;
  background: rgba(6, 13, 26, 0.86);
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 4px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  max-width: 100%;
  letter-spacing: -0.005em;
}
.vtile:hover .cap-line { transform: translateY(0); opacity: 1; }
.vtile:hover .cap-line:nth-child(2) { transition-delay: .35s; }

.vtile__meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px 16px;
  z-index: 3;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 12px;
}
.vtile__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.vtile__role {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  margin-top: 2px;
}
.vtile__scrub {
  grid-column: 1 / span 2;
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}
.vtile__scrub span {
  display: block;
  height: 100%;
  width: 28%;
  background: var(--orange);
  border-radius: 2px;
  transition: width 2.4s linear;
}
.vtile:hover .vtile__scrub span { width: 92%; }
.vtile__time {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.7);
  grid-column: 2;
  align-self: end;
  margin-bottom: 4px;
}

/* waveform */
.vtile__wave {
  position: absolute;
  bottom: 64px;
  left: 16px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
  opacity: 0;
  transition: opacity .3s ease;
}
.vtile:hover .vtile__wave { opacity: 0.85; }
.vtile__wave span {
  display: block;
  width: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 1px;
  height: 30%;
  animation: bar 1.2s ease-in-out infinite;
}
.vtile__wave span:nth-child(1)  { animation-delay: 0s;    height: 30%; }
.vtile__wave span:nth-child(2)  { animation-delay: 0.07s; height: 60%; }
.vtile__wave span:nth-child(3)  { animation-delay: 0.14s; height: 80%; }
.vtile__wave span:nth-child(4)  { animation-delay: 0.21s; height: 40%; }
.vtile__wave span:nth-child(5)  { animation-delay: 0.28s; height: 70%; }
.vtile__wave span:nth-child(6)  { animation-delay: 0.35s; height: 95%; }
.vtile__wave span:nth-child(7)  { animation-delay: 0.42s; height: 55%; }
.vtile__wave span:nth-child(8)  { animation-delay: 0.49s; height: 35%; }
.vtile__wave span:nth-child(9)  { animation-delay: 0.56s; height: 65%; }
.vtile__wave span:nth-child(10) { animation-delay: 0.63s; height: 80%; }
.vtile__wave span:nth-child(11) { animation-delay: 0.70s; height: 50%; }
.vtile__wave span:nth-child(12) { animation-delay: 0.77s; height: 70%; }
.vtile__wave span:nth-child(13) { animation-delay: 0.84s; height: 90%; }
.vtile__wave span:nth-child(14) { animation-delay: 0.91s; height: 45%; }
.vtile__wave span:nth-child(15) { animation-delay: 0.98s; height: 60%; }
.vtile__wave span:nth-child(16) { animation-delay: 1.05s; height: 30%; }
@keyframes bar {
  0%, 100% { transform: scaleY(0.5); }
  50%      { transform: scaleY(1); }
}

/* hero tile aspect & sizing */
.vtile--hero { aspect-ratio: 4 / 5; min-height: 360px; }
.vtile--side { aspect-ratio: 4 / 5; min-height: 180px; }
.vtile--side .vtile__captions { display: none; }
.vtile--side .vtile__wave { display: none; }
.vtile--side .vtile__time { display: none; }
.vtile--side .vtile__meta { padding: 10px 12px 12px; }
.vtile--side .vtile__name { font-size: 13px; }
.vtile--side .vtile__role { font-size: 11px; }

.vtile--mini {
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  min-height: 0;
}
.vtile--mini .vtile__play,
.vtile--mini .vtile__captions,
.vtile--mini .vtile__wave,
.vtile--mini .vtile__time,
.vtile--mini .vtile__scrub { display: none; }
.vtile--mini footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 10px 10px;
  z-index: 3;
  color: white;
  font-size: 11.5px;
  display: flex; flex-direction: column; gap: 1px;
}
.vtile--mini footer b { font-family: var(--f-display); font-weight: 600; font-size: 12px; }
.vtile--mini footer span { color: rgba(255,255,255,0.7); font-size: 10.5px; }

/* hero chips */
.hero__chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--on-dark);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__chip--verify {
  background: linear-gradient(160deg, rgba(16,185,129,0.10), rgba(16,185,129,0.02));
  border-color: rgba(16,185,129,0.28);
}
.chip__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chip__mark {
  display: inline-flex;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--green);
  color: var(--green-2);
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.18);
}
.chip__mark svg { color: white; }
.chip__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
}
.chip__sub {
  font-size: 12px;
  color: var(--on-dark-mute);
  margin-top: 2px;
}
.chip__meta {
  display: grid;
  gap: 6px;
  margin: 4px 0 0;
  font-size: 11.5px;
}
.chip__meta div {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px dashed rgba(255,255,255,0.08);
}
.chip__meta dt {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 9.5px;
  color: var(--on-dark-soft);
  align-self: center;
}
.chip__meta dd { margin: 0; color: var(--on-dark); font-weight: 500; }
.chip__meta dd.mono { font-family: var(--f-mono); font-size: 11px; }

.hero__chip--stat {
  background: linear-gradient(160deg, rgba(59,130,246,0.12), rgba(59,130,246,0.02));
  border-color: rgba(59,130,246,0.28);
  color: var(--blue-2);
}
.chip__stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--on-dark);
}
.stat-num { font-feature-settings: "tnum"; }
.stat-unit { font-size: 30px; color: var(--blue-2); }
.chip__stat-label {
  font-size: 13px;
  color: var(--on-dark-mute);
  line-height: 1.4;
  max-width: 28ch;
}
.chip__spark { color: var(--blue-2); margin-top: 4px; }
.chip__spark svg { width: 100%; height: 36px; }

.hero__ratiostrip {
  grid-column: 1 / span 2;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--on-dark-mute);
}
.rs__label { font-weight: 600; color: var(--on-dark); letter-spacing: 0.04em; text-transform: uppercase; }
.rs__row { display: flex; align-items: center; gap: 10px; }
.rs__ratio {
  display: inline-block;
  background: var(--orange);
  border-radius: 3px;
}
.rs__ratio--169 { width: 22px; height: 13px; }
.rs__ratio--11  { width: 14px; height: 14px; }
.rs__ratio--916 { width: 9px;  height: 16px; }
.rs__sep { width: 1px; height: 16px; background: var(--line-dark-strong); }
.rs__fmt {
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 2px 7px;
  color: var(--on-dark);
  letter-spacing: 0.04em;
}

/* ───── PROBLEM ───── */
.problem__head { margin-bottom: 56px; }
.problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .problem__grid { grid-template-columns: 1fr; gap: 48px; } }
.problem__body { font-size: 17px; color: var(--text-muted); }
.problem__body p + p { margin-top: 18px; }
.problem__body strong { color: var(--text); }

.problem__chain {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px dashed var(--line-strong);
  padding-left: 0;
}
.problem__chain li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0 12px 18px;
  position: relative;
  font-size: 15.5px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.problem__chain li:last-child { border-bottom: 0; }
.problem__chain li span {
  width: 22px; height: 22px;
  background: var(--paper-2);
  color: var(--text-muted);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.problem__chain li:last-child { color: var(--red); font-weight: 500; }
.problem__chain li:last-child span { background: rgba(239,68,68,0.12); color: var(--red); }
.problem__close { margin-top: 24px !important; color: var(--text); font-size: 17px; }

/* THESIS — text vs video */
.thesis {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  padding: 28px;
  background: linear-gradient(180deg, var(--cream), var(--paper-2));
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 28px 70px -28px rgba(11,27,51,0.18);
}
@media (max-width: 720px) {
  .thesis { grid-template-columns: 1fr; gap: 24px; }
}
.thesis__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.thesis__label--bad { background: rgba(239,68,68,0.10); color: var(--red); }
.thesis__label--good { background: rgba(16,185,129,0.12); color: #047857; }
.thesis__col--text { position: relative; }
.thesis__col--text::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: repeating-linear-gradient(135deg, rgba(11,27,51,0.02) 0 8px, transparent 8px 16px);
  pointer-events: none;
  opacity: 0.6;
}
.thesis__quotes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.thesis__quotes li {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  position: relative;
  transition: transform .4s ease, opacity .4s ease, filter .4s ease;
  filter: grayscale(0.4);
}
.thesis.is-revealed .thesis__col--text .thesis__quotes li {
  filter: grayscale(0.85);
  opacity: 0.55;
  transform: translateY(2px);
}
.thesis.is-revealed .thesis__col--text .thesis__quotes li:nth-child(1) { transition-delay: 0s; }
.thesis.is-revealed .thesis__col--text .thesis__quotes li:nth-child(2) { transition-delay: .05s; }
.thesis.is-revealed .thesis__col--text .thesis__quotes li:nth-child(3) { transition-delay: .10s; }
.thesis.is-revealed .thesis__col--text .thesis__quotes li:nth-child(4) { transition-delay: .15s; }

.stars { color: #FBBF24; font-size: 13px; letter-spacing: 1px; margin-bottom: 4px; }
.thesis__quotes p { font-size: 13.5px; color: var(--text); line-height: 1.45; margin-bottom: 4px; }
.thesis__quotes small { color: var(--text-soft); font-size: 11.5px; }

.thesis__verdict {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--bad { background: var(--red); }
.dot--good { background: var(--green); }
.dot--neutral { background: var(--text-soft); }
.dot--orange { background: var(--orange); box-shadow: 0 0 0 4px rgba(249,115,22,0.15); animation: pulse 2s ease-in-out infinite; }

.thesis__divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thesis__divider-line {
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--line-strong), transparent);
}
@media (max-width: 720px) {
  .thesis__divider-line { width: 100%; height: 1px; }
}
.thesis__divider-label {
  position: absolute;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.thesis__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.thesis.is-revealed .thesis__col--video .vtile--mini {
  animation: rise .5s cubic-bezier(.2,.7,.2,1) backwards;
}
.thesis.is-revealed .thesis__col--video .vtile--mini:nth-child(1) { animation-delay: .10s; }
.thesis.is-revealed .thesis__col--video .vtile--mini:nth-child(2) { animation-delay: .18s; }
.thesis.is-revealed .thesis__col--video .vtile--mini:nth-child(3) { animation-delay: .26s; }
.thesis.is-revealed .thesis__col--video .vtile--mini:nth-child(4) { animation-delay: .34s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ───── VALIDATION STATS ───── */
.vh-head { margin-bottom: 64px; max-width: 56ch; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .stats { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr; } }

.stat {
  padding: 32px 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s ease, border-color .3s ease;
}
.stat:hover { transform: translateY(-2px); border-color: var(--line-dark-strong); }
.stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--on-dark);
  opacity: 0.2;
}
.stat--blue::before  { background: var(--blue);   opacity: 0.7; }
.stat--orange::before{ background: var(--orange); opacity: 0.7; }
.stat--alert::before { background: var(--red);    opacity: 0.6; }

.stat__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
  color: var(--on-dark);
  margin-bottom: 4px;
}
.stat--blue   .stat__num { color: var(--blue-2); }
.stat--orange .stat__num { color: var(--orange-2); }
.stat--alert  .stat__num { color: #FCA5A5; }
.stat__num .dollar { font-size: 0.55em; opacity: 0.7; margin-right: 4px; }
.stat p { color: var(--on-dark-mute); font-size: 14.5px; line-height: 1.45; max-width: 32ch; }
.stat small { color: var(--on-dark-soft); font-size: 11.5px; margin-top: auto; padding-top: 8px; border-top: 1px dashed rgba(255,255,255,0.08); font-family: var(--f-mono); letter-spacing: 0.04em; }

/* ───── PAIN ───── */
.pain__head { margin-bottom: 56px; }
.pain__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .pain__grid { grid-template-columns: 1fr; } }
.pain__body p + p { margin-top: 14px; }
.pain__body p { font-size: 17px; color: var(--text-muted); }
.pain__body strong { color: var(--orange); font-weight: 600; font-variant-numeric: tabular-nums; }
.pain__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pain__list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.pain__list li:last-child { border-bottom: 1px solid var(--line); }
.pain__icon {
  width: 44px; height: 44px;
  flex: 0 0 auto;
  background: var(--paper-2);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.pain__list b { display: block; font-family: var(--f-display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.pain__list span { display: block; color: var(--text-muted); font-size: 14.5px; margin-top: 2px; }

/* ───── SOLUTION ───── */
.solution__head { margin-bottom: 32px; }
.solution__head .h2 { max-width: 18ch; }
.solution__lede { font-size: clamp(17px, 1.3vw, 19px); color: var(--on-dark-mute); max-width: 60ch; margin-top: 20px; }
.solution__not {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 36px 0 56px;
}
.not-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--on-dark-soft);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  text-decoration: line-through;
  text-decoration-color: rgba(239,68,68,0.5);
  text-decoration-thickness: 1.5px;
}
.not-tag.is-yes {
  color: var(--green-2);
  border-color: rgba(16,185,129,0.4);
  background: rgba(16,185,129,0.08);
  text-decoration: none;
}
.not-tag.is-yes::before {
  content: "→";
  color: var(--green-2);
  font-weight: 700;
}

.solution__four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .solution__four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .solution__four { grid-template-columns: 1fr; } }
.four-card {
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.four-card:hover {
  transform: translateY(-2px);
  border-color: rgba(249,115,22,0.4);
  background: linear-gradient(180deg, rgba(249,115,22,0.04), rgba(255,255,255,0));
}
.four-card__num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 12px;
}
.four-card h3 {
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--on-dark);
  margin-bottom: 10px;
}
.four-card p { font-size: 14px; color: var(--on-dark-mute); line-height: 1.5; }

.solution__moat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
  padding: 24px 28px;
  border: 1px solid rgba(249,115,22,0.30);
  background: linear-gradient(90deg, rgba(249,115,22,0.10), transparent 80%);
  border-radius: var(--r-md);
}
.moat__bar {
  width: 4px;
  height: 36px;
  background: var(--orange);
  border-radius: 2px;
}
.solution__moat p { font-size: 18px; color: var(--on-dark); }
.solution__moat strong { color: var(--orange); font-weight: 700; }

/* ───── HOW (sticky scroll) ───── */
.how__head { margin-bottom: 48px; }
.how__sticky {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.how__rail {
  position: sticky;
  top: 100px;
  height: 0; /* used for the line behind */
  z-index: 0;
}
.how__rail-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--blue) 60%, var(--green) 100%);
  height: var(--rail-h, 0px);
  border-radius: 1px;
  opacity: 0.7;
}
.how__rail-ticks { display: none; } /* keeping for future */

.how__phases {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 40px 0;
}
.phase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.phase::before {
  content: "";
  position: absolute;
  left: calc(50% - 8px);
  top: 40px;
  width: 16px; height: 16px;
  background: var(--paper);
  border: 3px solid var(--orange);
  border-radius: 50%;
  z-index: 2;
}
.phase[data-phase="2"]::before { border-color: var(--blue); }
.phase[data-phase="3"]::before { border-color: var(--blue); }
.phase[data-phase="4"]::before { border-color: var(--green); }

.phase:nth-child(even) { grid-template-columns: 1fr 1fr; }
.phase:nth-child(even) .phase__copy-side { order: 2; }
.phase:nth-child(even) .phase__viz       { order: 1; }

/* assign copy + viz */
.phase > .phase__num,
.phase > .phase__days,
.phase > h3,
.phase > p { grid-column: 1; }
.phase:nth-child(even) > .phase__num,
.phase:nth-child(even) > .phase__days,
.phase:nth-child(even) > h3,
.phase:nth-child(even) > p { grid-column: 2; }
.phase > .phase__viz { grid-column: 2; grid-row: 1 / span 4; align-self: center; }
.phase:nth-child(even) > .phase__viz { grid-column: 1; grid-row: 1 / span 4; align-self: center; }

@media (max-width: 880px) {
  .how__rail-fill { display: none; }
  .phase::before { display: none; }
  .phase { grid-template-columns: 1fr; gap: 24px; }
  .phase:nth-child(even) > .phase__num,
  .phase:nth-child(even) > .phase__days,
  .phase:nth-child(even) > h3,
  .phase:nth-child(even) > p { grid-column: 1; }
  .phase > .phase__viz, .phase:nth-child(even) > .phase__viz { grid-column: 1; grid-row: auto; order: 0; }
}

.phase__num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  margin-bottom: 4px;
}
.phase__days {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  background: rgba(249,115,22,0.12);
  color: var(--orange);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  font-weight: 600;
}
.phase[data-phase="2"] .phase__days { background: rgba(59,130,246,0.12); color: var(--blue); }
.phase[data-phase="3"] .phase__days { background: rgba(59,130,246,0.12); color: var(--blue); }
.phase[data-phase="4"] .phase__days { background: rgba(16,185,129,0.14); color: var(--green); }
.phase h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  max-width: 18ch;
}
.phase p { color: var(--text-muted); font-size: 16px; max-width: 46ch; }

/* phase visualizations */
.phase__viz {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 28px 60px -28px rgba(11,27,51,0.18);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phase__viz--score .score-cust {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--f-mono);
  padding: 10px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.score-cust b { color: var(--text); font-family: var(--f-display); font-size: 14px; }
.score-cust .score-bar {
  height: 6px;
  background: var(--paper-2);
  border-radius: 3px;
  overflow: hidden;
  display: block;
}
.score-cust .score-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border-radius: 3px;
  width: 0;
  transition: width .9s cubic-bezier(.2,.7,.2,1);
}
.phase.is-visible .score-bar i { width: var(--w, 100%); }
.score-cust .score-val { font-weight: 700; color: var(--text); font-size: 14px; }
.score-cust--dim { opacity: 0.55; }
.score-cust--dim .score-bar i { background: var(--text-soft); }

.phase__viz--outreach { gap: 8px; }
.msg {
  padding: 10px 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  padding-left: 60px;
}
.msg__tag {
  position: absolute;
  left: 10px; top: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue);
  background: rgba(59,130,246,0.12);
  border-radius: 4px;
  padding: 2px 6px;
}
.msg--li .msg__tag { color: #0A66C2; background: rgba(10,102,194,0.12); }
.msg--cal .msg__tag { color: var(--green); background: rgba(16,185,129,0.14); }
.msg b { color: var(--text); font-family: var(--f-display); font-size: 13.5px; display: inline-block; margin-right: 6px; }
.msg--cal { background: linear-gradient(180deg, rgba(16,185,129,0.06), white); border-color: rgba(16,185,129,0.3); }

.phase__viz--interview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: center;
}
.iv-tile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy-2);
}
.iv-tile__media { position: absolute; inset: 0; }
.iv-tile__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.95); }
.iv-tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,0.7), transparent 60%);
}
.iv-tile__rec {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(6,13,26,0.7);
  color: white;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  letter-spacing: 0.04em;
}
.rec-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
.iv-tile__cap {
  position: absolute;
  bottom: 12px;
  left: 12px; right: 12px;
  z-index: 2;
  background: rgba(6,13,26,0.86);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.iv-qs {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.iv-qs li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 8px 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text-muted);
  align-items: center;
}
.iv-qs li.is-cur { border-color: var(--orange); background: rgba(249,115,22,0.06); color: var(--text); font-weight: 500; }
.iv-qs li span {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.06em;
}
.iv-qs li.is-cur span { color: var(--orange); }

.phase__viz--deploy .deploy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.dp-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  font-family: var(--f-mono);
  position: relative;
}
.dp-card span {
  font-size: 9.5px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}
.dp-card b {
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--text);
}
.dp-card i {
  font-style: normal;
  font-size: 11px;
  color: var(--text-muted);
}
.dp-card--badge {
  background: var(--green);
  color: white;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  flex-direction: row;
  gap: 6px;
}
.dp-card--badge svg { color: white; }

.how__cta {
  margin-top: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.how__cta p { font-size: 18px; color: var(--text-muted); }

/* ───── BUNDLES ───── */
.bundles__head { margin-bottom: 56px; }
.bundles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .bundles__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .bundles__grid { grid-template-columns: 1fr; } }

.bundle {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bundle:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 50px -24px rgba(11,27,51,0.15);
}
.bundle__index {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--orange);
  font-weight: 600;
}
.bundle h3 {
  font-size: 19px;
  letter-spacing: -0.015em;
  margin: 0;
}
.bundle ul { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.bundle li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.bundle li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
.bundle li strong { color: var(--text); }

.bundle--wide { grid-column: span 3; background: var(--navy); color: var(--on-dark); border-color: var(--navy-3); }
@media (max-width: 980px) { .bundle--wide { grid-column: span 2; } }
@media (max-width: 640px) { .bundle--wide { grid-column: span 1; } }
.bundle--wide h3 { color: var(--on-dark); }
.bundle--wide li { color: var(--on-dark-mute); }
.bundle--wide li strong { color: var(--orange); }
.bundle--wide li::before { border-color: var(--green-2); }
.bundle--wide ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}
@media (max-width: 720px) { .bundle--wide ul { grid-template-columns: 1fr; } }

.bundle--accent { border-color: rgba(16,185,129,0.4); background: linear-gradient(180deg, rgba(16,185,129,0.06), var(--cream)); }
.bundle__flag {
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(16,185,129,0.14);
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.bundles__close {
  margin-top: 48px;
  text-align: center;
  font-family: var(--f-display);
  font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: -0.015em;
  color: var(--text);
  font-weight: 500;
}

/* ───── BONUSES ───── */
.bonuses__head { margin-bottom: 48px; max-width: 60ch; }
.bonuses__sub { color: var(--on-dark-mute); margin-top: 16px; font-size: 16px; max-width: 60ch; }
.bonuses__counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  flex-wrap: wrap;
}
.bn-pill {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--on-dark-soft);
  font-weight: 600;
}
.bn-pill--filled { background: var(--orange); color: white; }
.bn-pill--cur {
  background: rgba(249,115,22,0.18);
  color: var(--orange);
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  animation: pulse 2.2s ease-in-out infinite;
}
.bn-counter {
  margin-left: 6px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--on-dark-mute);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.bonuses__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) { .bonuses__grid { grid-template-columns: 1fr; } }
.bonus {
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s ease, border-color .3s ease;
}
.bonus:hover { transform: translateY(-3px); border-color: var(--line-dark-strong); }
.bonus__tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
}
.bonus h3 {
  font-size: 22px;
  letter-spacing: -0.018em;
  color: var(--on-dark);
}
.bonus p { color: var(--on-dark-mute); font-size: 15px; line-height: 1.55; }
.bonus__metric {
  margin-top: auto;
  display: inline-block;
  padding: 10px 14px;
  border: 1px dashed var(--line-dark-strong);
  border-radius: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--on-dark);
  letter-spacing: 0.02em;
}
.bonus__metric b { color: var(--orange); font-family: var(--f-display); font-size: 16px; margin-right: 6px; }
.bonus__metric--accent { background: rgba(249,115,22,0.10); border-style: solid; border-color: rgba(249,115,22,0.4); color: var(--orange); }

.bonus--feature {
  grid-column: span 2;
  background:
    radial-gradient(600px 300px at 90% 10%, rgba(249,115,22,0.12), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  border-color: rgba(249,115,22,0.3);
}
@media (max-width: 720px) { .bonus--feature { grid-column: span 1; } }
.bonus__arc {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.arc-node {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--on-dark-soft);
  text-align: center;
  padding: 12px 16px;
  border: 1px dashed var(--line-dark-strong);
  border-radius: 10px;
}
.arc-node b {
  display: block;
  font-family: var(--f-display);
  font-size: 15px;
  color: var(--on-dark);
  margin-top: 4px;
  letter-spacing: -0.01em;
}
.arc-node--cur { border-color: var(--orange); background: rgba(249,115,22,0.08); }
.arc-node--cur b { color: var(--orange); }
.arc-line {
  flex: 1;
  height: 2px;
  background:
    linear-gradient(90deg, var(--orange) 0%, var(--orange) 50%, var(--green) 100%);
  position: relative;
  border-radius: 1px;
}
.arc-line::after {
  content: "→";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

/* ───── COMPARISON TABLE ───── */
.compare__head { margin-bottom: 48px; }
.compare__head .h2 { max-width: 24ch; }
.compare__tablewrap {
  overflow-x: auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: 0 28px 60px -28px rgba(11,27,51,0.15);
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 880px;
}
.compare__table th, .compare__table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.compare__table thead th {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
  background: var(--paper-2);
  position: sticky;
  top: 0;
  white-space: nowrap;
}
.compare__table thead th.t-us {
  background: var(--navy);
  color: var(--on-dark);
}
.compare__table tbody th {
  font-weight: 500;
  color: var(--text);
  font-family: var(--f-body);
  font-size: 14px;
}
.compare__table td { color: var(--text-muted); }
.compare__table .c-us {
  background: var(--navy);
  color: var(--on-dark);
  font-weight: 600;
}
.compare__table .c-yes { color: var(--green-2); }
.compare__table .c-us.c-yes { color: var(--green-2); }
.compare__table .c-no { color: var(--text-soft); }
.compare__table .c-meh { color: var(--text-muted); }
.compare__table .c-us::before {
  content: "✓ ";
  color: var(--green-2);
  font-weight: 700;
}
.compare__table tr:last-child td,
.compare__table tr:last-child th { border-bottom: 0; }
.compare__insight {
  text-align: center;
  margin-top: 32px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}
.compare__insight strong { color: var(--text); }

/* ───── TIERS ───── */
.tiers__head { margin-bottom: 48px; max-width: 60ch; }
.tiers__sub { color: var(--text-muted); margin-top: 16px; font-size: 16px; }
.tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 880px) { .tiers__grid { grid-template-columns: 1fr; } }

.tier {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.tier:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: 0 24px 50px -24px rgba(11,27,51,0.15); }
.tier header { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.tier__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.tier__base {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.tier__count {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--f-display);
}
.tier__count b {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}
.tier__count span { font-size: 14px; color: var(--text-muted); max-width: 14ch; }
.tier__time {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.tier ul { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tier li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  color: var(--text-muted);
  line-height: 1.5;
}
.tier li::before {
  content: "";
  position: absolute;
  left: 4px; top: 7px;
  width: 8px; height: 8px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
.tier__price {
  padding: 10px 14px;
  background: var(--paper-2);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-family: var(--f-mono);
  letter-spacing: 0.01em;
}
.tier--feature {
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  color: var(--on-dark);
  border-color: var(--navy-3);
}
.tier--feature header { border-color: var(--line-dark); }
.tier--feature .tier__name,
.tier--feature .tier__count b { color: var(--on-dark); }
.tier--feature .tier__count span,
.tier--feature .tier__base { color: var(--on-dark-mute); }
.tier--feature .tier__time { color: var(--on-dark-soft); }
.tier--feature li { color: var(--on-dark-mute); }
.tier--feature li::before { border-color: var(--green-2); }
.tier--feature .tier__price { background: rgba(255,255,255,0.06); color: var(--on-dark-mute); }
.tier__flag {
  position: absolute;
  top: -12px; left: 28px;
  background: var(--orange);
  color: white;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 16px -4px rgba(249,115,22,0.55);
}

.tiers__below {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--paper-2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.tiers__below b { font-family: var(--f-display); font-size: 18px; letter-spacing: -0.015em; display: block; margin-bottom: 4px; }
.tiers__below p { color: var(--text-muted); font-size: 15px; max-width: 60ch; }

.tiers__scarcity {
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.01em;
}

/* ───── GUARANTEE ───── */
.guarantee__head { margin-bottom: 48px; }
.guarantee__card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(249,115,22,0.10), rgba(255,255,255,0.02));
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.guarantee__card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(249,115,22,0.18), transparent 60%);
  pointer-events: none;
}
@media (max-width: 720px) { .guarantee__card { grid-template-columns: 1fr; gap: 24px; padding: 28px; } }
.guarantee__seal { color: var(--orange); position: relative; z-index: 1; }
.guarantee__big {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--on-dark);
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.guarantee__big .hl { color: var(--orange); }
.guarantee__copy p { color: var(--on-dark-mute); font-size: 16px; line-height: 1.5; position: relative; z-index: 1; }

.guarantee__terms {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
@media (max-width: 720px) { .guarantee__terms { grid-template-columns: 1fr; gap: 32px; } }
.guarantee__terms h4 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  margin-bottom: 14px;
}
.guarantee__terms ul { display: flex; flex-direction: column; gap: 8px; }
.guarantee__terms li {
  padding-left: 20px;
  position: relative;
  color: var(--on-dark-mute);
  font-size: 14.5px;
  line-height: 1.5;
}
.guarantee__terms li::before {
  content: "";
  position: absolute;
  left: 4px; top: 8px;
  width: 6px; height: 6px;
  border-left: 1.6px solid var(--green-2);
  border-bottom: 1.6px solid var(--green-2);
  transform: rotate(-45deg);
}
.guarantee__terms p { color: var(--on-dark-mute); font-size: 14.5px; line-height: 1.55; }
.guarantee__terms p + p { margin-top: 12px; }
.guarantee__note {
  margin-top: 14px !important;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border-left: 2px solid var(--orange);
  border-radius: 4px;
  font-size: 13.5px !important;
  color: var(--on-dark-mute) !important;
}

/* ───── FAQ ───── */
.faq__head { margin-bottom: 48px; }
.faq__head .h2 { max-width: 22ch; }
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq__list details {
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}
.faq__list details[open] { background: var(--cream); }
.faq__list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 4px;
  font-family: var(--f-display);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color .2s;
}
.faq__list summary:hover { color: var(--orange); }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__plus {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  position: relative;
  transition: transform .25s ease;
}
.faq__plus::before,
.faq__plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.faq__plus::before { top: 10px; left: 2px; width: 18px; height: 2px; }
.faq__plus::after  { left: 10px; top: 2px;  width: 2px; height: 18px; transition: transform .25s; }
.faq__list details[open] .faq__plus::after { transform: rotate(90deg); }
.faq__list details[open] .faq__plus { transform: rotate(180deg); color: var(--orange); }
.faq__list p {
  padding: 0 4px 22px;
  max-width: 76ch;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ───── FINAL CTA ───── */
.final__head { margin-bottom: 48px; }
.final__head .h2 { max-width: 22ch; }
.final__lede { color: var(--on-dark-mute); margin-top: 16px; font-size: 17px; max-width: 56ch; }

.final__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 880px) { .final__grid { grid-template-columns: 1fr; } }

.pilot-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--line-dark);
  padding-left: 24px;
  position: relative;
}
.pilot-steps li {
  position: relative;
  padding: 16px 0 16px;
  border-bottom: 1px solid var(--line-dark);
}
.pilot-steps li:last-child { border-bottom: 0; }
.pilot-steps li::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 22px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--on-dark);
  opacity: 0.3;
}
.pilot-steps li.is-deliver::before { background: var(--orange); opacity: 1; box-shadow: 0 0 0 4px rgba(249,115,22,0.25); }
.ps__day {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 4px;
}
.ps__copy { color: var(--on-dark-mute); font-size: 15px; line-height: 1.5; }
.ps__copy b { color: var(--on-dark); font-family: var(--f-display); font-weight: 600; }
.pilot-steps li.is-deliver .ps__copy b { color: var(--orange); }

.credit {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.credit__tag {
  display: inline-block;
  width: fit-content;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(249,115,22,0.14);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.credit p {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--on-dark);
}
.credit p strong { color: var(--orange); font-weight: 700; }
.credit__list { display: flex; flex-direction: column; gap: 8px; }
.credit__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--on-dark-mute);
  font-size: 14.5px;
}
.credit__cta { display: flex; flex-direction: column; gap: 12px; align-items: stretch; padding-top: 4px; }
.credit__cta .link-arrow { align-self: center; }
.credit__scarcity {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--on-dark-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px dashed var(--line-dark);
}

/* ───── FOOTER ───── */
.footer { padding: 80px 0 32px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand p {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--on-dark-mute);
  max-width: 44ch;
  line-height: 1.55;
}
.footer h5 {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-bottom: 18px;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  color: var(--on-dark-mute);
  font-size: 14.5px;
  transition: color .2s;
}
.footer ul a:hover { color: var(--on-dark); }
.badge-soon {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(249,115,22,0.18);
  color: var(--orange);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: var(--on-dark-soft);
  font-family: var(--f-mono);
  letter-spacing: 0.01em;
  flex-wrap: wrap;
}

/* ───── REVEAL ANIM ───── */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--rd, 0s);
}
.reveal-up.is-in { opacity: 1; transform: translateY(0); }

/* Parallax — driven by JS data-depth */
.parallax { will-change: transform; }

/* ───── tweaks panel offset for safety ───── */
.twk-panel { z-index: 99999 !important; }

/* ───── ROI CALCULATOR ───── */
.roi__head { margin-bottom: 56px; max-width: 60ch; }
.roi__head .lede { margin-top: 16px; }

.roi-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 32px 80px -28px rgba(11,27,51,0.18);
  overflow: hidden;
}
.roi-card__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
}
@media (max-width: 880px) {
  .roi-card__grid { grid-template-columns: 1fr; }
}

/* ─── inputs side ─── */
.roi-inputs {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid var(--line);
}
@media (max-width: 880px) {
  .roi-inputs { border-right: 0; border-bottom: 1px solid var(--line); }
}
.roi-inputs__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 4px;
}

/* slider */
.roi-slider {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.roi-slider__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.roi-slider__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--text);
  letter-spacing: -0.005em;
}
.roi-slider__value {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  display: inline-flex;
  align-items: baseline;
}
.roi-slider__value-curr { font-size: 0.65em; color: var(--text-soft); margin-right: 2px; }

.roi-range {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  height: 28px;
  cursor: pointer;
  display: block;
}
.roi-range:focus { outline: none; }

/* WebKit track */
.roi-range::-webkit-slider-runnable-track {
  height: 8px;
  background: var(--paper-2);
  border-radius: 4px;
  border: 1px solid var(--line-strong);
}
/* Mozilla track */
.roi-range::-moz-range-track {
  height: 8px;
  background: var(--paper-2);
  border-radius: 4px;
  border: 1px solid var(--line-strong);
}
.roi-range::-moz-range-progress {
  height: 8px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  border-radius: 4px;
}

/* WebKit thumb */
.roi-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: white;
  border: 3px solid var(--orange);
  border-radius: 50%;
  margin-top: -8px;
  box-shadow: 0 4px 12px -2px rgba(249,115,22,0.4);
  transition: transform .15s ease, box-shadow .15s ease;
}
.roi-range:hover::-webkit-slider-thumb,
.roi-range:focus::-webkit-slider-thumb { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(249,115,22,0.18), 0 4px 12px -2px rgba(249,115,22,0.5); }

/* Mozilla thumb */
.roi-range::-moz-range-thumb {
  width: 22px; height: 22px;
  background: white;
  border: 3px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 4px 12px -2px rgba(249,115,22,0.4);
  transition: transform .15s ease, box-shadow .15s ease;
}
.roi-range:hover::-moz-range-thumb,
.roi-range:focus::-moz-range-thumb { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(249,115,22,0.18), 0 4px 12px -2px rgba(249,115,22,0.5); }

/* Fill via CSS var --p (0-1) on WebKit (no progress pseudo) */
.roi-range {
  background:
    linear-gradient(90deg, var(--orange) 0%, var(--orange-2) calc(var(--p, 0.25) * 100%), transparent calc(var(--p, 0.25) * 100%)) no-repeat;
  background-size: 100% 8px;
  background-position: 0 50%;
}
.roi-range::-webkit-slider-runnable-track { background: var(--paper-2); }

.roi-slider__ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--text-soft);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* tier strip */
.roi-tier-strip {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(90deg, rgba(249,115,22,0.06), rgba(249,115,22,0.0));
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 12px;
}
.roi-tier-strip__label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.roi-tier-strip__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.roi-tier-strip__count {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  background: rgba(249,115,22,0.10);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.roi-tier-strip .roi-help { margin-right: 4px; }

/* scenarios */
.roi-scenarios {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.roi-scenarios legend {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0;
}
.roi-scenarios__row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.roi-chip {
  appearance: none;
  border: 1px solid var(--line-strong);
  background: white;
  color: var(--text-muted);
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .15s, border-color .15s, background .15s, transform .15s;
}
.roi-chip:hover { color: var(--text); border-color: var(--text-muted); }
.roi-chip.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--on-dark);
}

/* help button (tooltip trigger) */
.roi-help {
  appearance: none;
  border: 0;
  background: var(--paper-2);
  color: var(--text-muted);
  width: 18px; height: 18px;
  border-radius: 50%;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  cursor: help;
  position: relative;
  line-height: 1;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.roi-help:hover { background: var(--text-muted); color: white; }
.roi-help--inline {}
.roi-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--navy);
  color: var(--on-dark);
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.005em;
  padding: 8px 12px;
  border-radius: 8px;
  width: max-content;
  max-width: 240px;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 10;
  text-align: left;
  white-space: normal;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.35);
}
.roi-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy);
}
.roi-help:hover .roi-tooltip,
.roi-help.is-tip-open .roi-tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ─── results side ─── */
.roi-results {
  padding: 32px;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(249,115,22,0.10), transparent 60%),
    linear-gradient(180deg, var(--navy), var(--navy-2));
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.roi-results__bench {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  background: rgba(16,185,129,0.10);
  border: 1px solid rgba(16,185,129,0.30);
  border-radius: 999px;
  max-width: 100%;
}
.roi-results__bench-icon {
  display: inline-flex;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.roi-results__bench-label {
  font-size: 12.5px;
  color: var(--on-dark);
  letter-spacing: -0.005em;
  font-weight: 500;
}
.roi-results__bench-val {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--green-2);
  letter-spacing: -0.01em;
  padding-left: 8px;
  border-left: 1px solid rgba(16,185,129,0.30);
  margin-left: 2px;
}

.roi-results__hero {
  padding: 4px 0 16px;
  border-bottom: 1px solid var(--line-dark);
  min-width: 0;
}
.roi-results__hero-label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-bottom: 8px;
}
.roi-results__hero-num {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--orange);
  font-feature-settings: "tnum";
  min-width: 0;
  word-break: keep-all;
  white-space: nowrap;
}
.roi-results__hero-curr { font-size: 0.55em; opacity: 0.75; }
.roi-results__hero-period {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--on-dark-mute);
  letter-spacing: 0.04em;
}
.roi-results__hero-period-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.18);
}

.roi-results__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 1080px) {
  .roi-results__row { grid-template-columns: 1fr 1fr; }
  .roi-results__row .roi-results__cell:nth-child(3) { grid-column: span 2; }
}
@media (max-width: 480px) {
  .roi-results__row { grid-template-columns: 1fr; }
  .roi-results__row .roi-results__cell:nth-child(3) { grid-column: span 1; }
}

.roi-results__cell {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  padding: 14px 16px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.roi-results__cell-val {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--on-dark);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  line-height: 1.05;
  display: inline-flex;
  align-items: baseline;
  min-width: 0;
  white-space: nowrap;
}
.roi-results__cell-curr { font-size: 0.65em; opacity: 0.7; margin-right: 2px; }
.roi-results__cell-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  color: var(--on-dark-soft);
  font-weight: 500;
  text-transform: lowercase;
}

.roi-results__cta {
  margin-top: 4px;
  text-align: center;
  padding: 14px 20px;
  font-size: 14px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.roi-results__cta::after { content: "  →"; opacity: 0.85; }

.roi-footnote {
  font-size: 11px;
  line-height: 1.5;
  color: var(--on-dark-soft);
  margin-top: 4px;
}
