/* ============================================================================
   SUBPRIME KINGS — design system
   Dark, calibrated. Single accent (gold). Asymmetric. No neon, no shadows.
   ============================================================================ */

:root {
  /* surface */
  --bg:           #0A0A0B;
  --surface:      #101013;
  --surface-2:   #15151A;
  --surface-3:   #1B1B22;

  /* lines */
  --hair:         #1F1F25;
  --rule:         #2A2A32;
  --rule-bright:  #3B3B45;

  /* type */
  --ink:          #F2EFE7;     /* warm off-white */
  --ink-mute:     #9D9DA5;
  --ink-faint:    #5C5C66;
  --ink-fade:     #3F3F47;

  /* single accent */
  --gold:         #C8A26A;
  --gold-bright:  #E2C48A;
  --gold-deep:    #8E7240;
  --gold-wash:    rgba(200, 162, 106, 0.10);
  --gold-line:    rgba(200, 162, 106, 0.32);

  /* states */
  --bad:          #7A5E5E;
  --good:         var(--gold);

  /* type stacks (skill bans Inter) */
  --display:  'Space Grotesk', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --body:     'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:     'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;

  /* layout */
  --gutter:   clamp(20px, 4vw, 56px);
  --max:      1320px;
  --section:  clamp(80px, 11vw, 160px);

  /* motion */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }

/* selection */
::selection { background: var(--gold); color: #0A0A0B; }

/* film grain — fixed pseudo, never on a scrolling container */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.92 0 0 0 0 0.85 0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ─────────────────────  PRIMITIVES  ───────────────────── */

a { color: inherit; text-decoration: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.eyebrow__num { color: var(--gold); font-weight: 500; }
.eyebrow__bar { width: 28px; height: 1px; background: var(--rule-bright); display: inline-block; }
.eyebrow__label { color: var(--ink-mute); }

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--rule-bright);
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  cursor: pointer;
  will-change: transform;
}
.btn svg { transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--gold {
  --btn-bg: var(--gold);
  --btn-fg: #0A0A0B;
  --btn-bd: var(--gold);
}
.btn--gold:hover { --btn-bg: var(--gold-bright); --btn-bd: var(--gold-bright); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--rule);
}
.btn--ghost:hover { --btn-bd: var(--gold); --btn-fg: var(--gold); }

.btn--lg { padding: 18px 28px; font-size: 15px; }

/* dot indicators */
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-faint); display: inline-block; }
.dot--live { background: var(--gold); animation: pulse 2.4s var(--ease) infinite; }
.dot--gold { background: var(--gold); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.85); }
}

/* reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .dot--live, .panel__pulse, .ticker__track { animation: none !important; }
}

/* ─────────────────────  NAV  ───────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter);
  background: rgba(10, 10, 11, 0.6);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(10, 10, 11, 0.85);
  border-bottom-color: var(--hair);
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.nav__logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.footer__logo {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: -4px;
}
.nav__wordmark {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.18em;
}
.nav__links {
  display: flex; gap: 28px;
  font-family: var(--mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-mute);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav__cta:hover { background: var(--gold); color: #0A0A0B; }
.nav__cta svg { transition: transform .3s var(--ease); }
.nav__cta:hover svg { transform: translateX(3px); }

@media (max-width: 880px) {
  .nav__links { display: none; }
}

@media (max-width: 560px) {
  .nav { padding: 13px var(--gutter); gap: 12px; }
  .nav__brand { gap: 9px; min-width: 0; }
  .nav__logo { height: 30px; }
  .nav__wordmark {
    font-size: 12px;
    letter-spacing: 0.12em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav__cta {
    padding: 9px 14px;
    font-size: 12px;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  .nav__wordmark { display: none; }
  .nav__cta { padding: 9px 15px; }
}

/* ─────────────────────  HERO  ───────────────────── */

.hero {
  position: relative;
  min-height: 100dvh;
  padding: 140px var(--gutter) 0;
  overflow: hidden;
  background:
    radial-gradient(900px 600px at 88% -10%, rgba(200,162,106,0.10), transparent 60%),
    radial-gradient(700px 500px at -5% 30%, rgba(200,162,106,0.04), transparent 60%),
    var(--bg);
}
.hero::before {
  /* faint blueprint grid */
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.7), transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.7), transparent 75%);
}

.hero__grid {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  padding-bottom: clamp(64px, 9vw, 120px);
}

.hero__lede { max-width: 820px; }

.hero__corner {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  text-align: right;
}
.hero__address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--mono);
  color: var(--ink-mute);
  transition: color .25s var(--ease);
}
.hero__address:hover { color: var(--gold); }
.hero__blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 8px 16px;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.hero__blog-link:hover { background: var(--gold); color: #0A0A0B; }
.hero__blog-link svg { transition: transform .3s var(--ease); }
.hero__blog-link:hover svg { transform: translateX(3px); }
.hero__address-eyebrow {
  font-size: 15.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__address-text {
  font-size: 18.6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.55;
}

.hero__headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 28px 0 32px;
}
.hero__headline .line {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: lineIn .9s var(--ease) forwards;
}
.hero__headline .line:nth-child(1) { animation-delay: .1s; }
.hero__headline .line:nth-child(2) { animation-delay: .2s; }
.hero__headline .line:nth-child(3) { animation-delay: .35s; }
.hero__headline .line:nth-child(4) { animation-delay: .45s; }
.hero__headline .line:nth-child(5) { animation-delay: .55s; }
.hero__headline .line--accent { color: var(--gold); }
.hero__headline .line--meta {
  font-weight: 400;
  font-size: 0.7em;
  color: var(--ink-mute);
  letter-spacing: -0.02em;
}
.hero__headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-faint);
  font-family: var(--display);
}
.big-90 {
  font-style: normal;
  color: var(--gold);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05em;
  letter-spacing: -0.04em;
}

@keyframes lineIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  max-width: 640px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--ink-mute);
  margin-bottom: 36px;
}
.hero__sub strong { color: var(--ink); font-weight: 500; }

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__chips {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 18px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hero__chips li { display: inline-flex; gap: 10px; }
.hero__chips li::before { content: '◆'; color: var(--gold); }

/* hero status panel */
.hero__panel {
  align-self: end;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)), var(--surface);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 22px;
  font-family: var(--mono);
  font-size: 12px;
  position: relative;
  overflow: hidden;
}
.hero__panel::before {
  /* scanning line */
  content: ''; position: absolute; left: 0; right: 0; top: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: scan 6s linear infinite;
}
@keyframes scan {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(420px); opacity: 0; }
}
.panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--hair);
}
.panel__head-l { display: inline-flex; align-items: center; gap: 10px; }
.panel__title { color: var(--ink); letter-spacing: 0.16em; font-size: 11px; }
.panel__id { color: var(--ink-faint); letter-spacing: 0.14em; font-size: 11px; }

.panel__body { display: flex; flex-direction: column; gap: 12px; }
.panel__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 14px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--hair);
  font-size: 11.5px;
}
.panel__row:last-child { border-bottom: none; }
.panel__label { color: var(--ink-faint); letter-spacing: 0.06em; }
.panel__value { letter-spacing: 0.04em; }
.panel__value--bad { color: var(--bad); text-decoration: line-through; text-decoration-thickness: 1px; }
.panel__value--good { color: var(--gold); }
.panel__arrow { color: var(--ink-faint); text-align: center; }

.panel__foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--hair);
  display: flex; align-items: end; justify-content: space-between;
}
.panel__metric { display: flex; align-items: baseline; gap: 10px; }
.panel__metric-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 56px;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.panel__metric-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.panel__pulse {
  width: 80px; height: 32px;
  background:
    repeating-linear-gradient(90deg,
      transparent 0 6px,
      var(--gold-line) 6px 7px);
  mask-image: linear-gradient(90deg, transparent, #000, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000, transparent);
  animation: pulseBars 3s linear infinite;
}
@keyframes pulseBars {
  0% { background-position: 0 0; }
  100% { background-position: 200px 0; }
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__panel { margin-top: 16px; }
  .hero__corner {
    position: static;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 16px;
  }
}

/* hero ticker */
.ticker {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
  margin: 0 calc(-1 * var(--gutter));
  padding: 18px 0;
  white-space: nowrap;
}
.ticker__track {
  display: inline-flex; gap: 56px;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--ink-faint);
  animation: tickerScroll 38s linear infinite;
  will-change: transform;
}
.ticker__track span { display: inline-block; }
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────  SECTIONS  ───────────────────── */

.section {
  position: relative;
  padding: var(--section) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.section__head { max-width: 880px; margin-bottom: clamp(48px, 6vw, 96px); }
.section__title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-top: 24px;
}
.section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.section__title--small {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section__sub {
  margin-top: 24px;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-mute);
  max-width: 720px;
  line-height: 1.6;
}
.section__sub strong { color: var(--ink); font-weight: 500; }

/* ─────────────────────  PROBLEM  ───────────────────── */

.problem { border-top: 1px solid var(--hair); }
.problems {
  list-style: none;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
}
.problem-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: background .35s var(--ease);
}
.problem-row:hover { background: rgba(200,162,106,0.02); }
.problem-row__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.16em;
  padding-top: 6px;
}
.problem-row h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--ink);
}
.problem-row p {
  color: var(--ink-mute);
  font-size: clamp(15px, 1.1vw, 16.5px);
  line-height: 1.6;
  max-width: 760px;
}

.problem__pull {
  margin-top: clamp(56px, 8vw, 96px);
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink-faint);
  max-width: 980px;
}
.problem__pull span { color: var(--ink); }

/* ─────────────────────  SHIFT  ───────────────────── */

.shift { border-top: 1px solid var(--hair); }
.shift__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.shift__bullets {
  margin-top: 48px;
  display: flex; flex-direction: column; gap: 28px;
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.shift__bullet {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
}
.shift__num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.16em;
  padding-top: 4px;
}
.shift__bullet p {
  color: var(--ink-mute);
  font-size: 16px;
  line-height: 1.6;
}
.shift__bullet strong { color: var(--ink); font-weight: 500; }

.shift__viz {
  position: sticky;
  top: 120px;
}
.viz {
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  border-radius: 4px;
}
.viz__lane { padding: 14px 0; border-bottom: 1px solid var(--hair); }
.viz__lane:last-of-type { border-bottom: none; }
.viz__tag {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  border: 1px solid var(--rule);
  border-radius: 999px;
  margin-bottom: 14px;
}
.viz__tag--gold { color: var(--gold); border-color: var(--gold-line); }
.viz__steps { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--ink-mute); font-size: 13px; }
.viz__sep { color: var(--ink-fade); }
.viz__sep--gold { color: var(--gold); }
.viz__dead { color: var(--bad); text-decoration: line-through; }
.viz__live { color: var(--gold); font-weight: 500; }
.viz__readout {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--hair);
  display: flex; flex-direction: column; gap: 10px;
}
.viz__readout > div { display: flex; justify-content: space-between; }
.viz__k { color: var(--ink-faint); }
.viz__v { color: var(--gold); }

@media (max-width: 980px) {
  .shift__grid { grid-template-columns: 1fr; }
  .shift__viz { position: static; }
}

/* ─────────────────────  PROGRAM (PHASES)  ───────────────────── */

.program { border-top: 1px solid var(--hair); }
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.phase {
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column;
  position: relative;
  transition: background .4s var(--ease);
}
.phase:last-child { border-right: none; }
.phase:hover { background: rgba(200,162,106,0.025); }
.phase--mid { background: rgba(200,162,106,0.025); }
.phase--mid::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--gold-line);
}
.phase--mid::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 1px; background: var(--gold-line);
}

.phase__head { margin-bottom: 28px; }
.phase__range {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
}
.phase__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 14px;
}
.phase__lede {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.55;
}
.phase__list {
  list-style: none;
  border-top: 1px solid var(--hair);
  padding-top: 20px;
  margin-bottom: 28px;
  display: flex; flex-direction: column; gap: 12px;
  flex-grow: 1;
}
.phase__list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-mute);
  font-size: 14.5px;
  line-height: 1.5;
}
.phase__list li::before {
  content: '';
  position: absolute; left: 0; top: 10px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.phase__out {
  display: flex; flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--hair);
}
.phase__out-k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.phase__out-v {
  font-family: var(--display);
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--ink);
}

@media (max-width: 980px) {
  .phases { grid-template-columns: 1fr; }
  .phase { border-right: none; border-bottom: 1px solid var(--rule); }
  .phase:last-child { border-bottom: none; }
  .phase--mid::before, .phase--mid::after { display: none; }
}

/* ─────────────────────  INSTALL (BENTO)  ───────────────────── */

.install { border-top: 1px solid var(--hair); }
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.bento__cell {
  background: var(--bg);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
  grid-column: span 2;
  transition: background .35s var(--ease);
}
.bento__cell:hover { background: var(--surface); }
.bento__cell--lg { grid-column: span 6; }
.bento__cell--accent {
  background: linear-gradient(180deg, rgba(200,162,106,0.06), rgba(200,162,106,0.015));
}
.bento__cell--accent:hover {
  background: linear-gradient(180deg, rgba(200,162,106,0.10), rgba(200,162,106,0.03));
}
.bento__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.bento__cell h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.bento__cell p {
  color: var(--ink-mute);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 520px;
}
.bento__meta {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__cell, .bento__cell--lg { grid-column: span 2; }
}

/* ─────────────────────  OUTCOMES  ───────────────────── */

.outcomes { border-top: 1px solid var(--hair); }
.outcomes__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rule);
}
.outcome {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: clamp(24px, 3vw, 36px) clamp(8px, 2vw, 24px);
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.outcome:nth-child(odd) { border-right: 1px solid var(--rule); }
.outcome__k {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.outcome__v {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
}

@media (max-width: 800px) {
  .outcomes__list { grid-template-columns: 1fr; }
  .outcome { grid-template-columns: 1fr; gap: 8px; }
  .outcome:nth-child(odd) { border-right: none; }
}

/* ─────────────────────  FIT  ───────────────────── */

.fit { border-top: 1px solid var(--hair); }
.fit__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.fit__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
.fit__col h4 {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.fit__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.fit__col li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}
.check li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 14px; height: 1px; background: var(--gold);
}
.cross li {
  color: var(--ink-faint);
}
.cross li::before {
  content: '✕';
  position: absolute; left: 0; top: 0;
  color: var(--ink-fade);
  font-size: 13px;
}

@media (max-width: 980px) {
  .fit__grid { grid-template-columns: 1fr; }
  .fit__cols { grid-template-columns: 1fr; }
}

/* ─────────────────────  REALISM  ───────────────────── */

.realism {
  border-top: 1px solid var(--hair);
  text-align: left;
}
.realism__inner { max-width: 980px; }
.realism__body {
  margin-top: 24px;
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--ink-mute);
  line-height: 1.65;
  max-width: 760px;
}

/* ─────────────────────  CTA / CALENDAR  ───────────────────── */

.cta {
  border-top: 1px solid var(--hair);
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(200,162,106,0.08), transparent 60%),
    transparent;
}
.cta__head { max-width: 880px; margin-bottom: 64px; }

.cta__embed-frame {
  border: 1px solid var(--rule);
  background: var(--surface);
  border-radius: 6px;
  overflow: hidden;
}
.cta__embed-bar {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: var(--surface-2);
}
.cta__embed-label { color: var(--gold); flex-grow: 1; }
.cta__embed-id { color: var(--ink-faint); }

.cta__embed-slot {
  min-height: 720px;
  padding: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent 0 12px,
      rgba(255,255,255,0.012) 12px 13px);
}
.cta__embed-slot iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
}
.cta__embed-empty {
  text-align: center;
  display: flex; flex-direction: column; gap: 22px; align-items: center;
}
.cta__embed-empty-mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  padding: 10px 18px;
  border: 1px dashed var(--rule);
  border-radius: 4px;
}
.cta__embed-note {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-fade);
}

/* ─────────────────────  FOOTER  ───────────────────── */

.footer {
  border-top: 1px solid var(--hair);
  padding: 80px var(--gutter) 32px;
  max-width: var(--max);
  margin: 0 auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hair);
}
.footer__brand { display: flex; align-items: flex-start; gap: 16px; }
.footer__brand > div { display: flex; flex-direction: column; gap: 6px; }
.footer__wordmark {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.footer__tag {
  font-size: 13px;
  color: var(--ink-mute);
  max-width: 280px;
  line-height: 1.5;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer__cols > div { display: flex; flex-direction: column; gap: 8px; }
.footer__k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.footer__v {
  font-family: var(--display);
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
}
.footer__link { color: var(--gold); transition: color .2s var(--ease); }
.footer__link:hover { color: var(--gold-bright); }

.footer__base {
  padding-top: 32px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-fade);
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: 1fr; gap: 20px; }
}
