/* ============================================================
   pages/why-rtg.css — Why RTG page-specific styles
   ------------------------------------------------------------
   Depends on: tokens.css, base.css, chrome.css
   ============================================================ */

/* ════════════════════════════════════════════
   SHARED SECTION HEADER PATTERNS
   ════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-header.left {
  text-align: left;
  margin: 0 0 48px;
}
.section-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate-blue);
  background: var(--slate-blue-soft);
  border: 1px solid rgba(61,90,122,0.20);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 24px;
}
.section-title {
  font-size: 48px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.04em;
  line-height: 1.05; margin: 0 0 20px;
}
.section-title .accent {
  color: var(--red);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .section-title { font-size: 34px; } }
.section-sub {
  font-size: 17px; color: var(--body);
  line-height: 1.6; margin: 0 auto;
  max-width: 640px;
}
.section-header.left .section-sub { margin: 0; }

/* ════════════════════════════════════════════
   HERO — single-column, narrative-led
   ════════════════════════════════════════════ */
.hero {
  padding: 48px 0 32px;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(61,90,122,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(220,38,38,0.04) 0%, transparent 50%),
    var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
  background: var(--red-wash);
  border: 1px solid rgba(220,38,38,0.30);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 26px;
}
.hero h1 {
  font-size: 54px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.045em;
  line-height: 1.08; margin: 0 0 24px;
  max-width: 860px;
  margin-left: auto; margin-right: auto;
}
.hero h1 .accent {
  color: var(--red);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}
@media (max-width: 1100px) { .hero h1 { font-size: 46px; } }
@media (max-width: 720px)  { .hero h1 { font-size: 32px; } }
.hero-sub {
  font-size: 19px; color: var(--body);
  line-height: 1.55;
  max-width: 680px;
  margin: 0 auto 36px;
}
.hero-ctas {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   FEATURE DEEP-DIVE sections (5x)
   ════════════════════════════════════════════ */
.feature {
  padding: 72px 0;
  background: var(--bg);
}
.feature.alt { background: var(--bg-soft); }
.feature.alt + .feature.alt {
  border-top: 1px solid var(--line-soft);
}
/* Tighten the transition when the last feature is followed by the
   "Honest about fit" section — same bg-soft background makes 100+120
   stacked padding feel like dead space rather than a deliberate gap. */
.feature:has(+ .fit) { padding-bottom: 40px; }
.feature-num {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
  background: var(--red-wash);
  border: 1px solid rgba(220,38,38,0.30);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.feature-title {
  font-size: 42px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.035em;
  line-height: 1.1; margin: 0 0 24px;
  max-width: 760px;
}
.feature-title .accent {
  color: var(--red);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .feature-title { font-size: 30px; } }
.feature-body {
  max-width: 720px;
  margin: 0 0 28px;
}
.feature-body p {
  font-size: 16.5px; color: var(--body);
  line-height: 1.65; margin: 0 0 16px;
}
.feature-body p:last-child { margin-bottom: 0; }
.feature-body strong { color: var(--ink); font-weight: 700; }
/* Bullets above, full-width use-case callout below — the use case sits
   horizontally across the section like .feature-origin, so the page has
   a consistent rhythm of full-width callouts (origin = red, use case =
   slate-blue). */
.feature-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.feature-bullets-label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--slate-blue);
  margin-bottom: 14px;
}
.feature-bullets {
  list-style: none; padding: 0; margin: 0;
}
.feature-bullets li {
  padding: 6px 0 6px 26px;
  font-size: 14.5px; color: var(--body);
  line-height: 1.55;
  border-bottom: 1px dashed var(--line-soft);
  position: relative;
}
.feature-bullets li:last-child { border-bottom: none; }
.feature-bullets li::before {
  content: '\2192';
  position: absolute; left: 0; top: 6px;
  color: var(--slate-blue);
  font-weight: 800;
  font-size: 14px;
}
.feature-bullets li strong { color: var(--ink); font-weight: 700; }
/* Use case — mirrors the shape/scale of .feature-origin (the "Born from
   a real ask" callout) but in slate-blue, so the page has two callout
   types that read as a matched set: red for origin stories, slate-blue
   for scenarios. */
.feature-usecase {
  background: var(--slate-blue-soft);
  border-right: 3px solid var(--slate-blue);
  padding: 22px 26px;
  border-radius: 12px 0 0 12px;
}

/* ─── Origin aside ─── A power moment proving the roadmap principle:
   "the features you ask for are the features we build." Red accent so it
   reads as the editorial voice, not just another product callout.
   Sits between feature-body and feature-cols. */
.feature-origin {
  margin: 32px 0 28px;
  padding: 22px 26px;
  background: var(--red-wash);
  border-left: 3px solid var(--red);
  border-radius: 0 12px 12px 0;
}
.feature-origin-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.feature-origin p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin: 0;
}
.feature-origin p strong { color: var(--ink); font-weight: 700; }
.feature-origin a {
  color: var(--red-deep);
  font-weight: 700;
  margin-left: 6px;
  border-bottom: 1px solid rgba(220,38,38,0.30);
  transition: border-color 0.15s ease;
}
.feature-origin a:hover {
  color: var(--red-deep);
  border-bottom-color: var(--red-deep);
}

.feature-usecase-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-blue);
  margin-bottom: 10px;
}
/* CSS-only play triangle in front of the label — avoids loading a full
   icon library for a single glyph on the public pages. */
.feature-usecase-label::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--slate-blue);
  margin-right: 8px;
  vertical-align: 1px;
  opacity: 0.85;
}
.feature-usecase p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin: 0;
}
.feature-usecase p + p { margin-top: 14px; }
.feature-usecase p strong { color: var(--ink); font-weight: 700; }
.feature-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 28px;
  font-size: 14px; font-weight: 700;
  color: var(--slate-blue);
  transition: gap 0.15s ease;
}
.feature-cta:hover { gap: 12px; color: var(--slate-blue-deep); }

/* ════════════════════════════════════════════
   SHIFT — three columns, framing the problem
   ════════════════════════════════════════════ */
.shift {
  padding: 100px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.shift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .shift-grid { grid-template-columns: 1fr; gap: 20px; } }
.shift-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
}
.shift-num {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; color: var(--slate-blue);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.shift-card h3 {
  font-size: 22px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1.2; margin: 0 0 14px;
}
.shift-card p {
  font-size: 14.5px; color: var(--body);
  line-height: 1.6; margin: 0;
}
.shift-card strong { color: var(--ink); font-weight: 700; }

/* ════════════════════════════════════════════
   QUESTIONS — 5 criteria, vertical stack
   ════════════════════════════════════════════ */
.questions {
  padding: 120px 0;
  background: var(--bg);
}
.question-list {
  display: flex; flex-direction: column;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.question-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 32px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.question-card:hover {
  border-color: rgba(61,90,122,0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -10px rgba(15,23,42,0.10);
}
@media (max-width: 720px) {
  .question-card { grid-template-columns: 1fr; padding: 24px; gap: 14px; }
}
.question-num {
  font-size: 13px; font-weight: 800;
  color: var(--red);
  background: var(--red-wash);
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px; width: 56px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.question-card h3 {
  font-size: 22px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1.2; margin: 0 0 12px;
}
.question-card p {
  font-size: 15.5px; color: var(--body);
  line-height: 1.6; margin: 0 0 14px;
}
.question-card p:last-child { margin-bottom: 0; }
.question-test {
  background: var(--slate-blue-soft);
  border-left: 3px solid var(--slate-blue);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: var(--ink-mid);
}
.question-test::before {
  content: 'Test: ';
  font-weight: 800;
  color: var(--slate-blue);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════
   MATH — dark stripe with big stat row
   ════════════════════════════════════════════ */
.math {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 30%, rgba(74,111,165,0.18) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 80% 70%, rgba(220,38,38,0.12) 0%, transparent 50%),
    var(--ink);
  color: #fff;
  position: relative; overflow: hidden;
}
.math .section-header        { margin-bottom: 64px; }
.math .section-title         { color: #fff; }
.math .section-title .accent { color: #fca5a5; }
.math .section-sub           { color: rgba(255,255,255,0.72); }
.math-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff;
  background: rgba(220,38,38,0.20);
  border: 1px solid rgba(220,38,38,0.45);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 24px;
}
.math-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
@media (max-width: 880px) { .math-stats { grid-template-columns: 1fr; gap: 20px; } }
.math-stat {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
.math-stat-num {
  font-size: 64px; font-weight: 900;
  color: #fff; letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}
@media (max-width: 720px) { .math-stat-num { font-size: 48px; } }
.math-stat-unit {
  font-size: 14px; font-weight: 700;
  color: #fca5a5;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 6px;
}
.math-stat-note {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
}
.math-breakdown {
  max-width: 760px; margin: 0 auto;
  padding: 28px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  text-align: left;
}
.math-breakdown p {
  font-size: 16px; color: rgba(255,255,255,0.80);
  line-height: 1.65; margin: 0 0 16px;
}
.math-breakdown p:last-child { margin-bottom: 0; }
.math-breakdown strong { color: #fff; font-weight: 700; }

/* ════════════════════════════════════════════
   FOUNDERS — two-column, founder voice
   ════════════════════════════════════════════ */
.founders {
  padding: 120px 0;
  background: var(--bg-soft);
}
.founders-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .founders-grid { grid-template-columns: 1fr; gap: 40px; } }
.founders-eyebrow {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--slate-blue);
  background: var(--slate-blue-soft);
  border: 1px solid rgba(61,90,122,0.20);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 24px;
}
.founders-copy h2 {
  font-size: 44px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.035em;
  line-height: 1.1; margin: 0 0 24px;
}
.founders-copy h2 .accent {
  color: var(--slate-blue);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .founders-copy h2 { font-size: 32px; } }
.founders-copy p {
  font-size: 16.5px; color: var(--body);
  line-height: 1.65; margin: 0 0 18px;
}
.founders-sign {
  margin-top: 24px !important;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 18px !important;
  color: var(--slate-blue);
  font-weight: 600;
}
.founders-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 28px -10px rgba(15,23,42,0.10);
}
.founders-card-eyebrow {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-blue);
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.founders-stats { list-style: none; padding: 0; margin: 0; }
.founders-stats li {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.5;
}
.founders-stats li:last-child  { border-bottom: none; padding-bottom: 0; }
.founders-stats li:first-child { padding-top: 0; }
.founders-stats li strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ════════════════════════════════════════════
   SHIPS — 5 mini-cards linking to homepage stripes
   ════════════════════════════════════════════ */
.ships {
  padding: 120px 0;
  background: var(--bg);
}
.ships-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .ships-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .ships-grid { grid-template-columns: 1fr; } }
.ships-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  color: inherit;
  text-decoration: none;
  transition: all 0.15s ease;
  position: relative;
}
.ships-card:hover {
  border-color: var(--slate-blue);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -12px rgba(61,90,122,0.20);
  color: inherit;
}
.ships-card-num {
  display: inline-block;
  font-size: 11px; font-weight: 800;
  color: var(--red);
  background: var(--red-wash);
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: 6px;
  padding: 3px 9px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.ships-card h3 {
  font-size: 19px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1.25; margin: 0 0 12px;
}
.ships-card p {
  font-size: 14px; color: var(--body);
  line-height: 1.55; margin: 0 0 16px;
}
.ships-cta {
  font-size: 13px; font-weight: 700;
  color: var(--slate-blue);
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.15s ease;
}
.ships-card:hover .ships-cta { gap: 10px; }

/* ════════════════════════════════════════════
   FIT — honest two-column (right-for vs not-right-for)
   ════════════════════════════════════════════ */
.fit {
  padding: 40px 0 120px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line-soft);
}
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1040px; margin: 0 auto;
}
@media (max-width: 880px) { .fit-grid { grid-template-columns: 1fr; gap: 20px; } }
.fit-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
}
.fit-right { border-color: rgba(34,197,94,0.30); }
.fit-not   { border-color: rgba(220,38,38,0.22); }
.fit-col-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.fit-check, .fit-x {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 16px; font-weight: 900;
  flex-shrink: 0;
}
.fit-check { background: rgba(34,197,94,0.15); color: #15803d; }
.fit-x     { background: rgba(220,38,38,0.12); color: var(--red-deep); }
.fit-col h3 {
  font-size: 20px; font-weight: 800;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1.2; margin: 0;
}
.fit-col ul { list-style: none; padding: 0; margin: 0; }
.fit-col li {
  padding: 10px 0 10px 26px;
  font-size: 14.5px; color: var(--body);
  line-height: 1.55;
  position: relative;
}
.fit-col li::before {
  position: absolute;
  left: 0; top: 11px;
  font-size: 14px; font-weight: 800;
}
.fit-right li::before { content: '✓'; color: #15803d; }
.fit-not   li::before { content: '×'; color: var(--red-deep); }

/* ════════════════════════════════════════════
   FINAL CTA — bold, layered
   ════════════════════════════════════════════ */
.final-cta {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(61,90,122,0.10) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 50% 100%, rgba(220,38,38,0.06) 0%, transparent 50%),
    var(--bg);
  padding: 120px 0;
  text-align: center;
}
.final-cta h2 {
  font-size: 60px; font-weight: 900;
  color: var(--ink); letter-spacing: -0.05em;
  line-height: 1.0; margin: 0 auto 22px;
  max-width: 800px;
}
.final-cta h2 .accent {
  color: var(--red);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
}
@media (max-width: 720px) { .final-cta h2 { font-size: 40px; } }
.final-cta p {
  font-size: 18px; color: var(--body);
  max-width: 600px; margin: 0 auto 36px;
}
.final-cta .hero-ctas { justify-content: center; margin-bottom: 40px; }
.final-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px; margin: 40px auto 0;
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
  text-align: left;
}
@media (max-width: 720px) { .final-trust { grid-template-columns: 1fr; } }
.final-trust-item {
  display: flex; align-items: flex-start; gap: 12px;
}
.final-trust-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--slate-blue-soft);
  color: var(--slate-blue);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.final-trust-icon.red {
  background: var(--red-wash); color: var(--red);
}
.final-trust h4 {
  font-size: 14px; font-weight: 800;
  color: var(--ink); margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.final-trust p {
  font-size: 13px; color: var(--muted);
  line-height: 1.5; margin: 0;
}
.final-trust a { color: var(--slate-blue); font-weight: 600; }

/* ────────── Residual .footer-col rules ──────────
   The bundle's footer is the inline .footer-nav row (handled by
   chrome.css). These .footer-col styles remain for the older
   column-style footer markup, just in case a stale partial keeps it. */
.footer-col h4 {
  font-size: 12px; font-weight: 800;
  color: var(--ink); letter-spacing: 0.08em;
  text-transform: uppercase; margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a       { color: var(--muted); font-size: 13.5px; }
.footer-col a:hover { color: var(--ink); }

/* Back-to-top — extra reduced-motion + focus rules unique to this page */
.back-to-top:focus-visible {
  outline: 2px solid var(--slate-blue);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top              { transition: opacity 0.15s ease; transform: none; }
  .back-to-top.is-visible   { transform: none; }
  .back-to-top:hover        { transform: none; }
}

/* ═══════════════════════════════════════════════════════
   V2 POLISH PASS — editorial feature mastheads + mono math
   ═══════════════════════════════════════════════════════ */

/* Feature-num: from red pill → editorial §-style masthead.
   Replaces the pill with a hairline-ruled, mono-prefixed row above the
   feature headline. Keeps it red-accent so it still reads as ours. */
.feature-num {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 18px !important;
  align-items: baseline !important;
  padding: 12px 0 !important;
  margin: 0 0 28px !important;
  background: transparent !important;
  border: none !important;
  border-top: 1px solid var(--line) !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  max-width: 720px;
  font-variant-numeric: tabular-nums;
}
.feature-num .live-dot { display: none !important; }
.feature-num::before {
  content: '\00a7';
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--red);
  text-transform: none;
}

/* ─── Math stripe — mono numerals for editorial weight ─── */
.math-stat-num {
  font-family: var(--mono) !important;
  font-weight: 500 !important;
  letter-spacing: -0.04em !important;
}
