/* =========================================================
   Verlumn — Investment Proposal
   A clean, premium, single-page presentation. Light surfaces,
   generous whitespace, strong typography, one restrained
   lime accent used only for signal — never decoration.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --bg: #fafaf8;
  --bg-alt: #f2f1f7;
  --bg-card: #ffffff;
  --bg-hover: #eef0eb;

  --text-primary: #14171a;
  --text-secondary: #565d5a;
  --text-tertiary: #8a908b;
  --text-quaternary: #c7cbc2;

  --border: #e6e8e2;
  --border-strong: #d8dbd2;
  --border-hover: #c3c8bd;

  --accent: #66c82e;
  --accent-dark: #3c7a16;
  --accent-bg: rgba(102, 200, 46, 0.1);
  --accent-border: rgba(102, 200, 46, 0.35);

  /* Secondary accent — used only for chart series, alongside lime */
  --accent-2: #7c5cff;
  --accent-2-dark: #5a3fd6;
  --accent-2-bg: rgba(124, 92, 255, 0.1);
  --accent-2-border: rgba(124, 92, 255, 0.32);

  --chart-neutral-1: #cfd3ea;
  --chart-neutral-2: #e2e4d9;

  /* Dark surface — used sparingly, for the hero and closing
     ask, to bookend the document with stronger contrast. */
  --dark-bg: #121316;
  --dark-card-bg: #1b1d21;
  --dark-border: #2a2d32;
  --dark-border-strong: #363a41;
  --dark-text-primary: #f5f6f4;
  --dark-text-secondary: #a8acb3;
  --dark-text-tertiary: #74787f;

  --shadow-soft: 0 1px 2px rgba(20, 23, 26, 0.04), 0 8px 20px rgba(20, 23, 26, 0.045);
  --shadow-lift: 0 4px 12px rgba(20, 23, 26, 0.06), 0 20px 44px rgba(20, 23, 26, 0.07);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --max-width: 760px;
  --max-width-wide: 1100px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
table { border-collapse: collapse; }
svg { display: block; }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  z-index: 300;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(102, 200, 46, 0.45);
  transition: width 0.12s var(--ease);
}

/* ---------- Top bar ---------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(250, 250, 248, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.topbar__brand { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: var(--text-primary); }
.topbar__tag { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-tertiary); }

/* ---------- Dot navigation (right edge, desktop only) ---------- */
.dot-nav {
  position: fixed;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dot-nav a {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
  display: block;
}

.dot-nav a:hover { background: var(--text-tertiary); transform: scale(1.2); }
.dot-nav a.active { background: var(--accent); box-shadow: 0 0 0 4px var(--accent-bg); }

.dot-nav a .dot-nav__label {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s var(--ease);
}

.dot-nav a:hover .dot-nav__label { opacity: 1; }

@media (max-width: 1200px) {
  .dot-nav { display: none; }
}

/* ---------- Sections ---------- */
main { display: block; }

.proposal-section {
  padding: 120px 40px;
  position: relative;
}

.proposal-section:nth-of-type(even) { background: var(--bg-alt); }

/* Dark section modifier — the closing contrast beat. Applied
   selectively (Investment Summary only) rather than to every
   other section, to keep the reading experience calm. */
.proposal-section.proposal-section--dark { background: var(--dark-bg); }
.proposal-section--dark .section__eyebrow { color: var(--accent); }
.proposal-section--dark .section__title,
.proposal-section--dark .closing-statement,
.proposal-section--dark .ask-card__value { color: var(--dark-text-primary); }
.proposal-section--dark .section__subtitle { color: var(--dark-text-secondary); }
.proposal-section--dark .card,
.proposal-section--dark .ask-card,
.proposal-section--dark .callout {
  background: var(--dark-card-bg);
  border-color: var(--dark-border);
}
.proposal-section--dark .card:hover,
.proposal-section--dark .ask-card:hover { border-color: var(--dark-border-strong); }
.proposal-section--dark .card h3,
.proposal-section--dark .callout p { color: var(--dark-text-primary); }
.proposal-section--dark .card p { color: var(--dark-text-secondary); }
.proposal-section--dark .ask-card__label { color: var(--dark-text-tertiary); }
.proposal-section--dark .ask-card__note { color: var(--dark-text-secondary); }

/* Extra component coverage for dark sections with richer content
   (Financial Opportunity: process flow, tables, badges, bars) */
.proposal-section--dark .table-section-label { color: var(--dark-text-primary); }
.proposal-section--dark .table-wrap { border-color: var(--dark-border); }
.proposal-section--dark .table th { background: var(--dark-card-bg); color: var(--dark-text-tertiary); border-color: var(--dark-border); }
.proposal-section--dark .table td { color: var(--dark-text-secondary); border-color: var(--dark-border); }
.proposal-section--dark .table td:first-child { color: var(--dark-text-primary); }
.proposal-section--dark .table tbody tr:hover { background: var(--dark-card-bg); }
.proposal-section--dark .process-flow__step { background: var(--dark-card-bg); border-color: var(--dark-border); box-shadow: none; }
.proposal-section--dark .process-flow__step .process-flow__label { color: var(--dark-text-primary); }
.proposal-section--dark .process-flow__connector { color: var(--dark-text-tertiary); }
.proposal-section--dark .bar-chart { background: var(--dark-card-bg); border-color: var(--dark-border); }
.proposal-section--dark .bar-chart__label { color: var(--dark-text-secondary); }
.proposal-section--dark .bar-chart__value { color: var(--dark-text-tertiary); }
.proposal-section--dark .bar-chart__track { background: var(--dark-bg); border-color: var(--dark-border); }
.proposal-section--dark .illustrative-badge { background: rgba(124, 92, 255, 0.16); border-color: rgba(124, 92, 255, 0.4); }
.proposal-section--dark .scenario-card__meta { color: var(--dark-text-tertiary); }
.proposal-section--dark .scenario-card__stat-label { color: var(--dark-text-tertiary); }
.proposal-section--dark .scenario-card__stat-value { color: var(--dark-text-primary); }

.proposal-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.proposal-section__inner--wide { max-width: var(--max-width-wide); }

.section__eyebrow {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.section__title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 18px;
  line-height: 1.15;
}

.section__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 44px;
}

/* ---------- Reveal on scroll ----------
   Safe by default: .reveal is fully visible unless JS explicitly
   arms it (only for content below the initial viewport). This
   guarantees above-the-fold content is never hidden behind a
   script that fails to run or an observer that never fires. */
.reveal { opacity: 1; transform: none; }

.reveal.reveal-pending {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.reveal-pending.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Hero (dark — the first contrast beat) ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 100px;
  background: var(--dark-bg);
}

.hero__eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
}

.hero__title {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--dark-text-primary);
  max-width: 900px;
  margin-bottom: 26px;
}

.hero__subtitle {
  font-size: 19px;
  line-height: 1.6;
  color: var(--dark-text-secondary);
  max-width: 620px;
  margin-bottom: 56px;
}

.hero__scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-text-tertiary);
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card-grid--2up { grid-template-columns: repeat(2, 1fr); }
.card-grid--4up { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 26px 28px;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); letter-spacing: -0.005em; }
.card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Service card with image placeholder */
.service-card { padding: 0; overflow: hidden; }
.service-card__body { padding: 22px 24px 26px; }

.image-placeholder {
  aspect-ratio: 4 / 3;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-quaternary);
}

.image-placeholder svg { width: 34px; height: 34px; }

.image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Client value card */
.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.client-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.client-card__type { font-size: 14.5px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.client-card__value { font-size: 13.5px; color: var(--text-secondary); line-height: 1.55; }

/* ---------- Callouts & quotes ---------- */
.callout {
  border-left: 2px solid var(--accent);
  background: var(--bg-card);
  padding: 22px 26px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-soft);
}

.callout p { color: var(--text-primary); font-size: 15px; line-height: 1.65; }
.callout p + p { margin-top: 12px; }

.quote {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--text-primary);
  border-left: 2px solid var(--border-strong);
  padding: 4px 26px;
  line-height: 1.5;
  max-width: 640px;
}

/* ---------- Tags ---------- */
.tag-grid { display: flex; flex-wrap: wrap; gap: 9px; }

.tag {
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  transition: border-color 0.18s var(--ease), color 0.18s var(--ease);
}

.tag:hover { border-color: var(--accent-border); color: var(--accent-dark); }

/* ---------- Lists ---------- */
.list { display: flex; flex-direction: column; gap: 10px; }
.list li { font-size: 14.5px; padding-left: 20px; position: relative; color: var(--text-secondary); }
.list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-dark); font-weight: 700; }

/* ---------- Phase indicator ---------- */
.phase-indicator { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.phase-indicator__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); }
.phase-indicator__dot--active { background: var(--accent); }
.phase-indicator__label { font-size: 12.5px; color: var(--text-tertiary); margin-left: 6px; }

/* ---------- Table (budget) ---------- */
.table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: 16px 22px; font-size: 14px; border-bottom: 1px solid var(--border); }
.table th { background: var(--bg-alt); color: var(--text-tertiary); font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; font-size: 11px; }
.table td:first-child { color: var(--text-primary); font-weight: 600; white-space: nowrap; }
.table td:last-child { color: var(--text-tertiary); font-style: italic; white-space: nowrap; }
.table tbody tr:hover { background: var(--bg-hover); }
.table tr:last-child td { border-bottom: none; }

.table-row--total td {
  font-weight: 700;
  color: var(--text-primary) !important;
  font-style: normal !important;
  background: var(--accent-bg);
  border-top: 2px solid var(--border-strong);
}

.table-section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 36px 0 14px;
}

.table-section-label:first-child { margin-top: 0; }

/* ---------- Donut chart + legend ---------- */
.donut-chart-row {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  box-shadow: var(--shadow-soft);
  flex-wrap: wrap;
}

.donut-chart { flex-shrink: 0; position: relative; width: 200px; height: 200px; }

.donut-chart svg { transform: rotate(-90deg); }

.donut-chart__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.donut-chart__center-value { font-size: 22px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.02em; }
.donut-chart__center-label { font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-tertiary); margin-top: 4px; }

.chart-legend { display: flex; flex-direction: column; gap: 12px; flex: 1; min-width: 220px; }

.chart-legend__item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-secondary); }
.chart-legend__swatch { width: 10px; height: 10px; border-radius: 3px; flex-shrink: 0; }
.chart-legend__label { flex: 1; color: var(--text-primary); font-weight: 500; }
.chart-legend__pct { color: var(--text-tertiary); font-variant-numeric: tabular-nums; }

/* ---------- Horizontal bar chart ---------- */
.bar-chart {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.bar-chart__row { display: grid; grid-template-columns: 160px 1fr 64px; align-items: center; gap: 12px; }
.bar-chart--wide-values .bar-chart__row { grid-template-columns: 130px 1fr 150px; }
.bar-chart__label { font-size: 12.5px; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar-chart__track { height: 8px; border-radius: 999px; background: var(--bg-alt); overflow: hidden; }
.bar-chart__fill { height: 100%; border-radius: 999px; }
.bar-chart__value { font-size: 12px; color: var(--text-tertiary); text-align: right; font-variant-numeric: tabular-nums; }

/* ---------- Phase growth chart (illustrative) ---------- */
.growth-chart {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 30px 20px;
  box-shadow: var(--shadow-soft);
}

.growth-chart__bars { display: flex; align-items: flex-end; gap: 24px; height: 140px; padding: 0 8px; }
.growth-chart__col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 10px; }
.growth-chart__bar { width: 100%; max-width: 72px; border-radius: 8px 8px 0 0; }
.growth-chart__label { font-size: 12px; color: var(--text-secondary); font-weight: 500; text-align: center; }
.growth-chart__caption { font-size: 11.5px; color: var(--text-quaternary); font-style: italic; text-align: center; margin-top: 16px; }

/* ---------- Process flow (numbered pill workflow) ---------- */
.process-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }

.process-flow__step {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  box-shadow: var(--shadow-soft);
}

.process-flow__step--final { border-color: var(--accent-border); background: var(--accent-bg); }

.process-flow__num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent-dark);
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-flow__step--final .process-flow__num { background: var(--accent); color: #fff; }

.process-flow__label { font-size: 13px; font-weight: 500; color: var(--text-primary); white-space: nowrap; }
.process-flow__connector { color: var(--text-quaternary); font-size: 13px; font-weight: 600; flex-shrink: 0; }

/* ---------- Illustrative badge ---------- */
.illustrative-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-2-dark);
  background: var(--accent-2-bg);
  border: 1px solid var(--accent-2-border);
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ---------- Scenario cards ---------- */
.scenario-card__tier { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-dark); font-weight: 700; margin-bottom: 10px; }
.scenario-card__meta { font-size: 13px; color: var(--text-tertiary); margin-bottom: 18px; }
.scenario-card__stat-row { margin-bottom: 14px; }
.scenario-card__stat-row:last-child { margin-bottom: 0; }
.scenario-card__stat-label { font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 4px; }
.scenario-card__stat-value { font-size: 17px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }

/* ---------- Investment ask (closing) ---------- */
.ask-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lift);
}

.ask-card__label { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 14px; }
.ask-card__value { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; color: var(--text-primary); margin-bottom: 8px; }
.ask-card__note { font-size: 14px; color: var(--text-secondary); max-width: 460px; margin: 0 auto; }

.closing-statement {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  max-width: 680px;
  margin: 44px auto 0;
  text-align: center;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.92);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
  z-index: 150;
}

.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
.back-to-top:hover { border-color: var(--accent-border); background: var(--accent-bg); color: var(--accent-dark); }

/* ---------- Footer ---------- */
.proposal-footer {
  padding: 48px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-tertiary);
  font-size: 13px;
}

.proposal-footer__credit { margin-top: 8px; font-size: 12px; color: var(--text-quaternary); }
.proposal-footer__credit a { color: var(--text-tertiary); border-bottom: 1px solid var(--border-strong); transition: color 0.15s var(--ease), border-color 0.15s var(--ease); }
.proposal-footer__credit a:hover { color: var(--accent-dark); border-color: var(--accent-border); }

/* ---------- Focus states ---------- */
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent-dark); outline-offset: 2px; border-radius: var(--radius-sm); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4up { grid-template-columns: repeat(2, 1fr); }
  .hero__title { font-size: 48px; }
}

@media (max-width: 720px) {
  .topbar { padding: 16px 20px; }
  .proposal-section { padding: 84px 20px; }
  .hero { padding: 120px 20px 80px; min-height: 92vh; }
  .hero__title { font-size: 34px; }
  .hero__subtitle { font-size: 16px; }
  .section__title { font-size: 27px; }
  .card-grid, .card-grid--2up, .card-grid--4up { grid-template-columns: 1fr; }
  .ask-card { padding: 40px 26px; }
  .ask-card__value { font-size: 40px; }
  .closing-statement { font-size: 18px; }
  .donut-chart-row { justify-content: center; padding: 26px 22px; gap: 24px; }
  .bar-chart__row { grid-template-columns: 100px 1fr 52px; }
  .bar-chart--wide-values .bar-chart__row { grid-template-columns: 1fr; grid-template-rows: auto auto auto; row-gap: 4px; }
  .growth-chart__bars { gap: 12px; }
}
