/* Drumlin — the public site.
 *
 * Shares the dashboard's tokens (web/src/styles/tokens.css) so the two read as
 * one product, and diverges where a marketing page should: more air, larger
 * type, a contour motif the application would find decorative.
 *
 * Hand-written CSS rather than the dashboard's Tailwind build. A landing page
 * that ships a 200 KB application bundle to render eight sections of text is
 * the wrong trade, and the whole of this file is smaller than the utility
 * classes it would have needed.
 */

@font-face {
  font-family: "InterVariable";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/InterVariable.e39ff456.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/JetBrainsMono-Regular.a28f87b9.woff2") format("woff2");
}

:root {
  /* The dashboard's ramp, verbatim. */
  --ink-50:  oklch(98.4% 0.003 174);
  --ink-100: oklch(96.4% 0.004 174);
  --ink-150: oklch(94.0% 0.005 174);
  --ink-200: oklch(90.6% 0.006 176);
  --ink-300: oklch(83.0% 0.008 178);
  --ink-400: oklch(69.0% 0.010 180);
  --ink-500: oklch(57.0% 0.012 182);
  --ink-600: oklch(46.5% 0.013 184);
  --ink-700: oklch(37.5% 0.014 186);
  --ink-800: oklch(28.0% 0.014 188);
  --ink-900: oklch(18.5% 0.013 192);
  --ink-950: oklch(13.5% 0.012 194);

  --petrol-50:  oklch(96.5% 0.020 215);
  --petrol-200: oklch(86.0% 0.062 218);
  --petrol-500: oklch(55.0% 0.100 224);
  --petrol-700: oklch(38.0% 0.078 228);
  --petrol-800: oklch(30.5% 0.062 230);
  --mint-500: oklch(70.0% 0.130 175);

  --running-fg:   oklch(52.0% 0.135 152);
  --running-bg:   oklch(95.5% 0.035 152);
  --running-ring: oklch(78.0% 0.105 152);
  --building-fg:   oklch(48.0% 0.030 240);
  --building-bg:   oklch(95.0% 0.012 240);
  --building-ring: oklch(78.0% 0.025 240);

  --page: var(--ink-50);
  --raised: #fff;
  --sunken: var(--ink-100);
  --border: var(--ink-200);
  --border-subtle: var(--ink-150);
  --text: var(--ink-900);
  --text-2: var(--ink-600);
  --text-3: var(--ink-500);
  --accent: var(--petrol-700);

  --sans: "InterVariable", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;

  --r: 10px;
  --r-lg: 14px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* One rhythm, used everywhere, so the spacing is a system rather than a
   * series of decisions. */
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section: clamp(4.5rem, 10vw, 8.5rem);
  --measure: 34rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-synthesis-weight: none;
}

h1, h2, h3 { margin: 0; font-weight: 560; letter-spacing: -0.021em; line-height: 1.1; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--petrol-500);
  outline-offset: 2px;
  border-radius: 3px;
}

.wrap { width: 100%; max-width: 74rem; margin-inline: auto; padding-inline: var(--gutter); }
.mono { font-family: var(--mono); font-variant-ligatures: none; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--raised); padding: 0.75rem 1rem; border-radius: var(--r);
  border: 1px solid var(--border);
}
.skip:focus { left: 1rem; top: 1rem; }

/* --- the contour motif ----------------------------------------------------
 * A drumlin is a hill left by a glacier, and its contour lines are the one
 * ornament this site allows itself. Used three times — behind the hero, once
 * as a section rule, once in the footer — and never behind text it would
 * fight with.
 */
.contour { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.contour svg { position: absolute; width: 120%; height: auto; left: -10%; }
.contour path { fill: none; stroke: var(--ink-200); stroke-width: 1; vector-effect: non-scaling-stroke; }

/* --- navigation ----------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--page) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 160ms var(--ease);
}
.nav[data-scrolled="true"] { border-bottom-color: var(--border-subtle); }
.nav-inner { display: flex; align-items: center; gap: 2rem; height: 60px; }

.brand { display: inline-flex; align-items: center; gap: 0.55rem; text-decoration: none; font-weight: 580; letter-spacing: -0.02em; }
.brand-mark { width: 22px; height: 22px; flex: none; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; margin-left: auto; }
.nav-only-small { display: none; }
.nav-links a { text-decoration: none; font-size: 0.9375rem; color: var(--text-2); transition: color 120ms; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 38px; padding-inline: 1rem;
  border-radius: var(--r); border: 1px solid transparent;
  font-size: 0.9375rem; font-weight: 500; text-decoration: none; white-space: nowrap;
  transition: background-color 120ms, border-color 120ms, color 120ms;
}
.btn-primary { background: var(--accent); color: var(--ink-50); }
.btn-primary:hover { background: var(--petrol-800); }
.btn-secondary { background: var(--raised); border-color: var(--border); color: var(--text); }
.btn-secondary:hover { border-color: var(--ink-300); }
.btn-ghost { color: var(--text-2); }
.btn-ghost:hover { color: var(--text); }
.btn-lg { height: 44px; padding-inline: 1.375rem; font-size: 1rem; }

.nav-toggle { display: none; }

/* --- hero ------------------------------------------------------------------ */
.hero { position: relative; padding-block: clamp(3.5rem, 8vw, 6.5rem) var(--section); overflow: hidden; }
.hero-grid { position: relative; z-index: 1; display: grid; gap: clamp(3rem, 6vw, 4.5rem); }
@media (min-width: 62rem) { .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 29rem); align-items: center; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8125rem; color: var(--text-3); letter-spacing: 0.02em;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--ink-300); }

h1 { font-size: clamp(2.4rem, 6.2vw, 3.9rem); margin-block: 1.1rem 0; }
h1 .muted { color: var(--text-3); display: block; }

.lede { margin-top: 1.5rem; max-width: var(--measure); font-size: clamp(1.0625rem, 1.6vw, 1.1875rem); color: var(--text-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.25rem; }

/* --- the deployment surface ------------------------------------------------ */
.surface { display: grid; gap: 0.875rem; }

.pipeline { display: grid; gap: 0; }
.stage {
  display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border-subtle); background: var(--raised);
  font-size: 0.875rem;
}
.stage:first-child { border-radius: var(--r) var(--r) 0 0; }
.stage:last-child { border-radius: 0 0 var(--r) var(--r); }
.stage + .stage { border-top: 0; }
.stage-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-300); justify-self: center; transition: background-color 300ms var(--ease); }
.stage-name { color: var(--text-3); transition: color 300ms var(--ease); }
.stage-meta { font-size: 0.75rem; color: var(--ink-400); opacity: 0; transition: opacity 300ms var(--ease); }
.stage[data-state="done"] .stage-dot { background: var(--running-ring); }
.stage[data-state="done"] .stage-name { color: var(--text-2); }
.stage[data-state="done"] .stage-meta { opacity: 1; }
.stage[data-state="active"] .stage-dot { background: var(--building-fg); animation: pulse 1.6s var(--ease) infinite; }
.stage[data-state="active"] .stage-name { color: var(--text); font-weight: 500; }
.stage[data-state="active"] .stage-meta { opacity: 1; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.card {
  background: var(--raised); border: 1px solid var(--border-subtle); border-radius: var(--r-lg);
  box-shadow: 0 1px 2px oklch(18.5% 0.013 192 / 0.05), 0 8px 24px oklch(18.5% 0.013 192 / 0.05);
}
.card-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9375rem 1.125rem; border-bottom: 1px solid var(--border-subtle); }
.card-title { display: flex; align-items: baseline; gap: 0.5rem; }
.card-title strong { font-weight: 560; font-size: 0.9375rem; }
.card-title span { font-size: 0.75rem; color: var(--text-3); }

.pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border-radius: 999px; border: 1px solid; padding: 0.15rem 0.6rem;
  font-size: 0.6875rem; font-weight: 500;
}
.pill-running { color: var(--running-fg); background: var(--running-bg); border-color: var(--running-ring); }
.pill-building { color: var(--building-fg); background: var(--building-bg); border-color: var(--building-ring); }
.pill::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

.rows { display: grid; }
.row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.5rem 1.125rem; font-size: 0.8125rem; }
.row + .row { border-top: 1px solid color-mix(in oklab, var(--border-subtle) 60%, transparent); }
.row dt { color: var(--text-3); }
.row dd { margin: 0; font-family: var(--mono); font-size: 0.75rem; color: var(--text); }

/* --- sections -------------------------------------------------------------- */
section { position: relative; }
.section { padding-block: var(--section); }
.section-sunken { background: var(--sunken); border-block: 1px solid var(--border-subtle); }
.section-dark { background: var(--ink-950); color: var(--ink-200); }
.section-dark h2, .section-dark h3 { color: var(--ink-50); }

.section-head { max-width: 42rem; }
.kicker { font-size: 0.75rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-3); font-weight: 500; }
.section-dark .kicker { color: var(--ink-400); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.4rem); margin-top: 0.875rem; }
.section-head p { margin-top: 1rem; color: var(--text-2); max-width: var(--measure); }
.section-dark .section-head p { color: var(--ink-300); }

/* --- steps ----------------------------------------------------------------- */
.steps { display: grid; gap: 1px; margin-top: 3.5rem; background: var(--border-subtle); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); overflow: hidden; }
@media (min-width: 48rem) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--page); padding: clamp(1.5rem, 3vw, 2.25rem); }
.step-n { font-family: var(--mono); font-size: 0.75rem; color: var(--accent); }
.step h3 { font-size: 1.125rem; margin-top: 1.25rem; }
.step p { margin-top: 0.625rem; font-size: 0.9375rem; color: var(--text-2); }

/* --- capabilities ---------------------------------------------------------- */
.caps { display: grid; gap: clamp(2.5rem, 5vw, 4rem); margin-top: 4rem; }
@media (min-width: 56rem) { .caps { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem); } }
.cap-kicker { font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); font-weight: 500; }
.cap h3 { font-size: 1.3125rem; margin-top: 0.875rem; }
.cap > p { margin-top: 0.75rem; color: var(--text-2); font-size: 0.9375rem; max-width: 30rem; }
.cap ul { margin-top: 1.25rem; display: grid; gap: 0.5rem; }
.cap li { position: relative; padding-left: 1.125rem; font-size: 0.875rem; color: var(--text-2); }
.cap li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 5px; height: 1px; background: var(--ink-300); }

/* --- product preview -------------------------------------------------------- */
.preview { margin-top: 3.5rem; display: grid; gap: 1rem; }
@media (min-width: 62rem) { .preview { grid-template-columns: 1.35fr 1fr; align-items: start; } }
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border-subtle); border-top: 1px solid var(--border-subtle); }
.metric { background: var(--raised); padding: 0.875rem 1.125rem; }
.metric-k { font-size: 0.6875rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-3); }
.metric-v { font-family: var(--mono); font-size: 1.0625rem; margin-top: 0.25rem; }
.spark { margin-top: 0.5rem; height: 26px; width: 100%; }
.spark path { fill: none; stroke: var(--petrol-500); stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.spark .area { fill: var(--petrol-50); stroke: none; }

.logs { font-family: var(--mono); font-size: 0.75rem; line-height: 1.75; padding: 0.875rem 1.125rem; color: var(--text-2); overflow-x: auto; }
.logs div { white-space: pre; }
.logs .t { color: var(--ink-400); }

/* --- terminal --------------------------------------------------------------- */
.terminal {
  margin-top: 3rem; border-radius: var(--r-lg); overflow: hidden;
  background: var(--ink-950); border: 1px solid var(--ink-800);
}
.terminal-bar {
  padding: 0.6rem 1.125rem; border-bottom: 1px solid var(--ink-850);
  font-family: var(--mono); font-size: 0.6875rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-500);
}
.terminal-body { padding: 1.125rem; font-family: var(--mono); font-size: 0.8125rem; line-height: 1.85; color: var(--ink-300); overflow-x: auto; }
.terminal-body div { white-space: pre; }
.terminal-body .p { color: var(--mint-500); }
.terminal-body .c { color: var(--ink-50); }
.terminal-body .ok { color: var(--running-ring); }
.terminal-body .u { color: var(--petrol-200); }

/* --- architecture ----------------------------------------------------------- */
.arch { margin-top: 3.5rem; display: grid; gap: 2.5rem; }
@media (min-width: 56rem) { .arch { grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; } }
.arch-diagram { width: 100%; height: auto; }
.arch-diagram .box { fill: none; stroke: var(--ink-700); stroke-width: 1; }
.arch-diagram .box-accent { fill: var(--ink-900); stroke: var(--petrol-700); }
.arch-diagram text { font-family: var(--sans); font-size: 11px; fill: var(--ink-300); }
.arch-diagram .label { font-size: 9px; fill: var(--ink-500); letter-spacing: 0.06em; }
.arch-diagram line { stroke: var(--ink-700); stroke-width: 1; }
.arch-notes { display: grid; gap: 1.25rem; }
.arch-note { border-left: 1px solid var(--ink-800); padding-left: 1.125rem; }
.arch-note strong { display: block; font-weight: 540; color: var(--ink-50); font-size: 0.9375rem; }
.arch-note span { font-size: 0.875rem; color: var(--ink-400); }

/* --- regions ---------------------------------------------------------------- */
.region-split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 56rem) { .region-split { grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 6rem); } }
.region { border: 1px solid var(--border-subtle); border-radius: var(--r-lg); background: var(--raised); }
.region-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.125rem 1.375rem; border-bottom: 1px solid var(--border-subtle); }
.region-code { font-family: var(--mono); font-size: 1.125rem; letter-spacing: 0.02em; }
.region-facts > div { display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; padding: 0.75rem 1.375rem; font-size: 0.875rem; }
.region-facts > div + div { border-top: 1px solid var(--border-subtle); }
.region-facts dt { color: var(--text-3); }
.region-facts dd { color: var(--text); text-align: right; }
.region-facts .mono { font-family: var(--mono); font-size: 0.8125rem; }

/* --- what a workload may reach ---------------------------------------------- */
/* Two plain columns rather than two more cards: the page already has enough
 * boxes by this point, and the contrast between the lists is the content. */
.reach { margin-top: 3.5rem; display: grid; gap: 2rem clamp(3rem, 6vw, 6rem); }
@media (min-width: 52rem) { .reach { grid-template-columns: 1fr 1fr; } }
.reach-head { font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); font-weight: 500; }
.reach-list { margin-top: 1.125rem; display: grid; gap: 0.625rem; }
.reach-list li { position: relative; padding-left: 1.5rem; font-size: 0.9375rem; color: var(--text-2); }
.reach-list li::before { position: absolute; left: 0; top: 0; font-family: var(--mono); font-size: 0.8125rem; line-height: 1.6; }
.reach-allow li::before { content: "+"; color: var(--running-ring); }
.reach-deny li::before { content: "\2212"; color: var(--ink-400); }
.reach-note { grid-column: 1 / -1; margin-top: 0.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); font-size: 0.875rem; color: var(--text-3); }

/* --- pricing ----------------------------------------------------------------- */
.meters { margin-top: 2.5rem; display: grid; gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); border-radius: var(--r-lg); overflow: hidden; }
@media (min-width: 42rem) { .meters { grid-template-columns: repeat(4, 1fr); } }
.meter { background: var(--page); padding: 1.25rem 1.375rem; }
.meter dt { font-size: 0.9375rem; font-weight: 500; }
.meter dd { margin: 0.375rem 0 0; font-size: 0.8125rem; color: var(--text-3); }

/* --- final ------------------------------------------------------------------- */
.final { position: relative; overflow: hidden; text-align: center; padding-block: clamp(5rem, 11vw, 9rem); }
.final h2 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
.final h2 .muted { color: var(--text-3); display: block; }
.final .hero-actions { justify-content: center; }

/* --- footer -------------------------------------------------------------------- */
footer { position: relative; border-top: 1px solid var(--border-subtle); padding-block: 3.5rem 2.5rem; overflow: hidden; }
.footer-grid { position: relative; z-index: 1; display: grid; gap: 2.5rem; }
@media (min-width: 48rem) { .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); } }
.footer-col h4 { margin: 0 0 0.875rem; font-size: 0.75rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-3); font-weight: 500; }
.footer-col li + li { margin-top: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: var(--text-2); text-decoration: none; }
.footer-col a:hover { color: var(--text); }
.footer-note { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; font-size: 0.8125rem; color: var(--text-3); }

/* --- reveal ---------------------------------------------------------------------- */
/* Visible by default. Only a document whose script has run hides these in
 * order to bring them back — otherwise a failed or slow script leaves most of
 * the page blank, which is what the first version of this did. */
.js .reveal { opacity: 0; transform: translateY(10px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .stage-dot, .pill::before { animation: none !important; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* --- mobile navigation ------------------------------------------------------------ */
@media (max-width: 52rem) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav[data-open="true"] .nav-only-small { display: block; }
  /* The header keeps one action on a small screen, at a size that leaves the
     brand and the menu button room to breathe. */
  .nav-actions .btn-primary { padding: 0.5rem 0.875rem; font-size: 0.875rem; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: auto; width: 38px; height: 38px;
    background: transparent; border: 1px solid var(--border); border-radius: var(--r); cursor: pointer;
  }
  .nav-toggle svg { width: 16px; height: 16px; stroke: var(--text); }
  .nav-actions { margin-left: 0.5rem; }
  .nav[data-open="true"] .nav-links {
    display: grid; gap: 0;
    position: absolute; left: 0; right: 0; top: 60px;
    background: var(--raised); border-bottom: 1px solid var(--border-subtle);
    padding: 0.5rem var(--gutter) 1rem;
  }
  .nav[data-open="true"] .nav-links a { padding: 0.75rem 0; border-bottom: 1px solid var(--border-subtle); font-size: 1rem; }
}

/* --- small shared utilities ---------------------------------------------------- */
/* These were inline style attributes. They live here so the site can be served
 * under a Content-Security-Policy that allows no inline style at all, which is
 * worth more than the convenience of writing them next to the markup. */
.contour-high { top: 8%; }
.contour-low  { bottom: -10%; }
.above { position: relative; z-index: 1; }
.stack { display: grid; gap: 1rem; }
.fine { font-size: 0.75rem; color: var(--text-3); }
.mt-1 { margin-top: 1rem; }
.wide-head { max-width: 46rem; }
.note { margin-top: 2rem; font-size: 0.9375rem; color: var(--text-3); max-width: var(--measure); }
.footer-blurb { margin-top: 0.875rem; font-size: 0.875rem; color: var(--text-3); max-width: 22rem; }
.doc-title { font-size: clamp(2rem, 4vw, 2.6rem); margin-top: 0.75rem; }
.doc-first { margin-top: 0; border-top: 0; padding-top: 0; }

/* --- documentation page -------------------------------------------------------- */
/* Served from the same stylesheet as the site so /docs/ needs no inline <style>,
 * which is what lets the policy be `style-src 'self'` with no exception. */
.doc { display: grid; gap: clamp(2rem,5vw,4rem); padding-block: clamp(3rem,6vw,5rem) var(--section); }
@media (min-width: 60rem) { .doc { grid-template-columns: 15rem minmax(0,1fr); align-items: start; } }
.toc { position: sticky; top: 84px; display: grid; gap: .5rem; font-size: .875rem; }
@media (max-width: 60rem) { .toc { position: static; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-subtle); } }
.toc a { color: var(--text-2); text-decoration: none; }
.toc a:hover { color: var(--text); }
.toc strong { font-size: .75rem; letter-spacing: .09em; text-transform: uppercase; color: var(--text-3); font-weight: 500; }
.doc-body { max-width: 44rem; }
.doc-body h2 { font-size: 1.5rem; margin-top: 3.25rem; scroll-margin-top: 84px; }
.doc-body h2:first-of-type { margin-top: 0; }
.doc-body h3 { font-size: 1.0625rem; margin-top: 2rem; }
.doc-body p { margin-top: .875rem; color: var(--text-2); }
.doc-body ul { margin-top: .875rem; display: grid; gap: .5rem; }
.doc-body li { position: relative; padding-left: 1.125rem; color: var(--text-2); }
.doc-body li::before { content: ""; position: absolute; left: 0; top: .65em; width: 5px; height: 1px; background: var(--ink-300); }
.doc-body code { font-family: var(--mono); font-size: .8125rem; background: var(--sunken); border: 1px solid var(--border-subtle); border-radius: 5px; padding: .1rem .35rem; }
.doc-body pre { margin-top: 1.125rem; background: var(--ink-950); color: var(--ink-300); border-radius: var(--r); padding: 1rem 1.125rem; overflow-x: auto; font-family: var(--mono); font-size: .8125rem; line-height: 1.8; }
.doc-body pre code { background: none; border: 0; padding: 0; color: inherit; font-size: inherit; }
.doc-body pre .p { color: var(--mint-500); }
.callout { margin-top: 1.25rem; border-left: 2px solid var(--petrol-200); padding: .25rem 0 .25rem 1rem; font-size: .9375rem; color: var(--text-2); }
