/* web/public/site.css. CM5 Chunk D: the ONE stylesheet for the public docs
 * site, and shared by the dashboard and sandbox (Chunk E) so all three read as
 * one product. Dark-only, matching the studio's own tokens (web/src/theme/
 * tokens.css: --bg-0 #0a0b0e, --accent #ff6b2c) without depending on that file
 * because web/src is bundled by Vite and this is a hand-written file served
 * verbatim from web/public/, so the palette is redeclared here on purpose.
 *
 * System font stack only. No @import, no Google Fonts, no CDN. The embed
 * refuses third-party requests on principle (web/src/embed/*) and this site
 * holds the same line; it also has to, since these pages ship under
 * `style-src 'self' 'unsafe-inline'` with no allowance for a remote stylesheet.
 */

:root {
  color-scheme: dark;

  /* -- surfaces ------------------------------------------------------- */
  --bg-0: #0a0b0e;
  --bg-1: #0e1014;
  --bg-2: #131620;
  --surface-raise: rgba(255, 255, 255, 0.045);
  --surface-raise-hover: rgba(255, 255, 255, 0.09);
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.16);

  /* -- text ------------------------------------------------------------- */
  --text-hi: #f3f5f9;
  --text-mid: #b9bfcb;
  --text-dim: #7e8595;

  /* -- accent: electric orange, matching the studio ---------------------- */
  --accent: #ff6b2c;
  --accent-hot: #ff8f55;
  --accent-press: #e5551a;
  --accent-dim: rgba(255, 107, 44, 0.14);
  --accent-ring: rgba(255, 107, 44, 0.45);
  --on-accent: #140a04;

  /* -- feedback ----------------------------------------------------------- */
  --danger: #f2766b;
  --danger-dim: rgba(242, 118, 107, 0.14);
  --danger-ring: rgba(242, 118, 107, 0.35);
  --ok: #7fce96;
  --ok-dim: rgba(127, 206, 150, 0.14);
  --warn: #e4ae39;
  --warn-dim: rgba(228, 174, 57, 0.14);
  --warn-ring: rgba(228, 174, 57, 0.35);
  --info: #7fb8ff;
  --info-dim: rgba(127, 184, 255, 0.14);

  /* -- radii / spacing ------------------------------------------------- */
  --r-1: 3px;
  --r-2: 4px;
  --r-3: 6px;
  --r-4: 8px;
  --r-pill: 999px;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;

  /* -- type -------------------------------------------------------------- */
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-20: 20px;
  --fs-24: 24px;
  --fs-32: 32px;

  /* -- layout -------------------------------------------------------------- */
  --topbar-h: 56px;
  --sidebar-w: 240px;
  --toc-w: 200px;
  --content-max: 1240px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 140ms;
  --t-med: 220ms;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100%;
  background: var(--bg-0);
  color: var(--text-hi);
  font-family: var(--font-ui);
  font-size: var(--fs-14);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

[id] { scroll-margin-top: calc(var(--topbar-h) + 12px); }

::selection { background: var(--accent-ring); color: var(--text-hi); }

/* ================================================================ topbar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  height: var(--topbar-h);
  /* full-bleed bar, but its content lines up with .docs-shell / .site-footer:
     both are `max-width: var(--content-max); margin: 0 auto`, so the same
     inset here (floored at the old flat --sp-5 for anything not wider than
     --content-max) puts the brand's left edge over the sidebar's. */
  padding: 0 max(var(--sp-5), calc((100% - var(--content-max)) / 2));
  background: var(--bg-1);
  border-bottom: 1px solid var(--hairline);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--text-hi);
  text-decoration: none;
  font-weight: 700;
  font-size: var(--fs-15);
  letter-spacing: 0.01em;
  white-space: nowrap;
  border-radius: var(--r-2);
}

.brand:focus-visible { outline: 2px solid var(--accent-ring); outline-offset: 2px; }

.brand-mark {
  width: 18px;
  height: 18px;
  flex: none;
  border-radius: var(--r-2);
  background: linear-gradient(135deg, var(--accent), var(--accent-press));
}

.topnav {
  display: flex;
  gap: var(--sp-1);
  margin-left: var(--sp-2);
}

.topnav a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: var(--fs-13);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-2);
}

.topnav a:hover,
.topnav a:focus-visible { color: var(--text-hi); background: var(--surface-raise); }

.topnav a.is-current { color: var(--text-hi); }

.topbar-spacer { flex: 1; }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.sidebar-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--r-2);
  border: 1px solid var(--hairline-strong);
  background: var(--surface-raise);
  color: var(--text-hi);
  font-size: var(--fs-16);
  line-height: 1;
  cursor: pointer;
}

.sidebar-toggle:hover { background: var(--surface-raise-hover); }
.sidebar-toggle:focus-visible { outline: 2px solid var(--accent-ring); outline-offset: 2px; }

/* ================================================================ docs shell */

.docs-shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) minmax(0, 1fr);
  max-width: var(--content-max);
  margin: 0 auto;
}

/* three tracks once docs.js finds >= 2 headings to build a rail from; JS-off
   and short pages stay on the plain two-column rule above */
/* pricing and the sandbox are card grids, not prose: they get the wide
   cluster, while every prose page stays on the narrow centred column */
.docs-shell.is-wide { max-width: 1440px; }

.docs-shell.has-toc {
  grid-template-columns: var(--sidebar-w) minmax(0, 1fr) var(--toc-w);
}

.docs-sidebar {
  border-right: 1px solid var(--hairline);
  padding: var(--sp-6) var(--sp-4);
  position: sticky;
  top: var(--topbar-h);
  align-self: start;
  height: calc(100vh - var(--topbar-h));
  overflow-y: auto;
}

.docs-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.docs-nav-group {
  margin: 0 0 var(--sp-2);
  padding: 0 var(--sp-3);
  color: var(--text-dim);
  font-size: var(--fs-11, 11px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.docs-nav-link {
  display: block;
  color: var(--text-mid);
  text-decoration: none;
  font-size: var(--fs-13);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-2);
  border-left: 2px solid transparent;
}

.docs-nav-link:hover,
.docs-nav-link:focus-visible { color: var(--text-hi); background: var(--surface-raise); }

.docs-nav-link.is-active {
  color: var(--accent-hot);
  background: var(--accent-dim);
  border-left-color: var(--accent);
  font-weight: 600;
}

.docs-main {
  padding: var(--sp-8) var(--sp-8) var(--sp-10);
  min-width: 0;
  /* the measure lives HERE, not on each block below: capping p/ul/callout
     narrower than the track they sit in is what left a dead strip down the
     right of every page. One centred column instead. */
  max-width: 760px;
  margin-inline: auto;
}

.docs-main.is-wide { max-width: none; }

/* ================================================================ docs toc */

/* the "on this page" rail docs.js builds from .docs-main h2[id]. Same sticky
   treatment as .docs-sidebar, but quieter: no border, smaller type, dim
   until a section is active. */
.docs-toc {
  padding: var(--sp-6) var(--sp-4) var(--sp-6) var(--sp-3);
  position: sticky;
  top: var(--topbar-h);
  align-self: start;
  height: calc(100vh - var(--topbar-h));
  overflow-y: auto;
}

.docs-toc-title {
  font-size: var(--fs-12);
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 var(--sp-3);
}

.docs-toc nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.docs-toc a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  font-size: var(--fs-12);
  line-height: 1.4;
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--r-2);
  border-left: 2px solid transparent;
}

.docs-toc a:hover,
.docs-toc a:focus-visible { color: var(--text-hi); background: var(--surface-raise); }

.docs-toc a.is-active { color: var(--accent-hot); border-left-color: var(--accent); }

/* the rail only earns its column past ~1200px; below that it would squeeze
   .docs-main into an uncomfortably narrow measure, so it is dropped and the
   shell falls back to its plain two-column rule even with .has-toc set */
@media (max-width: 1200px) {
  .docs-toc { display: none; }
  .docs-shell.has-toc { grid-template-columns: var(--sidebar-w) minmax(0, 1fr); }
}

/* narrow screens: sidebar becomes a slide-in drawer, code still scrolls in
   its own box rather than the page scrolling sideways */
@media (max-width: 900px) {
  .sidebar-toggle { display: inline-flex; }
  .topnav { display: none; }

  .docs-shell { display: block; position: relative; }

  .docs-sidebar {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    bottom: 0;
    width: 270px;
    max-width: 82vw;
    height: auto;
    transform: translateX(-100%);
    transition: transform var(--t-med) var(--ease-out);
    background: var(--bg-1);
    z-index: 39;
    box-shadow: 12px 0 32px rgba(0, 0, 0, 0.45);
  }

  .docs-shell.is-sidebar-open .docs-sidebar { transform: translateX(0); }

  .docs-shell.is-sidebar-open::after {
    content: "";
    position: fixed;
    inset: var(--topbar-h) 0 0 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 38;
  }

  .docs-main { padding: var(--sp-5); }
}

/* ================================================================ prose */

.docs-main h1 {
  font-size: var(--fs-32);
  margin: 0 0 var(--sp-2);
  letter-spacing: -0.01em;
}

.docs-main .lede {
  font-size: var(--fs-16);
  color: var(--text-mid);
  margin: 0 0 var(--sp-8);
}

.docs-main h2 {
  font-size: var(--fs-24);
  margin: var(--sp-10) 0 var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--hairline);
  scroll-margin-top: calc(var(--topbar-h) + 12px);
}

.docs-main h2:first-of-type { margin-top: var(--sp-6); padding-top: 0; border-top: 0; }

.docs-main h3 {
  font-size: var(--fs-16);
  margin: var(--sp-6) 0 var(--sp-3);
  color: var(--text-hi);
}

.docs-main p {
  margin: 0 0 var(--sp-4);
  color: var(--text-mid);
}

.docs-main li { color: var(--text-mid); }

.docs-main strong { color: var(--text-hi); }

.docs-main ul,
.docs-main ol {
  margin: 0 0 var(--sp-4);
  padding-left: 1.3em;
}

.docs-main li { margin-bottom: var(--sp-2); }

.docs-main a {
  color: var(--accent-hot);
  text-decoration: underline;
  text-decoration-color: rgba(255, 143, 85, 0.35);
  text-underline-offset: 2px;
}

.docs-main a:hover { text-decoration-color: currentColor; }

.docs-main hr {
  border: 0;
  border-top: 1px solid var(--hairline);
  margin: var(--sp-8) 0;
}

/* ================================================================ code */

.code-block {
  position: relative;
  margin: 0 0 var(--sp-5);
  border: 1px solid var(--hairline);
  border-radius: var(--r-3);
  background: var(--bg-1);
  overflow: hidden;
}

.code-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface-raise);
}

.code-block-label {
  font-size: var(--fs-12);
  color: var(--text-dim);
  font-family: var(--font-mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.code-block pre {
  margin: 0;
  padding: var(--sp-4);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: var(--fs-13);
  line-height: 1.6;
  color: var(--text-hi);
  -webkit-overflow-scrolling: touch;
}

.code-block code { font-family: inherit; background: none; border: 0; padding: 0; }

.copy-btn {
  flex: none;
  font: inherit;
  font-size: var(--fs-12);
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--r-2);
  border: 1px solid var(--hairline-strong);
  background: var(--surface-raise);
  color: var(--text-mid);
  cursor: pointer;
}

.copy-btn:hover { color: var(--text-hi); background: var(--surface-raise-hover); }
.copy-btn:focus-visible { outline: 2px solid var(--accent-ring); outline-offset: 2px; }
.copy-btn:disabled { opacity: 0.65; cursor: default; }

.docs-main :not(pre) > code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--surface-raise);
  border: 1px solid var(--hairline);
  border-radius: var(--r-1);
  padding: 0.05em 0.4em;
  color: var(--text-hi);
  white-space: nowrap;
}

/* ================================================================ tables */

.table-wrap {
  overflow-x: auto;
  margin: 0 0 var(--sp-5);
  border: 1px solid var(--hairline);
  border-radius: var(--r-3);
}

table.params {
  border-collapse: collapse;
  width: 100%;
  min-width: 560px;
  font-size: var(--fs-13);
}

table.params th,
table.params td {
  text-align: left;
  padding: var(--sp-2) var(--sp-3);
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}

table.params th {
  color: var(--text-dim);
  font-weight: 600;
  font-size: var(--fs-12);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--surface-raise);
  white-space: nowrap;
}

table.params td { color: var(--text-mid); }
table.params td:first-child { color: var(--text-hi); white-space: nowrap; }
table.params tr:last-child td { border-bottom: 0; }

/* ================================================================ callouts */

.callout {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border-radius: var(--r-3);
  border: 1px solid var(--hairline);
  background: var(--surface-raise);
  margin: 0 0 var(--sp-5);
}

.callout p:last-child,
.callout ul:last-child { margin-bottom: 0; }

.callout-icon {
  flex: none;
  font-size: var(--fs-16);
  line-height: 1.4;
}

.callout-info { border-color: var(--accent-ring); background: var(--accent-dim); }
.callout-warn { border-color: var(--warn-ring); background: var(--warn-dim); }
.callout-danger { border-color: var(--danger-ring); background: var(--danger-dim); }

/* ================================================================ badges */

.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: var(--fs-12);
  font-weight: 600;
  padding: 1px 6px;
  border-radius: var(--r-1);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.badge-get { color: var(--ok); background: var(--ok-dim); }
.badge-post { color: var(--info); background: var(--info-dim); }
.badge-2xx { color: var(--ok); background: var(--ok-dim); }
.badge-4xx { color: var(--warn); background: var(--warn-dim); }
.badge-5xx { color: var(--danger); background: var(--danger-dim); }

/* ================================================================ buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font: inherit;
  font-size: var(--fs-13);
  font-weight: 600;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-2);
  border: 1px solid transparent;
  text-decoration: none !important;
  cursor: pointer;
  line-height: 1.4;
}

.btn:focus-visible { outline: 2px solid var(--accent-ring); outline-offset: 2px; }

/* !important: an <a class="btn-accent"> inside .docs-main would otherwise lose
   its color to the higher-specificity `.docs-main a` prose-link rule above */
.btn-accent { background: var(--accent); color: var(--on-accent) !important; }
.btn-accent:hover { background: var(--accent-hot); }

.btn-ghost { background: var(--surface-raise); color: var(--text-hi) !important; border-color: var(--hairline-strong); }
.btn-ghost:hover { background: var(--surface-raise-hover); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin: var(--sp-2) 0 var(--sp-6); }

/* ================================================================ steps (quickstart) */

.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.steps > li { position: relative; padding-left: 44px; }

.steps > li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent-hot);
  font-weight: 700;
  font-size: var(--fs-13);
  font-family: var(--font-mono);
  border: 1px solid var(--accent-ring);
}

.steps h3 { margin-top: 0; }

/* ================================================================ next-steps grid */

/* fixed at 6 cards (see index.html). Explicit steps rather than auto-fit so
   a row is never left with a lone orphan card (auto-fit's own breakpoints
   land on 4 or 5 columns for stretches of the has-toc/no-toc width range,
   which leaves 1 or 2 cards stranded on their own half-empty row) */
.next-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin: var(--sp-3) 0 var(--sp-8);
}

@media (min-width: 560px) {
  .next-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .next-grid { grid-template-columns: repeat(3, 1fr); }
}

.next-card {
  display: block;
  border: 1px solid var(--hairline);
  border-radius: var(--r-3);
  padding: var(--sp-4);
  text-decoration: none !important;
  background: var(--bg-1);
}

.next-card:hover { border-color: var(--hairline-strong); background: var(--surface-raise); }
.next-card:focus-visible { outline: 2px solid var(--accent-ring); outline-offset: 2px; }

.next-card .next-title {
  color: var(--text-hi);
  font-weight: 600;
  font-size: var(--fs-14);
  margin-bottom: 2px;
  display: block;
}

.next-card .next-desc { color: var(--text-dim); font-size: var(--fs-12); }

/* ================================================================ pricing */

/* fixed at 4 plans (see pricing.html). Auto-fit alone lands on 3 columns
   for a stretch of the has-toc width range, stranding the 4th plan on its
   own row, so 3 is skipped outright: 1 up, then straight to 2, then 4 */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin: 0 0 var(--sp-8);
  max-width: none;
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1440px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}

.plan-card {
  border: 1px solid var(--hairline);
  border-radius: var(--r-4);
  padding: var(--sp-5);
  background: var(--bg-1);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.plan-card.is-featured { border-color: var(--accent-ring); box-shadow: 0 0 0 1px var(--accent-ring); }

.plan-name { font-size: var(--fs-14); font-weight: 700; color: var(--text-hi); }

.plan-price { font-size: var(--fs-32); font-weight: 700; color: var(--text-hi); font-family: var(--font-mono); line-height: 1; }
.plan-price.is-text { font-size: var(--fs-20); line-height: 1.35; font-family: var(--font-ui); }

.plan-price small { font-size: var(--fs-13); color: var(--text-dim); font-weight: 400; font-family: var(--font-ui); }

.plan-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  font-size: var(--fs-13);
  color: var(--text-mid);
  max-width: none;
}

.plan-feature-list li { margin: 0; padding-left: 1.3em; position: relative; }
.plan-feature-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }

.plan-cta { margin-top: auto; padding-top: var(--sp-2); }

/* fixed at 3 tiles (see pricing.html). Auto-fit's own 2-column breakpoint
   would strand the 3rd tile alone on its own row across a wide chunk of the
   drawer/tablet width range, so it is skipped: 1 up, then straight to 3 */
.overage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
  margin: 0 0 var(--sp-6);
}

@media (min-width: 620px) {
  .overage-grid { grid-template-columns: repeat(3, 1fr); }
}

.overage-tile {
  border: 1px solid var(--hairline);
  border-radius: var(--r-3);
  padding: var(--sp-4);
  background: var(--bg-1);
}

.overage-tile .figure { font-family: var(--font-mono); font-size: var(--fs-20); color: var(--text-hi); }
.overage-tile .unit { color: var(--text-dim); font-size: var(--fs-12); margin-top: 2px; }

/* ================================================================ tabs (frameworks) */

.tabs {
  border: 1px solid var(--hairline);
  border-radius: var(--r-3);
  overflow: hidden;
  margin: 0 0 var(--sp-5);
  background: var(--bg-1);
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--hairline);
  background: var(--surface-raise);
}

.tab-buttons button {
  font: inherit;
  font-size: var(--fs-13);
  padding: var(--sp-3) var(--sp-4);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--text-mid);
  cursor: pointer;
}

.tab-buttons button:hover { color: var(--text-hi); }
.tab-buttons button.is-active { color: var(--text-hi); border-bottom-color: var(--accent); }

/* .tabs clips overflow, so the ring has to sit inside the button rather than
   around it or it would be cut off at the row's edges */
.tab-buttons button:focus-visible { outline: 2px solid var(--accent-ring); outline-offset: -2px; }

.tab-panel .code-block { border: 0; border-radius: 0; margin: 0; }
.tab-panel[hidden] { display: none; }

/* ================================================================ footer */

.site-footer {
  border-top: 1px solid var(--hairline);
  padding: var(--sp-6) var(--sp-8);
  color: var(--text-dim);
  font-size: var(--fs-12);
  max-width: var(--content-max);
  margin: 0 auto;
}

.site-footer a { color: var(--text-mid); }

.footer-legal { margin: var(--sp-2) 0 0; }
.footer-legal a { margin-right: 2px; }

/* The dateline under a legal document's lede, and the closing cross-reference
   line under its final rule. Same treatment for both: quieter than body copy,
   because neither is part of the agreement's substance. */
.docs-main .legal-meta {
  color: var(--text-dim);
  font-size: var(--fs-12);
}

@media (max-width: 900px) {
  .site-footer { padding: var(--sp-5); }
}
