/* ============================================================
   Leroy marketing — shared styles
   Used by: homepage.html, for-solo-founders.html,
            for-bug-fixing.html, for-backlog.html
   Ported target: src/app/(marketing)/marketing.css
   ============================================================ */

:root {
  --bg: #fafaf7;
  --panel: #ffffff;
  --panel-2: #f4f4ee;
  --ink: #1a1a17;
  --ink-soft: #4a4a44;
  --muted: #8a8a82;
  --line: #e6e6df;
  --line-soft: #f1f1ea;
  --accent: #2f6f4c;
  --accent-soft: #e3efe5;
  --warn: #b85c1a;
  --warn-soft: rgba(184, 92, 26, 0.14);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
a { color: inherit; }

/* ─── nav ─── */
.nav { border-bottom: 1px solid var(--line); background: var(--panel); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; gap: 32px;
}
.logo {
  font-weight: 700; font-size: 17px; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 8px;
  color: var(--ink); text-decoration: none;
}
.logo-mark {
  width: 24px; height: 24px;
  background: var(--accent); border-radius: 5px;
  color: var(--panel);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.nav-spacer { flex: 1; }
.nav-links { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink-soft); font-size: 14px; font-weight: 500; text-decoration: none;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink); color: var(--bg);
  padding: 7px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent); }

/* ─── breadcrumb ─── */
.breadcrumb {
  max-width: 1280px; margin: 0 auto; padding: 14px 32px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb .sep { margin: 0 6px; color: var(--line); }
.breadcrumb .here { color: var(--ink); }

/* ─── hero ─── */
.hero {
  max-width: 1280px; margin: 0 auto;
  padding: 32px 32px 96px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: start;
}
.doc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--accent); background: var(--accent-soft);
  padding: 5px 12px; border-radius: 4px; margin-bottom: 28px;
}
h1 {
  font-weight: 700;
  font-size: clamp(40px, 5.8vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 24px;
}
h1 .em { color: var(--accent); }
.subhead {
  font-size: 17px; line-height: 1.6;
  color: var(--ink-soft); max-width: 540px; margin: 0 0 32px;
}

.ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.btn {
  font-family: inherit; font-size: 14px; font-weight: 600;
  padding: 11px 20px; border-radius: 7px; text-decoration: none;
  transition: all 0.12s; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; border: none;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: #2a2a26; }
.btn-secondary {
  color: var(--ink); background: var(--panel); border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--ink); }
.arrow { font-size: 14px; }

/* meta-grid under hero */
.meta-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.meta-cell {
  padding: 18px 0;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  border-right: 1px solid var(--line-soft);
}
.meta-cell:last-child { border-right: none; }
.meta-cell:not(:first-child) { padding-left: 22px; }
.meta-cell .key {
  color: var(--muted); margin-bottom: 8px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
}
.meta-cell .val { color: var(--ink); font-weight: 600; }
.int-row { display: inline-flex; gap: 6px; align-items: center; }
.int-badge {
  width: 28px; height: 28px; background: var(--ink); border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.12s ease;
  color: white; font-size: 12px; font-weight: 700;
}
.int-badge:hover { transform: translateY(-1px); }
.int-badge img { width: 16px; height: 16px; display: block; }
.int-badge.gh { background: #1f1f1f; }
.int-badge.se { background: #362d59; }
.int-badge.li { background: #5e6ad2; }
.int-badge.sl { background: #4a154b; }

.status-live {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--accent); font-weight: 600;
}
.status-live::before {
  content: ''; width: 7px; height: 7px;
  background: var(--accent); border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* hero visual / queue */
.visual {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 24px; padding: 28px;
  box-shadow: 0 1px 2px rgba(26,26,23,0.04), 0 12px 40px rgba(26,26,23,0.06);
}
.visual-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); margin-bottom: 6px;
}
.visual-title { font-weight: 600; font-size: 14px; }
.visual-meta { font-size: 12px; color: var(--muted); }
.task {
  padding: 16px 0; border-bottom: 1px solid var(--line-soft);
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 14px; align-items: center;
}
.task:last-child { border-bottom: none; padding-bottom: 0; }
.status { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.status.shipped { background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.status.coding {
  background: var(--warn); box-shadow: 0 0 0 4px var(--warn-soft);
  animation: pulse 1.6s ease-in-out infinite;
}
.status.queued { background: var(--line); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--warn-soft); }
  50%      { box-shadow: 0 0 0 8px var(--warn-soft); }
}
.task-title {
  font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 3px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.task-sub { font-size: 12px; color: var(--muted); }
.task-time { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; }

/* ─── section: who is this for? ─── */
.for-who {
  max-width: 1280px; margin: 0 auto;
  padding: 100px 32px 60px;
}
.for-who-head { margin-bottom: 48px; max-width: 720px; }
.kicker {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 22px; display: inline-block;
}
h2 {
  font-weight: 700; font-size: clamp(36px, 5vw, 56px);
  line-height: 1.04; letter-spacing: -0.035em;
  color: var(--ink); margin: 0 0 18px;
}
h2 .em { color: var(--accent); }
.lead {
  font-size: 17px; line-height: 1.55;
  color: var(--ink-soft); max-width: 560px; margin: 0;
}

.persona-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.persona {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 28px 26px;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: all 0.18s ease;
}
.persona:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,26,23,0.06);
}
.persona-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 18px;
}
.persona-title {
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 12px; color: var(--ink);
}
.persona-desc {
  font-size: 14px; line-height: 1.55;
  color: var(--ink-soft); margin-bottom: 20px;
}
.persona-link {
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--accent); font-weight: 700;
  display: flex; justify-content: space-between; align-items: center;
}

/* ─── section: ask leroy (management) ─── */
.ask-section {
  max-width: 1120px; margin: 0 auto;
  padding: 60px 32px 100px;
}
.ask-head { margin-bottom: 48px; max-width: 720px; }
.ask-head .lead { margin: 0; }

.ask-visual {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 1px 2px rgba(26,26,23,0.04), 0 12px 40px rgba(26,26,23,0.06);
}
.ask-input {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px 14px 44px;
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.ask-input input {
  flex: 1;
  background: transparent; border: none; outline: none;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
}
.ask-input input::placeholder { color: var(--muted); }
.ask-input-icon {
  position: absolute;
  left: 18px; top: 50%; transform: translateY(-50%);
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent); font-size: 16px; font-weight: 700;
}
.ask-input-hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  background: var(--panel);
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.ask-thread { display: flex; flex-direction: column; gap: 22px; }
.ask-turn { display: flex; flex-direction: column; gap: 10px; }

.ask-query {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--ink-soft);
  padding-left: 4px;
}
.ask-bubble {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  background: var(--panel-2);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ask-answer {
  background: var(--panel-2);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  padding: 18px 20px;
}
.ask-answer-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.ask-answer-head .logo-mark { width: 22px; height: 22px; font-size: 12px; }
.ask-answer-summary { font-size: 14px; color: var(--ink); font-weight: 500; }
.ask-answer .task { padding: 14px 0; }
.ask-answer .task:last-child { padding-bottom: 0; }
.ask-answer-foot {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink-soft);
}
.ask-answer-foot .accent { color: var(--accent); font-weight: 600; }

/* ─── section: problem ─── */
.problem { padding: 60px 32px 120px; max-width: 1120px; margin: 0 auto; }
.problem-head { margin-bottom: 56px; max-width: 720px; }
.bar-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; padding: 36px 36px 28px;
  box-shadow: 0 1px 2px rgba(26,26,23,0.04), 0 8px 24px rgba(26,26,23,0.05);
}
.bar-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 22px; flex-wrap: wrap; gap: 12px;
}
.bar-head-left { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.bar-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(48px, 7vw, 88px); font-weight: 700;
  line-height: 0.92; letter-spacing: -0.04em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.bar-num-label {
  font-size: 18px; font-weight: 700; color: var(--ink);
  line-height: 1.3; letter-spacing: -0.01em; max-width: 280px;
}
.bar-num-label .small {
  display: block; font-size: 13px; color: var(--muted);
  font-weight: 500; margin-top: 4px;
}
.bar-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
}
.bar {
  display: flex; height: 56px; border-radius: 10px; overflow: hidden;
  background: var(--panel-2); border: 1px solid var(--line);
  margin: 8px 0 18px;
}
.seg {
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700;
  color: var(--panel); border-right: 1px solid rgba(255,255,255,0.16);
}
.seg:last-child { border-right: none; }
.seg.s1 { background: #2a2a26; flex-basis: 16.7%; }
.seg.s2 { background: #1a1a17; flex-basis: 33.3%; }
.seg.s3 { background: #2a2a26; flex-basis: 33.3%; }
.seg.s4 { background: #1a1a17; flex-basis: 16.7%; }
.legend { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.leg { padding: 14px 0 14px 16px; border-right: 1px solid var(--line-soft); }
.leg:first-child { padding-left: 0; }
.leg:last-child { border-right: none; }
.leg-time {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  font-weight: 700; color: var(--ink); margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.leg-label { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.leg-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }
.bar-footer {
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  color: var(--ink-soft);
}
.bar-footer strong { color: var(--ink); font-weight: 700; }
.bar-footer .arrow { color: var(--accent); font-weight: 700; }

/* ─── section: how it works ─── */
.howitworks { padding: 60px 32px 120px; max-width: 1280px; margin: 0 auto; }
.howitworks-head {
  text-align: center; margin-bottom: 64px;
  max-width: 680px; margin-left: auto; margin-right: auto;
}
.howitworks-head .lead { margin: 0 auto; }
.flow-grid {
  display: grid; grid-template-columns: 1fr 1fr 1.6fr 1fr; gap: 14px;
}
.step {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 26px 24px;
  position: relative; display: flex; flex-direction: column;
}
.step.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.step-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); font-weight: 700;
  letter-spacing: 0.1em; margin-bottom: 14px;
}
.step.featured .step-num { color: var(--accent); }
.step-title {
  font-size: 18px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.015em; margin-bottom: 8px;
}
.step-desc {
  font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin-bottom: 18px;
}
.step-detail {
  margin-top: auto; display: flex; gap: 6px; flex-wrap: wrap;
  padding-top: 14px; border-top: 1px solid var(--line-soft);
}
.pill {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--ink-soft); background: var(--panel-2);
  padding: 4px 10px; border-radius: 4px; font-weight: 600;
}
.modes {
  display: flex; flex-direction: column; gap: 10px; margin-top: auto;
  padding-top: 14px; border-top: 1px solid var(--line-soft);
}
.mode {
  display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: baseline;
  padding: 10px 12px; background: var(--panel-2);
  border-radius: 7px; border: 1px solid var(--line-soft);
}
.mode-label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700;
  color: var(--ink); text-transform: uppercase; letter-spacing: 0.04em;
}
.mode-desc { font-size: 12px; color: var(--ink-soft); line-height: 1.4; }
.mode.default { background: var(--accent-soft); border-color: transparent; }
.mode.default .mode-label { color: var(--accent); }
.step-arrow {
  position: absolute; right: -10px; top: 50%;
  transform: translateY(-50%); color: var(--line);
  font-size: 16px; z-index: 1;
  background: var(--bg); padding: 0 2px;
  font-family: 'JetBrains Mono', monospace;
}
.step:last-child .step-arrow { display: none; }

/* ─── waitlist ─── */
.waitlist-wrap {
  background: var(--ink); color: var(--bg);
  padding: 120px 32px;
}
.waitlist {
  max-width: 920px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.waitlist h2 {
  color: var(--bg); margin-bottom: 18px;
  font-size: clamp(32px, 4.4vw, 48px); letter-spacing: -0.03em;
}
.waitlist h2 .em { color: #8ecaa8; }
.waitlist p {
  color: #b8b8af; font-size: 16px; line-height: 1.6; margin: 0 0 24px;
}
.waitlist .kicker { color: #8ecaa8; }
.waitlist-form {
  background: #2a2a26; border: 1px solid #3a3a36; border-radius: 14px;
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: #b8b8af; text-transform: uppercase; letter-spacing: 0.08em;
}
.field input, .field select {
  background: #1a1a17; border: 1px solid #3a3a36; border-radius: 7px;
  padding: 11px 14px; font-size: 14px; color: var(--bg);
  font-family: inherit; outline: none;
}
.field input:focus, .field select:focus { border-color: #8ecaa8; }
.checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: #b8b8af; line-height: 1.45;
}
.checkbox-row input { margin-top: 2px; }
.submit {
  background: #8ecaa8; color: var(--ink);
  padding: 13px 20px; border: none; border-radius: 7px;
  font-size: 14px; font-weight: 700; cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}
.submit:hover { background: #a3d6b9; }
.waitlist-meta {
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--muted); margin-top: 18px;
}
.waitlist-success {
  background: #2a2a26; border: 1px solid #3a3a36; border-radius: 14px;
  padding: 28px; color: var(--bg); font-size: 15px; line-height: 1.6;
}
.waitlist-success strong { color: #8ecaa8; font-size: 17px; }

/* ─── footer ─── */
footer {
  max-width: 1280px; margin: 0 auto;
  padding: 48px 32px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--muted);
}
footer a { color: var(--ink-soft); text-decoration: none; }
footer a:hover { color: var(--ink); }
.footer-links { display: flex; gap: 24px; }

/* ============================================================
   PERSONA-PAGE SHARED COMPONENTS
   ============================================================ */

/* generic content section */
.section { max-width: 1120px; margin: 0 auto; padding: 80px 32px; }
.section-narrow { max-width: 860px; }
.section-head { margin-bottom: 48px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* "what you hand off" checklist */
.handoff-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.handoff-item {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 12px; padding: 20px 22px;
  display: flex; gap: 14px; align-items: flex-start;
}
.handoff-check {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
  background: var(--accent-soft); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
}
.handoff-text strong {
  display: block; font-size: 15px; font-weight: 600;
  color: var(--ink); margin-bottom: 3px;
}
.handoff-text span { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* horizontal flow (e.g. Sentry → root cause → PR) */
.flow-h {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0;
  align-items: stretch;
}
.flow-h-step {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 14px; padding: 24px 22px;
  display: flex; flex-direction: column;
}
.flow-h-step.featured { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.flow-h-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--line); font-size: 20px; padding: 0 14px;
  font-family: 'JetBrains Mono', monospace;
}
.flow-h-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px;
}
.flow-h-step.featured .flow-h-tag { color: var(--accent); }
.flow-h-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
.flow-h-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }

/* split content row (text + visual) */
.split {
  max-width: 1120px; margin: 0 auto; padding: 80px 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split.reverse .split-visual { order: -1; }

/* backlog burndown counter */
.burn-card {
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; padding: 32px;
  box-shadow: 0 1px 2px rgba(26,26,23,0.04), 0 12px 40px rgba(26,26,23,0.06);
}
.burn-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 22px; }
.burn-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(40px, 6vw, 72px); font-weight: 700;
  line-height: 0.9; letter-spacing: -0.04em; color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.burn-num-label { font-size: 14px; color: var(--ink-soft); font-weight: 600; margin-top: 6px; }
.burn-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
}
.burn-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--line-soft); font-size: 14px;
}
.burn-row:last-child { border-bottom: none; }
.burn-row .done { color: var(--muted); text-decoration: line-through; }
.burn-row .badge {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--accent); background: var(--accent-soft);
  padding: 2px 8px; border-radius: 4px; font-weight: 700;
}

/* big closing quote / statement */
.statement {
  max-width: 860px; margin: 0 auto; padding: 100px 32px; text-align: center;
}
.statement p {
  font-size: clamp(24px, 3.6vw, 38px); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.2; color: var(--ink); margin: 0;
}
.statement p .em { color: var(--accent); }

/* ─── responsive ─── */
@media (max-width: 1100px) {
  .flow-grid { grid-template-columns: 1fr 1fr; }
  .flow-grid .step:nth-child(3) { grid-column: 1 / span 2; }
  .step:nth-child(2) .step-arrow { display: none; }
  .persona-grid { grid-template-columns: 1fr; gap: 14px; }
  .waitlist { grid-template-columns: 1fr; gap: 32px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-visual { order: 0; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 32px; }
  .meta-grid { grid-template-columns: 1fr; }
  .meta-cell { border-right: none; border-bottom: 1px solid var(--line-soft); padding: 12px 0 !important; }
  .meta-cell:last-child { border-bottom: none; }
  .flow-h { grid-template-columns: 1fr; }
  .flow-h-arrow { transform: rotate(90deg); padding: 10px 0; }
  .handoff-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .flow-grid { grid-template-columns: 1fr; }
  .flow-grid .step:nth-child(3) { grid-column: auto; }
  .step-arrow { display: none !important; }
  .section { padding: 56px 20px; }
  .split { padding: 56px 20px; }
  .ask-section { padding: 40px 20px 80px; }
  .ask-visual { padding: 20px; }
}
