/* XealAI.com · silver + orange + black · LeadR-style flow */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@700;800;900&family=Inter:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap");

:root {
  --paper: #f3f4f6;
  --paper-soft: #e8eaee;
  --panel: #fafbfc;
  --ink: #121214;
  --ink-soft: #5c616b;
  --dark: #0a0a0b;
  --on-dark: #f3f4f6;
  --line: #d4d7de;
  --grid: rgba(18, 18, 20, 0.045);
  --silver: #c5c9d1;
  --silver-deep: #8b929e;

  --orange: #f34d0f;
  --orange-hot: #fe6e00;
  --orange-text: #c43a0c;
  --orange-btn: #c73a0a;
  --orange-soft: #fff1ea;
  --accent: #f34d0f;
  --accent-mid: #fe6e00;
  --accent-deep: #c43a0c;

  --live: #1a9b6a;
  --container: 1140px;
  --r: 14px;
  --shadow: 0 1px 2px rgba(10, 10, 11, 0.05), 0 4px 16px rgba(10, 10, 11, 0.04);
  --shadow-lg: 0 20px 50px -30px rgba(10, 10, 11, 0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--orange-text); text-decoration: none; }
a:hover { color: var(--orange); }
ul { list-style: none; }

.container,
.wrap {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3 { transition-delay: 0s; }
}

/* ---------- Header (charcoal) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #1a1a1c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
/* White logo on charcoal — do NOT invert black-on-black assets (that paints a white box) */
.logo img {
  height: 58px;
  width: auto;
  display: block;
  filter: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}
.nav a {
  color: rgba(243, 244, 246, 0.72);
  font-size: 0.95rem;
  font-weight: 600;
}
.nav a:hover,
.nav a[aria-current="page"] { color: #fff; }
.nav-cta {
  background: var(--orange-btn) !important;
  color: #fff !important;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--orange) !important; color: #fff !important; }
.nav-ext {
  color: rgba(243, 244, 246, 0.55);
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-ext:hover { color: var(--orange-hot); }
.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font: inherit;
  cursor: pointer;
  color: #fff;
}

/* ---------- Type ---------- */
.eyebrow {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--ink);
  display: inline-block;
  flex-shrink: 0;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

h1, h2, h3 {
  font-family: "Archivo", system-ui, sans-serif;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 {
  font-weight: 900;
  font-size: clamp(2.4rem, 5.8vw, 4.4rem);
  line-height: 1.02;
  margin-bottom: 1.1rem;
  max-width: 16ch;
}
h2 {
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 0.75rem;
  max-width: 22ch;
}
h3 {
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.15;
  margin-bottom: 0.45rem;
}

/* Orange highlighter (LeadR mint → XealAI orange) */
.hl {
  background: var(--orange);
  color: #fff;
  padding: 0.02em 0.18em;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-radius: 2px;
  white-space: nowrap;
}
/* Tilt only the first hero highlight (competition.) */
.hero h1 .hl {
  display: inline-block;
  transform: rotate(-3deg);
  transform-origin: center center;
  padding: 0.04em 0.22em 0.06em;
}
@media (max-width: 560px) {
  .hl { white-space: normal; }
  .hero h1 .hl { transform: rotate(-2deg); }
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 52ch;
}
.keypoint {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 1.5rem;
  max-width: 34ch;
}
.text-muted { color: var(--ink-soft); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  font-family: "Archivo", system-ui, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-align: center;
  letter-spacing: -0.01em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange-btn);
  color: #fff;
  border-color: var(--orange-btn);
}
.btn-primary:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn-dark {
  background: var(--dark);
  color: var(--on-dark);
  border-color: var(--dark);
}
.btn-dark:hover { background: #1c1c1f; color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}
.btn-ghost.on-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-ghost.on-dark:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn .arw {
  font-family: "Space Mono", ui-monospace, monospace;
  font-weight: 700;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
  align-items: center;
}

/* ---------- Sections ---------- */
section { padding: clamp(56px, 8vw, 100px) 0; }
.section-pad-sm { padding: clamp(40px, 5vw, 64px) 0; }
.section-tight-top { padding-top: clamp(24px, 3.5vw, 44px); }
.section-soft {
  background: var(--paper-soft);
  border-block: 1px solid var(--line);
}
.section-grid {
  background-color: var(--panel);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 30px 30px;
  border-block: 1px solid var(--line);
}
.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}
.section-head p { color: var(--ink-soft); margin-top: 0.65rem; }
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center h2 { max-width: none; margin-inline: auto; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(48px, 7vw, 80px) 0 clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #f7f8fa 0%, var(--paper) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(120% 90% at 15% 0%, #000 28%, transparent 78%);
  mask-image: radial-gradient(120% 90% at 15% 0%, #000 28%, transparent 78%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.hero h1 { max-width: 18ch; }
.hero .lead { margin-bottom: 0.25rem; }
.hero .hero-lead-gap { margin-top: 0.85rem; }
.page-hero {
  padding: clamp(40px, 6vw, 64px) 0 clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.7;
  -webkit-mask-image: radial-gradient(100% 80% at 10% 0%, #000 35%, transparent 75%);
  mask-image: radial-gradient(100% 80% at 10% 0%, #000 35%, transparent 75%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 16ch; }

/* Hero audio visual (voice, not text chat) */
.hero-media {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.audio-card {
  width: min(100%, 360px);
  background: var(--dark);
  border-radius: 22px;
  padding: 1.35rem 1.3rem 1.25rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06);
  color: var(--on-dark);
  border-top: 3px solid var(--orange);
}
.audio-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(243, 244, 246, 0.55);
}
.audio-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--live);
  font-weight: 700;
}
.audio-live .pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(26, 155, 106, 0.55);
  animation: pulse-ring 1.6s ease-out infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(26, 155, 106, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(26, 155, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(26, 155, 106, 0); }
}
.audio-wave {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4px;
  height: 120px;
  padding: 12px 4px;
  margin-bottom: 1.1rem;
  background: linear-gradient(180deg, #161618 0%, #0e0e10 100%);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.audio-wave span {
  flex: 1;
  height: var(--h, 40%);
  min-height: 12%;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange-hot), var(--orange-btn));
  transform-origin: bottom center;
  animation: wave-bounce 1.1s ease-in-out infinite;
}
.audio-wave span:nth-child(odd) { animation-duration: 0.95s; }
.audio-wave span:nth-child(3n) { animation-duration: 1.25s; animation-delay: 0.08s; }
.audio-wave span:nth-child(4n) { animation-duration: 0.85s; animation-delay: 0.12s; }
.audio-wave span:nth-child(5n) { background: linear-gradient(180deg, #ffb088, var(--orange)); }
@keyframes wave-bounce {
  0%, 100% { transform: scaleY(0.55); opacity: 0.75; }
  50% { transform: scaleY(1); opacity: 1; }
}
.audio-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.audio-meta strong {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.2rem;
}
.audio-meta span {
  display: block;
  font-size: 0.85rem;
  color: rgba(243, 244, 246, 0.6);
}
.audio-badge {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(243, 77, 15, 0.18);
  color: var(--orange-hot);
  white-space: nowrap;
}
.audio-result {
  background: rgba(243, 77, 15, 0.12);
  border: 1px solid rgba(243, 77, 15, 0.35);
  color: #ffd4c2;
  border-radius: 12px;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  padding: 0.85rem 0.75rem;
}
.audio-result small {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 0.25rem;
  color: rgba(255, 212, 194, 0.9);
}

/* ---------- Voice agent sim (hero) ---------- */
.voice-sim {
  --voice-w: 380px;
  --voice-transcript-h: 12.5rem;
  --voice-result-h: 4.35rem;
  width: min(100%, var(--voice-w));
  max-width: 100%;
  box-sizing: border-box;
  background: var(--dark);
  border-radius: 22px;
  padding: 1.15rem 1.1rem 1.05rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.06);
  color: var(--on-dark);
  border-top: 3px solid var(--orange);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.voice-sim-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.75rem;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(243, 244, 246, 0.5);
  min-width: 0;
  flex-shrink: 0;
  height: 1.25rem;
}
.voice-sim-label {
  text-transform: uppercase;
  text-align: right;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Fixed-height transcript: older lines scroll up and clip off the top */
.voice-transcript {
  position: relative;
  height: var(--voice-transcript-h);
  min-height: var(--voice-transcript-h);
  max-height: var(--voice-transcript-h);
  margin-bottom: 0.85rem;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 100%);
}
.voice-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.5rem;
  align-items: start;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  min-width: 0;
  flex: 0 0 auto;
}
.voice-line.is-in {
  opacity: 1;
  transform: none;
}
.voice-who {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.28rem 0.45rem;
  border-radius: 999px;
  line-height: 1.2;
  white-space: nowrap;
  margin-top: 0.15rem;
}
.voice-line.is-agent .voice-who {
  background: rgba(243, 77, 15, 0.2);
  color: var(--orange-hot);
}
.voice-line.is-caller .voice-who {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(243, 244, 246, 0.72);
}
.voice-bubble {
  background: #161618;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 0.5rem 0.65rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: rgba(243, 244, 246, 0.92);
  min-height: 1.35em;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.voice-line.is-agent .voice-bubble {
  border-color: rgba(243, 77, 15, 0.22);
}
.voice-cursor {
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-left: 2px;
  vertical-align: -2px;
  background: var(--orange-hot);
  animation: voice-blink 0.9s step-end infinite;
}
@keyframes voice-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Player bar — fixed height */
.voice-player {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem 0.65rem;
  background: #050506;
  border-radius: 999px;
  padding: 0.4rem 0.65rem 0.4rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  height: 52px;
}
.voice-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  background: var(--orange-btn);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transition: background 0.15s ease, transform 0.15s ease;
}
.voice-play:hover { background: var(--orange); }
.voice-play:active { transform: scale(0.96); }
.voice-play .voice-pause-icon { display: none; }
.voice-play.is-playing .voice-play-icon { display: none; }
.voice-play.is-playing .voice-pause-icon { display: block; }

/* Waveform: fixed-width bars; progress clips full-width orange copy (no stretch) */
.voice-wave {
  position: relative;
  height: 28px;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 3px;
}
.voice-wave-base,
.voice-wave-fill {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  pointer-events: none;
}
.voice-wave-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.voice-wave-progress .voice-wave-fill {
  width: var(--wave-px, 100%);
  min-width: 100%;
}
.voice-wave-base .vbar,
.voice-wave-fill .vbar {
  flex: 0 0 auto;
  width: 2.5px;
  height: var(--h, 40%);
  border-radius: 1px;
}
.voice-wave-base .vbar {
  background: #3a3b40;
}
.voice-wave-fill .vbar {
  background: linear-gradient(180deg, #ff9a5c, var(--orange-hot) 50%, var(--orange-btn));
}
/* playhead glow only — no scaleY stretch */
.voice-sim.is-playing .voice-wave-progress::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 180, 120, 0.85);
  box-shadow: 0 0 8px rgba(243, 77, 15, 0.65);
  border-radius: 1px;
}

.voice-time {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(243, 244, 246, 0.72);
  min-width: 2.5rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

/* Always reserve result slot so card height never jumps */
.voice-sim-result {
  margin-top: 0.75rem;
  height: var(--voice-result-h);
  min-height: var(--voice-result-h);
  max-height: var(--voice-result-h);
  box-sizing: border-box;
  background: rgba(243, 77, 15, 0.12);
  border: 1px solid rgba(243, 77, 15, 0.35);
  color: #ffd4c2;
  border-radius: 12px;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  padding: 0.7rem 0.65rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  flex-shrink: 0;
}
.voice-sim-result.is-on {
  opacity: 1;
  visibility: visible;
}
.voice-sim-result small {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  opacity: 0.9;
  margin-top: 0.15rem;
  color: rgba(255, 212, 194, 0.9);
}

/* Voice sim · tablet / mobile */
@media (max-width: 860px) {
  .hero-media {
    width: 100%;
    justify-content: stretch;
  }
  .voice-sim {
    --voice-w: 100%;
    --voice-transcript-h: 11.5rem;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    border-radius: 18px;
  }
}

@media (max-width: 560px) {
  .voice-sim {
    --voice-transcript-h: 10.5rem;
    --voice-result-h: 4.1rem;
    padding: 1rem 0.9rem 0.95rem;
    border-radius: 16px;
  }
  .voice-sim-top {
    margin-bottom: 0.65rem;
    font-size: 0.65rem;
  }
  .voice-sim-label {
    flex: 1 1 auto;
    text-align: left;
    max-width: 100%;
  }
  .voice-transcript {
    gap: 0.4rem;
    margin-bottom: 0.75rem;
  }
  .voice-line { gap: 0.4rem; }
  .voice-who {
    font-size: 0.58rem;
    padding: 0.24rem 0.4rem;
    letter-spacing: 0.05em;
  }
  .voice-bubble {
    font-size: 0.84rem;
    padding: 0.45rem 0.55rem;
    border-radius: 10px;
  }
  .voice-player {
    gap: 0.45rem;
    padding: 0.35rem 0.5rem 0.35rem 0.35rem;
    border-radius: 14px;
    height: 50px;
  }
  .voice-play {
    width: 40px;
    height: 40px;
  }
  .voice-wave { height: 26px; }
  .voice-wave-base .vbar,
  .voice-wave-fill .vbar { width: 2px; }
  .voice-time {
    font-size: 0.72rem;
    min-width: 2.25rem;
  }
  .voice-sim-result {
    font-size: 0.9rem;
    padding: 0.55rem 0.55rem;
  }
  .voice-sim-result small { font-size: 0.74rem; }
}

@media (max-width: 380px) {
  .voice-sim {
    --voice-transcript-h: 10rem;
    padding: 0.9rem 0.75rem 0.85rem;
  }
  .voice-line {
    grid-template-columns: 1fr;
    gap: 0.28rem;
  }
  .voice-who {
    width: fit-content;
    margin-top: 0;
  }
  .voice-player {
    grid-template-columns: auto minmax(0, 1fr) auto;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audio-wave span,
  .audio-live .pulse,
  .voice-cursor { animation: none; }
  .audio-wave span { transform: none; opacity: 1; }
  .voice-line { opacity: 1; transform: none; transition: none; }
  .voice-sim-result { transition: none; }
}

/* Launch offer band */
.launch-band {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--orange);
}
.launch-band h2 { max-width: 18ch; }
.launch-band .lead {
  max-width: 52ch;
  margin-bottom: 0;
}
.launch-copy > .lead + .lead,
.launch-lead-gap {
  margin-top: 1.15rem;
}
.launch-copy .btn-row { margin-top: 1.35rem; }

/* Launch body grid under full-width countdown */
.launch-band-body.launch-band--split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}
@media (min-width: 900px) {
  .launch-band-body.launch-band--split {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  }
}
.countdown {
  margin: 0 0 1.5rem;
  padding: 1.15rem 1.25rem 1.25rem;
  background: var(--dark);
  border: 1px solid #1f1f22;
  border-radius: var(--r);
  border-top: 3px solid var(--orange);
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}
.countdown--full {
  width: 100%;
}
.countdown-label {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 244, 246, 0.55);
  font-weight: 700;
  margin: 0 0 0.9rem;
  text-align: center;
}
.countdown-units {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  width: 100%;
}
.countdown-unit {
  text-align: center;
  background: #141416;
  color: var(--on-dark);
  border-radius: 12px;
  padding: 0.95rem 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 0;
}
.countdown-num {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  transition: transform 0.2s ease, color 0.15s ease;
}
.countdown-num.is-tick {
  transform: scale(1.06);
  color: var(--orange-hot);
}
.countdown-unit-label {
  display: block;
  margin-top: 0.45rem;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 244, 246, 0.5);
  font-weight: 700;
}
.countdown-unit--secs .countdown-num {
  color: var(--orange-hot);
}
.countdown.is-ended .countdown-num {
  color: var(--orange-hot);
}
@media (max-width: 560px) {
  .countdown-units {
    grid-template-columns: repeat(2, 1fr);
  }
}
.launch-points {
  margin: 1.35rem 0 0.25rem;
  display: grid;
  gap: 0.65rem;
  max-width: 40rem;
}
.launch-points li {
  font-size: 1rem;
  color: var(--ink-soft);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.45;
}
.launch-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.launch-points strong { color: var(--ink); }
.launch-portrait {
  justify-self: center;
  width: min(100%, 320px);
  text-align: center;
}
.launch-photo {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--dark);
  aspect-ratio: 1;
}
.launch-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.launch-byline {
  margin-top: 0.9rem;
  text-align: center;
}
.launch-byline strong {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.launch-byline span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.launch-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.65rem;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--orange-text);
}
.launch-linkedin:hover { color: var(--orange); }
.launch-photo img {
  object-position: center top;
}
@media (max-width: 899px) {
  .launch-portrait {
    order: -1;
    width: min(100%, 260px);
  }
  .launch-band h2 { max-width: none; }
}

/* ---------- Results: visual Capture / Book / Grow ---------- */
.results-section {
  padding-bottom: clamp(8px, 2vw, 20px);
}
.results-head h2 { max-width: 16ch; }
.results-head .lead { max-width: 42ch; }

.result-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 800px) {
  .result-grid { grid-template-columns: repeat(3, 1fr); }
}

.result-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border-radius: calc(var(--r) + 4px);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 10, 11, 0.12);
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px -28px rgba(10, 10, 11, 0.55);
}
.result-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.result-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.55s ease;
}
.result-card:hover .result-media img {
  transform: scale(1.07);
}
/* dark gradient so type stays readable */
.result-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.15) 0%, rgba(10, 10, 11, 0.35) 35%, rgba(10, 10, 11, 0.88) 100%),
    linear-gradient(90deg, rgba(10, 10, 11, 0.25) 0%, transparent 55%);
  pointer-events: none;
}
.result-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.35rem 1.3rem 1.45rem;
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.result-step {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 0.15rem;
}
.result-step span {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  height: 1.55rem;
  padding: 0 0.4rem;
  border-radius: 999px;
  background: var(--orange-btn);
  color: #fff;
  letter-spacing: 0.06em;
  font-size: 0.68rem;
}
.result-body h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  max-width: 14ch;
  margin: 0;
}
.result-body p:not(.result-step) {
  color: rgba(243, 244, 246, 0.82);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 30ch;
  margin: 0;
}
/* thin orange rule under step label */
.result-body::before {
  content: "";
  position: absolute;
  left: 1.3rem;
  top: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

@media (max-width: 799px) {
  .result-card { min-height: 340px; }
}
@media (max-width: 560px) {
  .result-card { min-height: 300px; }
  .result-body { padding: 1.15rem 1.1rem 1.25rem; }
  .result-body h3 { max-width: none; }
  .result-body p:not(.result-step) { max-width: none; }
}

/* keep legacy outcome classes if referenced elsewhere */
.outcomes {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .outcomes { grid-template-columns: repeat(3, 1fr); }
}
.outcome {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem 1.35rem;
  border-left: 4px solid var(--dark);
}
.outcome .big {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.55rem;
}
.outcome .big em {
  font-style: normal;
  color: var(--orange);
}
.outcome p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.45;
  max-width: 28ch;
}

/* ---------- Grids ---------- */
.grid-3 {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 800px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.grid-2 {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 800px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
}
.card p { color: var(--ink-soft); font-size: 0.98rem; }
.card.featured {
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.2rem;
  right: 1.2rem;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--orange);
}
.card.enterprise {
  background: var(--dark);
  border-color: #1f1f22;
  color: var(--on-dark);
}
.card.enterprise:hover { border-color: var(--orange); }
.card.enterprise p,
.card.enterprise li { color: rgba(243, 244, 246, 0.75); }
.card.enterprise h3 { color: var(--on-dark); }

.badge {
  display: inline-block;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-text);
  margin-bottom: 0.65rem;
  width: fit-content;
}
.badge-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--orange-hot);
}

.price {
  font-family: "Archivo", system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin: 0.35rem 0 0.5rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.price small {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--silver-deep);
}
.card.enterprise .price { color: var(--on-dark); }
.card.enterprise .price small { color: rgba(243, 244, 246, 0.5); }

.plan-list {
  margin: 0.9rem 0 1.25rem;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}
.plan-list li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-left: 1.15rem;
  position: relative;
}
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange-text);
  font-weight: 700;
}
.card.enterprise .plan-list li::before { color: var(--orange); }
.setup-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}
.card.enterprise .setup-note { color: rgba(243, 244, 246, 0.5); }

/* ---------- Industry / market cards with photos ---------- */
.industry-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.industry-card:hover {
  transform: translateY(-5px);
  border-color: var(--ink);
}
.industry-card .media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-soft);
  border-bottom: 3px solid var(--orange);
}
.industry-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.industry-card:hover .media img { transform: scale(1.04); }
.industry-card .label {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 0.4rem;
}
.industry-card .body {
  padding: 1.25rem 1.35rem 1.45rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.industry-card .body h3 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-bottom: 0.5rem;
}
.industry-card .body > p:not(.label) {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}
.industry-card ul {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.4rem;
}
.industry-card li {
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding-left: 0.9rem;
  position: relative;
}
.industry-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: 0.5rem;
}
.markets-note {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 52ch;
  padding: 1.1rem 1.25rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--r);
}
.wiifm {
  color: var(--ink);
  font-weight: 700;
}
.plan-wiifm {
  font-size: 0.98rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.45;
  margin: 0.35rem 0 0.25rem;
}

/* ---------- Path cards (LeadR-style next steps) ---------- */
.paths {
  display: grid;
  gap: 1.15rem;
  margin-top: 2.5rem;
}
@media (min-width: 800px) {
  .paths { grid-template-columns: repeat(3, 1fr); }
}
.path {
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.2s ease, border-color 0.2s ease;
  min-height: 220px;
}
.path:hover {
  transform: translateY(-5px);
  border-color: var(--ink);
  color: var(--ink);
}
.path .k {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-text);
  font-weight: 700;
}
.path h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  margin: 14px 0 10px;
}
.path p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  flex: 1;
}
.path .go {
  margin-top: 1.25rem;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.path .go .arw {
  font-family: "Space Mono", ui-monospace, monospace;
  transition: transform 0.2s;
}
.path:hover .go .arw { transform: translateX(5px); }
.path.feature {
  background: var(--dark);
  color: var(--on-dark);
  border-color: var(--dark);
}
.path.feature:hover {
  border-color: var(--orange);
  color: var(--on-dark);
}
.path.feature .k { color: var(--orange-hot); }
.path.feature p { color: rgba(243, 244, 246, 0.72); }
.path.feature h3,
.path.feature .go { color: var(--on-dark); }

/* ---------- Timeline steps ---------- */
.steps {
  display: grid;
  gap: 1.15rem;
  counter-reset: step;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.4rem 1.3rem;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--on-dark);
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.step strong {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}
.step span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* ---------- After booking track ---------- */
.track {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .track {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}
.track-item {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: var(--r);
  position: relative;
}
@media (min-width: 800px) {
  .track-item {
    border-radius: 0;
    border-right: none;
  }
  .track-item:first-child { border-radius: var(--r) 0 0 var(--r); }
  .track-item:last-child {
    border-radius: 0 var(--r) var(--r) 0;
    border-right: 1px solid var(--line);
  }
}
.track-item .n {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--orange-text);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.track-item strong {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.track-item p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

/* ---------- Benefits (legacy soft) ---------- */
.benefit {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.25rem 1.2rem;
  border-left: 3px solid var(--silver);
}
.benefit strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.benefit span { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--r);
  padding: clamp(2rem, 4vw, 2.75rem) 1.75rem;
  background: var(--dark);
  color: var(--on-dark);
  text-align: center;
  border: 1px solid #1f1f22;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
}
.cta-band h2 {
  color: var(--on-dark);
  max-width: 18ch;
  margin-inline: auto;
}
.cta-band p {
  color: rgba(243, 244, 246, 0.72);
  max-width: 36rem;
  margin: 0.65rem auto 0;
}
.cta-band .btn-row { justify-content: center; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 0.9rem; max-width: 28rem; }
label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
}
input, select, textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(243, 77, 15, 0.28);
  border-color: var(--orange);
}
textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.88rem; color: var(--ink-soft); }
.check-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.check-row input {
  margin-top: 0.2rem;
  width: auto;
  flex-shrink: 0;
}
.form-success {
  display: none;
  background: #e8f6ef;
  border: 1px solid #b5e0c8;
  color: #0f6b45;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}
.form-success.show { display: block; }

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.95rem 1.05rem;
  margin-bottom: 0.6rem;
}
summary { font-weight: 700; cursor: pointer; }
details p { margin-top: 0.55rem; color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(243, 244, 246, 0.68);
  padding: 2.5rem 0 1.75rem;
  margin-top: 0;
  border-top: 3px solid var(--orange);
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer h4 {
  color: var(--on-dark);
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}
.site-footer a {
  color: rgba(243, 244, 246, 0.68);
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.site-footer a:hover { color: var(--orange-hot); }
.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 0.65rem;
  filter: none;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media {
    order: -1;
    width: 100%;
    max-width: 100%;
  }
  .hero {
    padding-top: clamp(28px, 5vw, 48px);
  }
  .phone-mock { width: min(100%, 280px); }
  h1 { max-width: none; }
  h2 { max-width: none; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .logo img { height: 48px; }
  .header-inner { min-height: 72px; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: #141416;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.35rem;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.65rem 0.4rem; color: rgba(243, 244, 246, 0.8); }
  .nav-cta { text-align: center; margin-top: 0.35rem; }
}

/* ---------- About page ---------- */
.founder-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}
@media (min-width: 860px) {
  .founder-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  }
}
.founder-photo {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--dark);
}
.founder-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.founder-meta {
  margin-top: 1rem;
}
.founder-meta .name {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.founder-meta .role {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 0.85rem;
}
.proof-list {
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.65rem;
}
.proof-list li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--ink-soft);
  line-height: 1.5;
}
.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.proof-list strong { color: var(--ink); }

.quote-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.4rem 1.35rem 1.25rem;
  border-left: 4px solid var(--orange);
  height: 100%;
}
.quote-card blockquote {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}
.quote-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
}
.quote-card cite span {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.88rem;
  margin-top: 0.15rem;
}

.about-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-table th,
.about-table td {
  text-align: left;
  padding: 0.95rem 1.15rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.98rem;
}
.about-table th {
  width: 34%;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  color: var(--ink);
  background: var(--paper-soft);
}
.about-table tr:last-child th,
.about-table tr:last-child td { border-bottom: none; }
.about-table td { color: var(--ink-soft); }
.about-table a { font-weight: 600; }

.prose-block p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 62ch;
  margin-bottom: 1rem;
}
.prose-block p:last-child { margin-bottom: 0; }
.prose-block strong { color: var(--ink); }

/* ---------- Billing toggle ---------- */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.5rem;
  padding: 0.3rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.billing-btn {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.billing-btn.is-active {
  background: var(--dark);
  color: #fff;
}
.billing-save {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.2rem 0.4rem;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
}
.billing-btn.is-active .billing-save {
  background: var(--orange-hot);
}

.self-select {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  margin: 0.25rem 0 0.5rem;
}
.plan-example {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.85rem;
  background: var(--paper-soft);
  border-radius: 10px;
  border-left: 3px solid var(--orange);
}
.why-upgrade {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
  line-height: 1.45;
}
.why-upgrade a {
  font-weight: 700;
  color: var(--orange-text);
}
.lane-hook {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: 0.65rem;
  line-height: 1.45;
}

.contact-simple {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
}
.contact-simple a.big-link {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.contact-simple a.big-link:hover { color: var(--orange); }

/* ---------- Always-on assistant ---------- */
.always-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 800px) {
  .always-grid { grid-template-columns: repeat(3, 1fr); }
}
.always-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--dark);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.always-card:hover {
  border-left-color: var(--orange);
  transform: translateY(-2px);
}
.always-card strong {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.always-card span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* ---------- Call flow configurations ---------- */
#call-flow h2 { max-width: 16ch; }
#call-flow .lead { max-width: 48ch; }

.flow-grid {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 700px) {
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .flow-grid { grid-template-columns: repeat(3, 1fr); }
  .flow-card--wide { grid-column: span 2; }
}

.flow-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.35rem 1.3rem 1.4rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--dark);
  transition: border-color 0.15s ease, transform 0.15s ease;
  height: 100%;
}
.flow-card:hover {
  border-left-color: var(--orange);
  transform: translateY(-2px);
}
.flow-kicker {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin: 0 0 0.65rem;
}
.flow-card h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.55rem;
  max-width: 18ch;
}
.flow-card p:not(.flow-kicker) {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
  max-width: 42ch;
}
.flow-card--wide p:not(.flow-kicker) { max-width: 58ch; }
.flow-card--wide h3 { max-width: 22ch; }

.flow-config {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.5rem, 3.5vw, 2.1rem);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--orange);
}
.flow-config-label {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin: 0 0 0.55rem;
}
.flow-config h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 0.7rem;
  max-width: 22ch;
}
.flow-config > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 0 1.15rem;
}
.flow-config .btn-row { margin-top: 0; }

/* Setup fee callout in launch */
.setup-callout {
  margin: 1.25rem 0 0.35rem;
  padding: 1.15rem 1.25rem;
  background: var(--dark);
  color: var(--on-dark);
  border-radius: var(--r);
  border-top: 3px solid var(--orange);
  max-width: 36rem;
}
.setup-callout-label {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-hot);
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.setup-callout-price {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  line-height: 1.45;
  color: rgba(243, 244, 246, 0.92);
}
.setup-callout-price strong {
  color: #fff;
  font-size: 1.2em;
}
.setup-callout-win {
  margin: 0;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
}
.setup-callout-win strong {
  color: var(--orange-hot);
}

/* ---------- Stats / speed-to-lead ---------- */
.speed-lanes {
  display: grid;
  gap: 1.1rem;
}
@media (min-width: 860px) {
  .speed-lanes { grid-template-columns: repeat(3, 1fr); }
}
.speed-lane {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--dark);
}
.speed-lane .label {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-text);
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.speed-lane h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 0.55rem;
}
.speed-lane p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}
.stats-examples {
  margin: 0.75rem 0 0.85rem;
  display: grid;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
}
.stats-examples li {
  color: var(--ink);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
  font-size: 0.98rem;
}
.stats-examples li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.stats-grid {
  display: grid;
  gap: 1.1rem;
}
.stats-grid--secondary { margin-top: 1.1rem; }
@media (min-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.35rem 1.2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--orange);
}
.stat-card--compact {
  padding: 1.15rem 1.2rem;
}
.stat-card--compact .stat-num {
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
}
.stat-num-unit {
  font-size: 0.55em;
  font-weight: 800;
  color: var(--ink-soft);
  margin-left: 0.1em;
}
.stat-num {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.55rem;
}
.stat-label {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.stat-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.stats-callout {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: var(--r);
  padding: 1.25rem 1.35rem;
  max-width: 56rem;
}
.stats-callout p {
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 0.65rem;
}
.stats-callout p:last-child { margin-bottom: 0; }
.stats-source { font-size: 0.85rem !important; }

/* ---------- About on home ---------- */
.about-home {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}
@media (min-width: 860px) {
  .about-home {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
  }
}
.about-home-media {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--paper-soft);
  min-height: 280px;
}
.about-home-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.about-home-copy { max-width: 40rem; }

/* ---------- FAQ ---------- */
.faq-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.faq-head {
  max-width: 40rem;
  margin-inline: auto;
}
.faq-head .lead {
  margin-inline: auto;
}
.faq-head h2 {
  max-width: none;
  margin-inline: auto;
}
.faq-head .eyebrow {
  justify-content: center;
}
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
  width: 100%;
  margin-inline: auto;
  text-align: left;
}
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0;
  margin: 0;
  box-shadow: var(--shadow);
}
.faq-item summary {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.25rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 700;
  color: var(--orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 1rem;
}

/* Footer */
.site-footer .footer-bottom {
  align-items: flex-start;
}
.footer-usage {
  color: rgba(243, 244, 246, 0.5);
  font-size: 0.85rem;
}
.site-footer .footer-bottom a {
  display: inline;
  color: rgba(243, 244, 246, 0.75);
  margin: 0;
}
.site-footer .footer-bottom a:hover { color: var(--orange-hot); }
.legal-page h1 { max-width: 20ch; }
.legal-page .prose-block { max-width: 42rem; }
.legal-page .prose-block h2 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  max-width: none;
}

/* ---------- Insights / articles ---------- */
.insights-list { display: grid; gap: 1.25rem; }
.insight-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: var(--shadow);
}
.insight-card h2 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.2;
  margin: 0.35rem 0 0.75rem;
  max-width: 28ch;
}
.insight-card h2 a { color: var(--ink); }
.insight-card h2 a:hover { color: var(--orange-text); }
.insight-card > p { color: var(--ink-soft); max-width: 62ch; margin-bottom: 0.75rem; }
.insight-meta {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--silver-deep);
  margin-bottom: 1rem !important;
}
.article-disclaimer {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* Article hero */
.art-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 56px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(165deg, #f7f8fa 0%, #eceef2 48%, #e4e6eb 100%);
}
.art-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(80% 70% at 90% 10%, #000 15%, transparent 72%);
  mask-image: radial-gradient(80% 70% at 90% 10%, #000 15%, transparent 72%);
  pointer-events: none;
}
.art-hero .container { position: relative; z-index: 1; }
.art-hero-grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: end;
}
@media (min-width: 900px) {
  .art-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: center;
  }
}
.art-hero h1 {
  max-width: 16ch;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}
.art-hero .lead { max-width: 40ch; margin-top: 1rem; }
.art-crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  color: var(--silver-deep);
  margin-bottom: 1rem;
}
.art-crumb a { color: var(--ink-soft); font-weight: 600; }
.art-crumb a:hover { color: var(--orange-text); }
.art-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.35rem;
}
.art-meta-pill {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}
.art-hero-panel {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: calc(var(--r) + 4px);
  padding: 1.35rem 1.25rem 1.15rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.art-hero-panel-label {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 0.85rem;
}
.art-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.art-hero-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 244, 246, 0.08);
  border-radius: 12px;
  padding: 0.85rem 0.75rem;
}
.art-hero-stat strong {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
  color: #fff;
  line-height: 1.05;
}
.art-hero-stat span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: rgba(243, 244, 246, 0.72);
  line-height: 1.3;
}
.art-hero-panel-note {
  margin-top: 0.9rem;
  font-size: 0.75rem;
  color: rgba(243, 244, 246, 0.5);
  line-height: 1.4;
}

/* Takeaway band */
.art-takeaway {
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.35rem 0;
}
.art-takeaway-inner {
  display: grid;
  gap: 0.35rem;
  max-width: 52rem;
}
.art-takeaway-kicker {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-hot);
}
.art-takeaway-text {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.35;
  color: var(--on-dark);
}
.art-takeaway-text strong { color: #fff; }

/* Body layout */
.art-body {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    linear-gradient(180deg, #eef0f4 0%, var(--paper) 120px);
}
.art-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1020px) {
  .art-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 2.75rem;
    align-items: start;
  }
}
.art-main { min-width: 0; }
.art-section { margin: 0; }
.art-section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
  margin-bottom: 1.15rem;
}
.art-section-head--sm { margin-bottom: 0.85rem; }
.art-section-head h2 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  line-height: 1.15;
  color: var(--ink);
  max-width: 22ch;
  overflow-wrap: anywhere;
}
.art-section-head .eyebrow { margin-bottom: 0.35rem; }
.art-chapter {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange-text);
  background: var(--orange-soft);
  border: 1px solid #f5c9b4;
  border-radius: 10px;
  min-width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  line-height: 1;
}
.art-lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.6;
  max-width: 58ch;
  margin-bottom: 1.35rem;
}
.art-lead strong { color: var(--ink); }
.art-rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--line) 28%, transparent 100%);
  margin: clamp(2.25rem, 4vw, 3rem) 0;
}

/* Split bar chart */
.art-split-bars {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.2rem 1.15rem 1.1rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.art-split-label {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-deep);
  margin-bottom: 0.75rem;
}
.art-split-track {
  display: flex;
  width: 100%;
  min-height: 4.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.art-split-seg {
  flex: 0 0 var(--w);
  width: var(--w);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.65rem 0.55rem;
  min-width: 0;
}
.art-split-live { background: var(--live); color: #fff; }
.art-split-vm { background: #c5c9d1; color: var(--ink); }
.art-split-none { background: var(--dark); color: var(--on-dark); }
.art-split-val {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  line-height: 1;
}
.art-split-name {
  font-size: 0.72rem;
  opacity: 0.9;
  line-height: 1.2;
}
@media (max-width: 560px) {
  .art-split-track { flex-direction: column; min-height: 0; }
  .art-split-seg {
    flex: none;
    width: 100%;
    min-height: 3.25rem;
  }
}
.art-split-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  margin-top: 0.85rem;
  list-style: none;
  padding: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.art-dot {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}
.art-dot-live { background: var(--live); }
.art-dot-vm { background: #c5c9d1; border: 1px solid var(--line); }
.art-dot-none { background: var(--dark); }

/* Fact grid */
.art-fact-grid {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .art-fact-grid { grid-template-columns: repeat(3, 1fr); }
}
.art-fact {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.1rem 1rem;
  border-top: 3px solid var(--orange);
}
.art-fact strong {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--orange-text);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.art-fact p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0;
  max-width: none;
}

/* Callouts */
.art-callout {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--dark);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1rem 1.15rem;
  margin: 0.25rem 0 0;
}
.art-callout--orange { border-left-color: var(--orange); background: var(--orange-soft); }
.art-callout p {
  margin: 0;
  color: var(--ink);
  line-height: 1.5;
  max-width: none;
  font-size: 1.02rem;
}

/* Patience bars */
.art-patience {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.2rem 1.15rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.95rem;
}
.art-patience-row {
  display: grid;
  gap: 0.45rem;
}
@media (min-width: 640px) {
  .art-patience-row {
    grid-template-columns: 1fr minmax(10rem, 14rem);
    align-items: center;
    gap: 1rem;
  }
}
.art-patience-bar {
  height: 0.7rem;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.art-patience-fill {
  height: 100%;
  width: var(--p);
  background: linear-gradient(90deg, #8b929e, #5c616b);
  border-radius: inherit;
}
.art-patience-fill.is-mid {
  background: linear-gradient(90deg, var(--orange-hot), var(--orange));
}
.art-patience-fill.is-hot {
  background: linear-gradient(90deg, var(--orange), #9a2a08);
}
.art-patience-copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.art-patience-copy strong {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--ink);
}
.art-patience-copy em { font-style: normal; color: var(--ink); font-weight: 600; }

/* Compare columns */
.art-compare {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 720px) {
  .art-compare {
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0.85rem;
  }
}
.art-compare-col {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.15rem 1.1rem;
}
.art-compare-col.is-bad { border-top: 3px solid #8b929e; }
.art-compare-col.is-good { border-top: 3px solid var(--live); }
.art-compare-tag {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}
.art-compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.art-compare-col li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
  padding-left: 0.95rem;
  position: relative;
}
.art-compare-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--silver-deep);
}
.art-compare-col.is-good li::before { background: var(--live); }
.art-compare-col li strong { color: var(--ink); }
.art-compare-mid {
  display: grid;
  place-items: center;
}
.art-compare-mid span {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-deep);
  background: var(--paper-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
}

/* Money cards */
.art-money-grid {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .art-money-grid { grid-template-columns: repeat(3, 1fr); }
}
.art-money {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.2rem 1.1rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.art-money--accent {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--on-dark);
}
.art-money-period {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver-deep);
  margin-bottom: 0.4rem;
}
.art-money--accent .art-money-period { color: rgba(243, 244, 246, 0.55); }
.art-money-num {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  color: var(--orange-text);
  line-height: 1;
  margin: 0;
}
.art-money--accent .art-money-num { color: var(--orange-hot); }
.art-money-note {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.art-money--accent .art-money-note { color: rgba(243, 244, 246, 0.65); }
.art-fineprint {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0 0 1.5rem;
  max-width: 58ch;
}

/* Media band */
.art-media-band {
  display: grid;
  gap: 0;
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--r) + 2px);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}
@media (min-width: 780px) {
  .art-media-band { grid-template-columns: 1.05fr 1fr; }
}
.art-media-img {
  min-height: 200px;
  background: var(--paper-soft);
}
.art-media-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.art-media-body {
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.art-media-body h3 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  margin: 0.25rem 0 0.85rem;
  color: var(--ink);
}
.art-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}
.art-check-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.art-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  background: var(--orange);
}
.art-check-list strong { color: var(--ink); }

/* Surge callout */
.art-surge {
  background: linear-gradient(135deg, #fff1ea 0%, #f3f4f6 55%, #e8eaee 100%);
  border: 1px solid #f0c4ae;
  border-radius: var(--r);
  padding: 1.2rem 1.2rem 1.15rem;
}
.art-surge-badge {
  display: inline-block;
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-text);
  background: #fff;
  border: 1px solid #f0c4ae;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.65rem;
}
.art-surge p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
  max-width: none;
  font-size: 1.02rem;
}

/* Lift cards */
.art-lift-grid {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 700px) {
  .art-lift-grid { grid-template-columns: repeat(3, 1fr); }
}
.art-lift {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.25rem 1.1rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.art-lift::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -12px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange-soft);
  opacity: 0.9;
  pointer-events: none;
}
.art-lift-num {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  color: var(--live);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.art-lift-label {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  margin: 0.4rem 0 0.45rem;
  position: relative;
  z-index: 1;
}
.art-lift p:last-child {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: none;
  position: relative;
  z-index: 1;
}

/* Steps */
.art-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--panel);
}
.art-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.art-steps li:last-child { border-bottom: none; }
.art-step-num {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange-text);
  padding-top: 0.15rem;
}
.art-steps strong {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.art-steps p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: none;
}

/* Industry cards */
.art-industries {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 720px) {
  .art-industries { grid-template-columns: repeat(3, 1fr); }
}
.art-industry {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 120px 1fr;
}
.art-industry img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.art-industry > div { padding: 0.95rem 1rem 1.1rem; }
.art-industry .label { margin-bottom: 0.35rem; }
.art-industry p:last-child {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
  max-width: none;
}

/* Article CTA */
.art-cta-band {
  margin: clamp(2.25rem, 4vw, 3rem) 0;
}
.art-cta-band-inner {
  background: var(--dark);
  color: var(--on-dark);
  border-radius: calc(var(--r) + 4px);
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.art-cta-band-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(70% 80% at 100% 0%, #000 10%, transparent 70%);
  mask-image: radial-gradient(70% 80% at 100% 0%, #000 10%, transparent 70%);
  pointer-events: none;
}
.art-cta-band-inner > * { position: relative; z-index: 1; }
.art-cta-band h2 {
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  max-width: 16ch;
  margin: 0.35rem 0 0.75rem;
  line-height: 1.15;
}
.art-cta-band p {
  color: rgba(243, 244, 246, 0.78);
  max-width: 48ch;
  margin-bottom: 1.15rem;
  line-height: 1.55;
}
.btn.on-dark,
.btn-ghost.on-dark {
  color: var(--on-dark);
  border-color: rgba(243, 244, 246, 0.35);
}
.btn-ghost.on-dark:hover {
  border-color: var(--orange-hot);
  color: #fff;
}

/* Sources block */
.art-sources {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(1.25rem, 3vw, 1.65rem);
}
.art-source-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.15rem;
  display: grid;
  gap: 0.55rem;
}
.art-source-list li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
  padding-left: 0.95rem;
  position: relative;
}
.art-source-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--silver-deep);
}
.art-backlinks {
  font-size: 0.95rem;
  margin: 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

/* Aside */
.art-aside { min-width: 0; }
.art-aside-sticky {
  display: grid;
  gap: 1rem;
}
@media (min-width: 1020px) {
  .art-aside-sticky {
    position: sticky;
    top: 5.5rem;
  }
}
.art-toc,
.art-aside-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.15rem 1.1rem;
  box-shadow: var(--shadow);
}
.art-toc .label,
.art-aside-card .label { margin-bottom: 0.75rem; }
.art-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.15rem;
  counter-reset: toc;
}
.art-toc li {
  counter-increment: toc;
  border-bottom: 1px solid var(--line);
}
.art-toc li:last-child { border-bottom: none; }
.art-toc a {
  display: block;
  padding: 0.55rem 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}
.art-toc a::before {
  content: counter(toc, decimal-leading-zero) "  ";
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  color: var(--orange-text);
  font-weight: 700;
}
.art-toc a:hover { color: var(--orange-text); }
.art-aside-card ul {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.art-aside-card li {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.35;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.art-aside-card li:last-child { border-bottom: none; padding-bottom: 0; }
.art-aside-card li strong { color: var(--ink); }
.art-aside-card .btn { width: 100%; justify-content: center; }

/* ---------- AI Employee page (anti-slop) ---------- */
.emp-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(165deg, #f7f8fa 0%, #eceef2 48%, #e4e6eb 100%);
}
.emp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(90% 80% at 85% 20%, #000 20%, transparent 70%);
  mask-image: radial-gradient(90% 80% at 85% 20%, #000 20%, transparent 70%);
  pointer-events: none;
}
.emp-hero .container { position: relative; z-index: 1; }
.emp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.emp-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
}
.emp-hero .lead { max-width: 38ch; }
.emp-hero-rule {
  width: 48px;
  height: 4px;
  background: var(--dark);
  margin: 0 0 1.25rem;
  border-radius: 2px;
}
.emp-hero-rule span {
  display: block;
  width: 22px;
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.outcome-cell {
  background: var(--panel);
  padding: 1.5rem 1.35rem;
}
.outcome-cell strong {
  display: block;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.45rem;
}
.outcome-cell span {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.45;
  display: block;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.poster {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(10, 10, 11, 0.12);
}
.poster-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.poster-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.5s ease;
}
.poster:hover .poster-bg img { transform: scale(1.07); }
.poster-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 11, 0.15) 0%, rgba(10, 10, 11, 0.55) 45%, rgba(10, 10, 11, 0.92) 100%);
}
.poster-body {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.4rem 1.55rem;
}
.poster-tag {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-hot);
  margin-bottom: 0.55rem;
}
.poster h3 {
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  margin-bottom: 0.55rem;
  max-width: 12ch;
}
.poster p {
  color: rgba(243, 244, 246, 0.82);
  font-size: 0.98rem;
  line-height: 1.45;
  margin-bottom: 0.85rem;
}
.poster ul {
  display: grid;
  gap: 0.35rem;
}
.poster li {
  font-size: 0.92rem;
  color: rgba(243, 244, 246, 0.78);
  padding-left: 0.95rem;
  position: relative;
}
.poster li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.track::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.track-step {
  position: relative;
  z-index: 1;
  padding: 0 1rem 0 0;
}
.track-step:last-child { padding-right: 0; }
.track-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: #fff;
  font-family: "Archivo", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 2px var(--dark);
}
.track-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.track-step p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
  max-width: 28ch;
}

.spine {
  display: grid;
  gap: 0;
  max-width: 36rem;
  border-left: 3px solid var(--dark);
  padding-left: 1.5rem;
}
.spine-item {
  position: relative;
  padding: 0 0 1.75rem;
}
.spine-item:last-child { padding-bottom: 0; }
.spine-item::before {
  content: "";
  position: absolute;
  left: calc(-1.5rem - 6px);
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 2px var(--dark);
}
.spine-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}
.spine-item p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.emp-note {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 48ch;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .emp-hero-grid {
    grid-template-columns: 1fr;
  }
  .emp-hero-grid .hero-media { order: -1; }
  .outcome-strip { grid-template-columns: 1fr; }
  .poster-grid { grid-template-columns: 1fr; }
  .poster { min-height: 360px; }
  .track {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .track::before {
    top: 0;
    bottom: 0;
    left: 21px;
    right: auto;
    width: 2px;
    height: auto;
  }
}
