/* ============================================================
   STRATUS LABS — Visual Infographic Lander
   Design system: order.stratuslabshq.com sales-page CSS, verbatim.
     bg #000 · cards #121212 + 1px rgba(255,255,255,.12) · radius 0
     #fff headings · #b8b8b8 body · #858585 grey dot eyebrows
     Host Grotesk 400 display · DM Sans body · mono ONLY on 10px
     uppercase spec labels · NO copper / amber / cyan anywhere
   ============================================================ */

:root {
  --bg:           #000000;
  --card-bg:      #121212;
  --border:       rgba(255,255,255,0.12);
  --border-soft:  rgba(255,255,255,0.07);
  --icon-bg:      rgba(255,255,255,0.03);

  --text-primary: #ffffff;
  --text-muted:   #b8b8b8;
  --text-eyebrow: #858585;
  --text-ghost:   #5e5e5e;
  --ink:          #0a0a0a;     /* button text */

  /* problem greys (monochrome) */
  --grey:      #cfcfcf;
  --grey-mid:  #8a8a8a;
  --grey-dim:  #3a3a3a;

  --display: 'Host Grotesk', 'Host Grotesk Placeholder', sans-serif;
  --sans:    'DM Sans', 'DM Sans Placeholder', sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --r-pill: 48px;
  --col: 470px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }

body {
  background: var(--bg);
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* static film grain — feTurbulence 0.85, opacity .14, screen */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch' seed='3'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.85 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

/* ---- type primitives ------------------------------------- */
.display, .h-section {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  text-wrap: balance;
}
.display em, .h-section em {
  font-style: italic;
  color: var(--text-muted);
  font-weight: 400;
}

/* eyebrow: 14px DM Sans grey + 8px grey dot */
.eyebrow {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--text-eyebrow);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow.dot::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-eyebrow);
  flex-shrink: 0;
}

.caption {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.5;
  text-wrap: pretty;
}

/* the ONLY permitted monospace: tiny uppercase spec labels */
.speclabel {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-eyebrow);
  line-height: 1;
}

/* ---- layout shell ---------------------------------------- */
.band {
  position: relative;
  width: 100%;
  padding: 84px 24px;
  border-top: 1px solid var(--border-soft);
}
.band.alt   { background: var(--bg); }
.band.flush { border-top: none; }
.inner {
  width: 100%;
  max-width: var(--col);
  margin: 0 auto;
}
.section-head { margin-bottom: 36px; }
.section-head .eyebrow { display: inline-flex; margin-bottom: 16px; }
.display[style], .h-section { font-size: 28px; }

/* ===========================================================
   NAV
   =========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.78), rgba(10,10,10,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-decoration: none;
}
.nav-brand .mark { color: var(--text-primary); flex: 0 0 auto; display: block; }
.nav-cta {
  background: #f5f5f5;
  color: var(--ink);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}
.nav-cta:hover { background: #fff; transform: translateY(-1px); }

/* ===========================================================
   1 · HERO
   =========================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: none;
}
.hero__img {
  position: absolute; inset: 0;
  background: #000 58% 18% / cover no-repeat;
  background-image: url('assets/hero-capsule2.jpeg');
  z-index: 0;
}
.hero__veil {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.05) 24%, rgba(0,0,0,0) 48%, rgba(0,0,0,0.9) 80%, #000 100%);
}
.hero__inner {
  position: relative; z-index: 3;
  width: 100%; max-width: var(--col); margin: 0 auto;
  padding-bottom: 42px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 11.5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero h1 em { font-style: italic; color: var(--text-muted); font-weight: 400; }
.hero__sub {
  font-family: var(--sans);
  font-size: 16px; color: var(--text-muted);
  max-width: 32ch; line-height: 1.4;
  text-shadow: 0 1px 14px rgba(0,0,0,0.7);
}
.hero__sub b { color: var(--text-primary); font-weight: 500; }

/* draining balance meter (monochrome) */
.meter {
  margin-top: 30px; display: flex; align-items: center; gap: 14px;
}
.meter__track {
  position: relative; height: 8px; flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  overflow: hidden;
}
.meter__fill {
  position: absolute; inset: 0; right: auto;
  width: 88%;
  background: linear-gradient(90deg, #3a3a3a, var(--grey));
  transition: width 2.4s var(--ease);
}
.hero.is-in .meter__fill { width: 14%; }
.meter__label {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 2px; color: var(--text-eyebrow);
  text-transform: uppercase;
  white-space: nowrap;
}

.scrollcue {
  position: absolute; left: 50%; bottom: 20px; z-index: 4;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-ghost);
}
.scrollcue span { animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%,100%{transform:translateY(0);opacity:.5} 50%{transform:translateY(5px);opacity:1} }

/* ===========================================================
   2 · WIDENING GAP — bars
   =========================================================== */
.gap-rows { display: flex; flex-direction: column; gap: 26px; }
.gap-row__top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 11px;
}
.gap-row__yr {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 2px; color: var(--text-eyebrow); text-transform: uppercase;
}
.gap-row__val {
  font-family: var(--mono); font-size: 10px;
  color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase;
}
.gap-bar {
  height: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-soft);
  position: relative; overflow: hidden;
}
.gap-bar__fill {
  position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  transition: width 1.5s var(--ease);
}
.gap-bar__fill.f1 { background: linear-gradient(90deg, #2b2b2b, #6a6a6a); }
.gap-bar__fill.f5 { background: linear-gradient(90deg, #6a6a6a, var(--grey)); }
.is-in .gap-bar__fill.f1 { width: 22%; }
.is-in .gap-bar__fill.f5 { width: 74%; }

/* ===========================================================
   3 · WHAT'S BEING WITHDRAWN — vial gauge
   =========================================================== */
.withdrawn { display: flex; gap: 32px; align-items: center; }
.vial {
  flex: 0 0 84px; height: 196px; position: relative;
  border: 1.5px solid var(--border);
  overflow: hidden; background: rgba(255,255,255,0.02);
}
.vial__fill {
  position: absolute; left: 0; right: 0; bottom: 0; height: 100%;
  background: linear-gradient(180deg, #6a6a6a, #232323);
  transition: height 2s var(--ease);
}
.is-in .vial__fill { height: 50%; }
.vial__mark {
  position: absolute; left: 0; right: 0; top: 50%;
  border-top: 1px dashed rgba(255,255,255,0.5); opacity: 0;
  transition: opacity .6s ease 1.4s;
}
.is-in .vial__mark { opacity: .9; }
.vial__pct {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: var(--display); font-size: 17px; color: var(--text-primary);
}
.withdrawn__body h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 21px; line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 14px; color: var(--text-primary);
}
.withdrawn__body h3 b { color: var(--text-primary); font-weight: 400; }
.stat-line {
  font-family: var(--sans); font-size: 14px;
  color: var(--text-muted); line-height: 1.5; border-left: 1px solid var(--grey-dim);
  padding-left: 14px;
}
.stat-line b { color: var(--text-primary); font-weight: 500; }

/* ===========================================================
   4 · CLOCK RINGS — centerpiece
   =========================================================== */
.clocks { display: flex; flex-direction: column; gap: 12px; }
.clock-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 26px 22px;
  display: flex; gap: 22px; align-items: center;
}
.clock-card.misaligned { border-color: rgba(255,255,255,0.18); }
.clock-svg { flex: 0 0 116px; }
.clock-meta__tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-eyebrow);
  margin-bottom: 9px;
}
.clock-meta__state { font-size: 20px; font-weight: 400; font-family: var(--display); letter-spacing: -0.02em; color: var(--text-primary); }
.clock-meta__note {
  font-size: 13px; color: var(--text-eyebrow); margin-top: 7px; line-height: 1.45;
}
.clock-legend {
  display: flex; gap: 20px; margin-top: 22px; flex-wrap: wrap;
}
.clock-legend span {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-eyebrow);
}
.clock-legend i { width: 14px; height: 3px; display: inline-block; }

.ring-arc { stroke-dashoffset: 8; transition: stroke-dashoffset 1.4s var(--ease); }
.is-in .ring-arc { stroke-dashoffset: 0; }
.clock-svg .rotor { transform-origin: 60px 60px; transition: transform 1.7s var(--ease); }

/* ===========================================================
   5 · COMPOUNDING LOOP
   =========================================================== */
.loop-wrap { position: relative; width: 100%; max-width: 360px; margin: 0 auto; aspect-ratio: 1; }
.loop-node {
  position: absolute; width: 134px; transform: translate(-50%, -50%);
  text-align: center;
}
.loop-node__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bg); border: 1.5px solid var(--grey-mid);
  margin: 0 auto 9px;
}
.loop-node__t { font-size: 14px; font-weight: 400; color: var(--text-primary); line-height: 1.25; font-family: var(--display); letter-spacing: -0.02em; }
.loop-node__s {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 1.5px; color: var(--text-ghost); margin-top: 6px; text-transform: uppercase;
}
.loop-node.n0 { top: 4%;  left: 50%; }
.loop-node.n1 { top: 50%; left: 96%; }
.loop-node.n2 { top: 96%; left: 50%; }
.loop-node.n3 { top: 50%; left: 4%; }
.loop-svg { position: absolute; inset: 0; }
.loop-svg .seg { transition: stroke-dashoffset 0.7s var(--ease); }

/* ===========================================================
   square icon box — 40px, radius 0 (shared: .icon, tile, flow)
   =========================================================== */
.icon, .tile__ico, .flow-step__ico {
  width: 40px; height: 40px; flex: 0 0 auto;
  border: 1px solid var(--border);
  background: var(--icon-bg);
  display: grid; place-items: center;
  color: var(--text-primary);
}
.icon svg, .tile__ico svg, .flow-step__ico svg {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ===========================================================
   6 · THE PART IN YOUR FAVOR — flow (monochrome)
   =========================================================== */
.flow { display: flex; align-items: stretch; gap: 10px; }
.flow-step {
  flex: 1; background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 22px 12px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.flow-step__t { font-size: 13px; color: var(--text-muted); line-height: 1.35; }
.flow-arrow { align-self: center; color: var(--text-ghost); flex: 0 0 auto; }
.refill {
  width: 100%; height: 7px; margin-top: 2px;
  background: rgba(255,255,255,0.08); overflow: hidden; position: relative;
}
.refill::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 0;
  background: linear-gradient(90deg, #6a6a6a, #f5f5f5);
  transition: width 1.8s var(--ease) .4s;
}
.is-in .refill::after { width: 100%; }

/* ===========================================================
   7 · WHY IT FAILED YOU BEFORE — tiles (monochrome)
   =========================================================== */
.tiles { display: flex; flex-direction: column; gap: 10px; }
.tile {
  display: flex; gap: 16px; align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 18px 20px;
}
.tile__t { font-size: 16px; font-weight: 400; color: var(--text-primary); margin-bottom: 4px; font-family: var(--display); letter-spacing: -0.02em; }
.tile__s { font-size: 14px; color: var(--text-muted); line-height: 1.45; }
.tile__num {
  margin-left: auto; align-self: flex-start;
  font-family: var(--mono);
  font-size: 10px; color: var(--text-ghost); letter-spacing: 2px;
}

/* ===========================================================
   8 · WHAT'S INSIDE — feature cards (production feat-grid)
   =========================================================== */
.spec-strip {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.spec-cell {
  flex: 1;
  padding: 16px 18px;
  border-left: 1px solid var(--border);
}
.spec-cell:first-child { border-left: 0; }
.spec-cell .speclabel { display: block; margin-bottom: 9px; }
.spec-value {
  font-family: var(--display);
  font-size: 26px; font-weight: 400; letter-spacing: -0.02em;
  color: var(--text-primary); line-height: 1;
  display: inline-flex; align-items: baseline; gap: 5px;
}
.spec-value .u { font-size: 12px; color: var(--text-eyebrow); font-weight: 400; letter-spacing: 0; }

.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.feat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feat-card .text { display: flex; flex-direction: column; gap: 8px; }
.feat-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}
.feat-card p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* ===========================================================
   9 · TIMELINE
   =========================================================== */
.timeline { display: flex; flex-direction: column; }
.tl-step {
  display: grid; grid-template-columns: 86px 1fr; gap: 18px;
  padding-bottom: 30px; position: relative;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before {
  content: ''; position: absolute; left: 5px; top: 16px; bottom: -2px;
  width: 1px; background: var(--border);
}
.tl-step:last-child::before { display: none; }
.tl-dot {
  position: absolute; left: 0; top: 6px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--bg); border: 1.5px solid var(--grey-mid);
}
.tl-wk {
  grid-column: 1; padding-left: 24px;
  font-family: var(--mono); font-size: 10px;
  color: var(--text-eyebrow); letter-spacing: 2px; text-transform: uppercase;
}
.tl-body { grid-column: 2; }
.tl-body h4 { font-size: 17px; font-weight: 400; margin-bottom: 4px; color: var(--text-primary); font-family: var(--display); letter-spacing: -0.02em; }
.tl-body p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }
.tl-guarantee {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: 10px; color: var(--text-muted);
  letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.tl-guarantee svg { color: var(--text-muted); }

/* ===========================================================
   10 · DO NOTHING vs PUT IT BACK (monochrome contrast)
   =========================================================== */
.diverge-svg { width: 100%; height: auto; display: block; margin-bottom: 24px; }
.diverge-svg path.dpath { transition: stroke-dashoffset 1.6s var(--ease); }
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.vs-col {
  padding: 22px 18px;
  border: 1px solid var(--border);
  background: var(--card-bg);
}
.vs-col.warm  { border-color: rgba(255,255,255,0.3); }
.vs-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 12px;
}
.vs-col.cold .vs-tag { color: var(--text-eyebrow); }
.vs-col.warm .vs-tag { color: var(--text-primary); }
.vs-col p { font-size: 14px; line-height: 1.5; }
.vs-col.cold p { color: var(--text-muted); }
.vs-col.warm p { color: var(--text-primary); }

/* ===========================================================
   11 · CTA
   =========================================================== */
.cta { text-align: center; padding-top: 92px; padding-bottom: 92px; }
.cta h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(28px, 8vw, 38px); letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 30px; text-wrap: balance; color: var(--text-primary);
}
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: #f5f5f5; color: var(--ink); text-decoration: none;
  font-family: var(--sans); font-weight: 500; font-size: 15px;
  letter-spacing: -0.005em;
  padding: 15px 28px; border-radius: var(--r-pill);
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.btn-cta:hover { background: #fff; transform: translateY(-1px); }
.btn-cta svg { transition: transform .2s var(--ease); }
.btn-cta:hover svg { transform: translateX(4px); }
.cta__micro {
  font-family: var(--sans); font-size: 12px;
  color: var(--text-eyebrow); margin-top: 22px; letter-spacing: 0;
}
.cta__founder {
  font-size: 13px; color: var(--text-eyebrow); margin-top: 36px;
  display: inline-flex; align-items: center; gap: 9px;
}

/* ===========================================================
   12 · FOOTER
   =========================================================== */
.foot {
  text-align: center; padding: 44px 24px 52px; border-top: 1px solid var(--border);
  background: var(--bg);
}
.foot__logo {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-size: 15px; letter-spacing: -0.01em;
  color: var(--text-primary); margin-bottom: 18px; font-weight: 500;
}
.foot__logo .mark { color: var(--text-primary); }
.foot__compliance {
  font-size: 12px; color: var(--text-ghost); line-height: 1.6;
  max-width: 46ch; margin: 0 auto; text-wrap: pretty;
}

/* ===========================================================
   reveal system
   =========================================================== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scrollcue span { animation: none; }
  * { scroll-behavior: auto; }
}

/* ===========================================================
   wider viewports
   =========================================================== */
@media (min-width: 560px) {
  .band { padding: 104px 32px; }
  .hero h1 { font-size: 56px; }
}
