/* Ryngo landing — same tokens as the app's styles.css so the brand
   reads continuous when a visitor crosses from / to /app. Light is
   default; dark mode opts in via prefers-color-scheme so the landing
   doesn't need a toggle. */

:root {
  color-scheme: light;
  --bg: #fbfaf2;
  --panel: #f4f1e3;
  --line: #d8d3b4;
  --border: #b9b394;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --accent: #5a8a00;
  --accent-ink: #fbfaf2;
  --logo-layer: #8fa23b;
  --link: #0e7490;
  --code-bg: #f0ecd6;
  --fn: #1d4ed8;
  --cls: #7e22ce;
  --pkg: #92400e;
  --call: #15803d;
  --shadow-soft: 0 1px 0 rgba(40, 35, 10, 0.04), 0 12px 40px -16px rgba(40, 35, 10, 0.18);
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #030712;
    --panel: #0b1220;
    --line: #1f2937;
    --border: #374151;
    --text: #e5e7eb;
    --muted: #9ca3af;
    --accent: #c8ff3d;
    --accent-ink: #030712;
    --logo-layer: #c8ff3d;
    --link: #60a5fa;
    --code-bg: #050a13;
    --fn: #a5d8ff;
    --cls: #d8b4fe;
    --pkg: #fbbf24;
    --call: #86efac;
    --shadow-soft: 0 1px 0 rgba(0, 0, 0, 0.4), 0 16px 40px -12px rgba(0, 0, 0, 0.6);
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, ui-sans-serif,
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
a:hover {
  border-bottom-color: var(--link);
}

code {
  font-family:
    ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: var(--code-bg);
  padding: 1px 5px;
  border-radius: 3px;
  color: var(--text);
}
.mono {
  font-family:
    ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
}

pre {
  background: var(--code-bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.5;
  margin: 12px 0 22px;
}
pre code {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: saturate(180%) blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand:hover {
  border: 0;
}
.brand-name {
  font-size: 17px;
}

.ryngo-wordmark {
  width: 132px;
  height: 50px;
  display: block;
  overflow: visible;
  color: var(--text);
}
.ryngo-wordmark text {
  font-family:
    "Arial Black", "Arial", -apple-system, BlinkMacSystemFont, "Segoe UI",
    system-ui, ui-sans-serif, sans-serif;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -4px;
}
.ryngo-wordmark-layer {
  fill: var(--logo-layer);
  opacity: 0.42;
}
.ryngo-wordmark-face {
  fill: currentColor;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.site-nav a {
  font-size: 14px;
  color: var(--muted);
  border-bottom: 0;
  font-weight: 500;
}
.site-nav a:hover {
  color: var(--text);
}
.site-nav .cta {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 7px 14px;
  border-radius: 6px;
  font-weight: 600;
}
.site-nav .cta:hover {
  filter: brightness(1.05);
  border-bottom: 0;
}

@media (max-width: 860px) {
  .site {
    align-items: flex-start;
    flex-direction: column;
  }
  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 16px;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 32px 56px;
  text-align: center;
}

.tagline {
  margin: 0 0 20px;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.lede {
  margin: 0 auto 36px;
  max-width: 660px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.55;
}

.cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 0;
}
.cta.primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--shadow-soft);
}
.cta.primary:hover {
  filter: brightness(1.05);
  border-bottom: 0;
}
.cta.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.cta.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.hero-foot {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-family:
    ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 32px;
  border-top: 1px solid var(--line);
}
.section.section-alt {
  background: var(--panel);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.section.section-alt > * {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.section h2 {
  margin: 0 0 32px;
  font-size: 28px;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.section h3 {
  margin: 22px 0 6px;
  font-size: 16px;
  font-weight: 600;
}

.section-lede {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 15.5px;
  max-width: 640px;
}

.section-aside {
  margin: 28px 0 0;
  padding: 14px 18px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  font-size: 14px;
  color: var(--muted);
}

.inline-link {
  border-bottom: 1px solid var(--link);
}

/* --------------------------------------------------------------------------
   Product proof / evals
   -------------------------------------------------------------------------- */

.proof-grid {
  max-width: 1040px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 32px;
  align-items: start;
}
.proof-grid h2 {
  margin-bottom: 16px;
}
.metric-strip {
  display: grid;
  gap: 10px;
}
.metric-strip > div {
  padding: 15px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.metric-strip span,
.eval-controls span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.metric-strip strong {
  display: block;
  margin-top: 2px;
  font-size: 24px;
  line-height: 1.1;
}
.metric-strip p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.eval-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}
.eval-sketch-card {
  max-width: 1180px;
  padding: 22px 22px 18px;
}
.section.section-alt > .eval-sketch-card {
  max-width: 1180px;
}
.eval-sketch-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 8px;
}
.eval-sketch-head span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.eval-sketch-head strong {
  display: block;
  margin-top: 3px;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.eval-price {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.eval-plot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.78fr);
  gap: 14px;
  align-items: stretch;
}
.xkcd-plot {
  width: 100%;
  height: auto;
  display: block;
  margin: 4px 0 12px;
  background:
    linear-gradient(color-mix(in oklab, var(--line) 36%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklab, var(--line) 28%, transparent) 1px, transparent 1px);
  background-size: 34px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.xkcd-plot text {
  font-family: "Comic Sans MS", "Marker Felt", "Bradley Hand", cursive;
  fill: var(--text);
}
.plot-axis,
.plot-line,
.plot-arrow,
.plot-paper-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#rough-line);
}
.plot-axis {
  stroke: var(--text);
  stroke-width: 3;
}
.plot-guide {
  fill: none;
  stroke: color-mix(in oklab, var(--muted) 46%, transparent);
  stroke-width: 1.5;
  stroke-dasharray: 6 9;
}
.plot-label-bg {
  fill: color-mix(in oklab, var(--bg) 94%, white);
  stroke: color-mix(in oklab, var(--line) 86%, var(--text));
  stroke-width: 1;
  opacity: 0.95;
}
.plot-leader {
  fill: none;
  stroke: color-mix(in oklab, var(--muted) 58%, transparent);
  stroke-width: 1.6;
  stroke-dasharray: 4 5;
  stroke-linecap: round;
}
.plot-paper-line {
  stroke: color-mix(in oklab, var(--accent) 55%, transparent);
  stroke-width: 6;
  opacity: 0.24;
}
.plot-line {
  stroke: var(--accent);
  stroke-width: 4;
}
.plot-arrow {
  stroke: var(--muted);
  stroke-width: 2.2;
  marker-end: none;
}
.plot-title {
  font-size: 22px;
  font-weight: 700;
}
.plot-y {
  font-size: 14px;
  fill: var(--muted);
}
.plot-point circle {
  stroke: var(--text);
  stroke-width: 2.5;
  fill: var(--bg);
}
.plot-point.raw circle { fill: var(--muted); }
.plot-point.compact circle { fill: var(--fn); }
.plot-point.view circle { fill: var(--cls); }
.plot-point.focus circle { fill: var(--call); }
.plot-point.topology circle { fill: var(--accent); }
.plot-point.sig circle { fill: var(--pkg); }
.plot-point text:first-of-type {
  font-size: 16px;
  font-weight: 700;
}
.plot-point text:last-of-type {
  font-size: 13px;
  fill: var(--muted);
}
.plot-note {
  font-size: 15px;
  fill: var(--muted);
}
.cost-plot {
  height: 100%;
  min-height: 360px;
}
.cost-title {
  font-size: 18px;
}
.cost-subtitle,
.cost-rate,
.cost-save,
.cost-value,
.cost-foot {
  fill: var(--muted);
}
.cost-subtitle,
.cost-save,
.cost-rate {
  font-size: 11px;
}
.cost-model {
  font-size: 13px;
  font-weight: 700;
}
.cost-value {
  font-size: 11px;
}
.cost-bar {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#rough-cost-line);
}
.raw-cost {
  stroke: var(--accent);
  stroke-width: 9;
}
.map-cost {
  stroke: var(--fn);
  stroke-width: 5;
}
.cost-dot {
  fill: var(--fn);
  stroke: var(--text);
  stroke-width: 1.8;
}
.cost-axis {
  stroke-width: 2.6;
}
.cost-tick {
  font-size: 11px;
}
.cost-foot {
  font-size: 12px;
}
.eval-callouts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.eval-callouts > div {
  padding: 12px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.eval-callouts strong {
  display: block;
  font-size: 18px;
}
.eval-callouts span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
}
.eval-note {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.eval-plan {
  max-width: 880px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.eval-plan > div {
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.eval-plan h3 {
  margin-top: 0;
}
.eval-plan p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .proof-grid,
  .eval-callouts,
  .eval-plan {
    grid-template-columns: 1fr;
  }
  .eval-sketch-head {
    display: grid;
    gap: 8px;
  }
  .eval-price {
    white-space: normal;
  }
  .eval-plot-grid {
    grid-template-columns: 1fr;
  }
  .xkcd-plot {
    min-height: 360px;
  }
}

/* --------------------------------------------------------------------------
   How-to-use steps
   -------------------------------------------------------------------------- */

.how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
}
.how-steps li {
  position: relative;
  padding: 20px 24px 22px 70px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.step-num {
  position: absolute;
  top: 20px;
  left: 22px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family:
    ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-weight: 700;
  font-size: 14px;
}
.how-steps h3 {
  margin: 0 0 6px;
  font-size: 17px;
}
.how-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.how-steps strong {
  color: var(--text);
  font-weight: 600;
}
.how-steps em {
  color: var(--text);
  font-style: normal;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Personas
   -------------------------------------------------------------------------- */

.personas {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.personas > div {
  padding: 18px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.personas h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.personas p {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .personas {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq {
  margin: 0;
  padding: 0;
}
.faq dt {
  font-weight: 600;
  margin-top: 18px;
  font-size: 15.5px;
}
.faq dt:first-child {
  margin-top: 0;
}
.faq dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-foot {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 32px 36px;
  border-top: 1px solid var(--line);
  background: var(--panel);
  font-size: 13px;
  color: var(--muted);
}
.site-foot-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
.foot-col h4 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}
.foot-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}
.foot-col a {
  color: var(--muted);
  border-bottom: 0;
}
.foot-col a:hover {
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.site-foot-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
.site-foot .foot-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
}
.site-foot .foot-tag {
  font-family:
    ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
}

/* --------------------------------------------------------------------------
   Live demo frame — featured embedded /app preview in the hero.
   -------------------------------------------------------------------------- */

.demo-frame {
  width: min(1180px, calc(100vw - 48px));
  margin: 48px auto 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  text-align: left;
}

.demo-chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  background: color-mix(in oklab, var(--panel) 80%, var(--bg) 20%);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.demo-dots {
  display: inline-flex;
  gap: 6px;
}
.demo-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}
.demo-dot-r { background: #ff5f56; }
.demo-dot-y { background: #ffbd2e; }
.demo-dot-g { background: #27c93f; }

.demo-url {
  flex: 1;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-open {
  font-size: 11px;
  color: var(--link);
  border-bottom: 1px solid transparent;
  flex-shrink: 0;
}
.demo-open:hover {
  border-bottom-color: var(--link);
}

.demo-iframe {
  display: block;
  width: 100%;
  height: 620px;
  border: 0;
  background: var(--bg);
}

.demo-foot {
  padding: 8px 14px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
  background: color-mix(in oklab, var(--panel) 80%, var(--bg) 20%);
}

@media (max-width: 720px) {
  .demo-iframe { height: 460px; }
  .demo-frame { margin-top: 32px; }
}

/* --------------------------------------------------------------------------
   Tagline companion sentence — sits below the .tagline h1 and names the
   category, mental model, and integration surface (LiteLLM-density).
   -------------------------------------------------------------------------- */

.tagline-companion {
  max-width: 760px;
  margin: 18px auto 4px;
  padding: 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  text-align: center;
}
.tagline-companion code {
  background: var(--code-bg);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.92em;
  color: var(--text);
}

/* --------------------------------------------------------------------------
   #ryngo-md — "Three ways to plug Ryngo.md into your agent" section. Three
   cards (MCP / copy-paste / commit-to-repo) plus a <details> with the file
   format. Spec: mvp/docs/LANDING_RYNGO_MD.md.
   -------------------------------------------------------------------------- */

.ryngo-md-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin: 24px 0 16px;
}
.ryngo-md-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}
.ryngo-md-card header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.ryngo-md-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.ryngo-md-chip {
  font-family:
    ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 999px;
  padding: 3px 9px;
}
.ryngo-md-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.ryngo-md-card .ryngo-md-best {
  color: var(--muted);
  font-size: 13px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}
.ryngo-md-card .ryngo-md-foot {
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
}
.ryngo-md-code {
  background: var(--code-bg);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.5;
  overflow-x: auto;
  margin: 0;
  white-space: pre;
}
.ryngo-md-code code {
  background: transparent;
  padding: 0;
  font-size: inherit;
  color: inherit;
}
.ryngo-md-list {
  margin: 0 0 0 18px;
  padding: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}
.ryngo-md-format {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.ryngo-md-format summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}
.ryngo-md-format > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.ryngo-md-format .ryngo-md-code {
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   #pricing — single Free tile, centered. No Enterprise tile yet.
   -------------------------------------------------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.pricing-grid-single {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}
.pricing-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
}
.pricing-card header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.pricing-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}
.pricing-chip {
  font-family:
    ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 14px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 3px 10px;
  border-radius: 999px;
}
.pricing-features {
  margin: 0 0 22px 18px;
  padding: 0;
  font-size: 15px;
  line-height: 1.7;
}
.pricing-features li {
  color: var(--text);
}
.pricing-features code {
  background: var(--code-bg);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.92em;
}
.pricing-card .cta {
  display: inline-block;
  margin-top: 6px;
}
.pricing-foot {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

/* --------------------------------------------------------------------------
   Hero multiplier headline + live stats banner. Both ship with baked
   corpus-baseline values; the hydration script in index.html replaces
   them with live values from /api/stats/public on load.
   -------------------------------------------------------------------------- */

.hero-multiplier {
  margin: 8px auto 24px;
  padding: 14px 24px;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  text-align: center;
}
.hero-multiplier strong {
  font-size: 24px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.hero-multiplier small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}
.hero-multiplier small span {
  font-family:
    ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  color: var(--text);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
  margin: 28px auto 18px;
  padding: 18px 24px;
  max-width: 1180px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}
.hero-stats span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.hero-stats strong {
  font-family:
    ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 22px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   #news — "Latest" section. Two-column grid (date | title+blurb) per row.
   Auto-hydrated from /data/news.json; baked fallback ships with the HTML.
   -------------------------------------------------------------------------- */

.news-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 4px;
}
.news-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.news-list li:last-child {
  border-bottom: 0;
}
.news-list time {
  font-family:
    ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 13px;
  color: var(--muted);
  padding-top: 2px;
}
.news-list .news-title {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}
.news-list .news-blurb {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.news-list code {
  font-size: 0.9em;
}
.news-foot {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}

@media (max-width: 640px) {
  .news-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* --------------------------------------------------------------------------
   #roadmap — "Coming soon" cards. Three columns at desktop, stack on mobile.
   -------------------------------------------------------------------------- */

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 20px;
}
.roadmap-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.roadmap-chip {
  align-self: flex-start;
  font-family:
    ui-monospace, "JetBrains Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 3px 8px;
  border-radius: 6px;
}
.roadmap-card h3 {
  margin: 4px 0 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}
.roadmap-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.roadmap-card code {
  font-size: 0.9em;
}
