/* ═══════════════════════════════════════════════════════════════════
   NYQUEST · VOLUME DESIGN SYSTEM · v1 (2026-07-27)
   -------------------------------------------------------------------
   Single-theme by design: the site is a void. There is no light mode,
   the same way there is no light mode for a planetarium.

   Optics rule: the only chroma comes from dispersion — thin warm/cool
   fringing at edges — plus one semantic green for live/selected states.
   No gradient washes, no glows, no cards with hover-lift.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --void:    #050507;
  --void-2:  #08090E;
  --panel:   rgba(10, 12, 18, 0.70);
  --panel-s: rgba(14, 16, 24, 0.92);

  --light:   #F2F4FA;
  --light-2: #D4D9E6;
  --dim:     #AEB4CB;
  --faint:   #8A92A9;

  --edge:    rgba(178, 192, 235, 0.16);
  --edge-2:  rgba(178, 192, 235, 0.32);

  --ice:     #9FB4FF;   /* cool side of the spectrum */
  --warm:    #FFB48A;   /* warm side — dispersion + marked points only */
  --live:    #7BE0A4;   /* semantic: live / selected / success */
  --alarm:   #FF9E9E;   /* semantic: error */

  --f-sans:  "Segoe UI Variable Display", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Inter", Arial, sans-serif;
  --f-data:  ui-monospace, "Cascadia Mono", "SF Mono", Menlo, Consolas, monospace;

  --gut:     clamp(1.25rem, 5vw, 5rem);
  --maxw:    1240px;

  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--void);
  color: var(--light);
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── ambient field (homepage hero only) ─────────────────────── */

#field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}
.lens {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(120% 88% at 50% 44%, transparent 38%, rgba(5,5,7,.62) 78%, rgba(5,5,7,.92) 100%);
}
.lens::before,
.lens::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 14vw;
  mix-blend-mode: screen;
  opacity: .32;
}
.lens::before { left: 0;  background: linear-gradient(to right, rgba(120,150,255,.16), transparent); }
.lens::after  { right: 0; background: linear-gradient(to left,  rgba(255,150,110,.13), transparent); }

.doc { position: relative; z-index: 2; }

#probe {
  position: fixed;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -164%);
  transition: opacity .16s ease;
  background: var(--panel-s);
  border: 1px solid var(--edge-2);
  border-radius: 3px;
  padding: .42rem .6rem;
  font-family: var(--f-data);
  font-size: .68rem;
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: -1px 0 0 rgba(255,150,110,.22), 1px 0 0 rgba(120,150,255,.22);
}
#probe.on { opacity: 1; }
#probe b { color: var(--light); font-weight: 500; }
#probe span { color: var(--faint); }

/* ── shell ──────────────────────────────────────────────────── */

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

nav.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem var(--gut);
  background: linear-gradient(to bottom, rgba(5,5,7,.88), rgba(5,5,7,0));
  border-bottom: 1px solid transparent;
  transition: transform .38s cubic-bezier(.3,.7,.3,1), background .3s, border-color .3s;
}
nav.site.nav-hidden { transform: translateY(-110%); }
nav.site.nav-solid {
  background: rgba(5,5,7,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(178,192,235,.12);
}
@media (prefers-reduced-motion: reduce) { nav.site { transition: none; } }

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--light);
  text-decoration: none;
  font-size: .96rem;
  letter-spacing: -.035em;
  font-weight: 400;
}
.brand svg { width: 26px; height: 26px; display: block; }

nav.site ul {
  display: flex;
  gap: 1.9rem;
  list-style: none;
  margin: 0; padding: 0;
  font-size: .78rem;
  letter-spacing: .03em;
  align-items: center;
}
nav.site a { color: var(--dim); text-decoration: none; transition: color .2s; }
nav.site a:hover, nav.site a:focus-visible { color: var(--light); }
nav.site a[aria-current="page"] { color: var(--light); }
.nav-cta {
  border: 1px solid var(--edge-2);
  border-radius: 100px;
  padding: .42rem 1.05rem;
  color: var(--light) !important;
  font-size: .78rem;
  transition: border-color .2s, background .2s;
}
.nav-cta:hover { border-color: rgba(200,212,255,.6); background: rgba(160,180,255,.07); }
@media (max-width: 880px) { nav.site ul li:not(:last-child) { display: none; } }

:focus-visible { outline: 1px solid var(--ice); outline-offset: 3px; border-radius: 2px; }

/* ── type ───────────────────────────────────────────────────── */

h1, h2, h3, h4 { margin: 0; font-weight: 250; text-wrap: balance; }

h1 {
  font-size: clamp(3.2rem, 12vw, 8.5rem);
  line-height: .87;
  letter-spacing: -.055em;
}
h2 {
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  line-height: .98;
  letter-spacing: -.045em;
}
h3 {
  font-size: 1.12rem;
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.28;
}
h4 {
  font-size: .95rem;
  font-weight: 450;
  letter-spacing: -.01em;
}
p { margin: 0; }

.lede { font-size: clamp(1.02rem, 2vw, 1.24rem); color: var(--light-2); line-height: 1.52; max-width: 46ch; }
.body { color: var(--dim); font-size: .96rem; line-height: 1.62; max-width: 58ch; }
.tiny { color: var(--faint); font-size: .8rem; line-height: 1.55; }
.tiny.bright { color: var(--light-2); }
.mono { font-family: var(--f-data); font-variant-numeric: tabular-nums; }

a.link { color: var(--light-2); text-decoration: none; border-bottom: 1px solid var(--edge-2); transition: color .2s, border-color .2s; }
a.link:hover { color: var(--light); border-color: var(--light); }

/* waypoint marker — the section label of this system */
.way {
  font-family: var(--f-data);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: .7rem;
}
.way::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 9px var(--ice);
  flex: none;
}
.way.center { justify-content: center; }

/* ── sections + page scaffolding ────────────────────────────── */

section { position: relative; padding: clamp(4.5rem, 12vh, 9rem) 0; }
section.tight { padding: clamp(2.5rem, 6vh, 4.5rem) 0; }

.sec-head { display: flex; flex-direction: column; gap: 1.1rem; max-width: 52ch; }

/* subpage opener — smaller than the homepage hero, same voice */
.page-head {
  padding: clamp(8rem, 22vh, 12rem) 0 clamp(2.5rem, 6vh, 4rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.page-head h1 { font-size: clamp(2.6rem, 7.5vw, 5rem); }

/* homepage hero */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 3rem;
}
.hero-in { display: flex; flex-direction: column; gap: 2rem; }
.hero h1 span { display: block; }
.hero h1 .lo { color: var(--dim); }
.hero-row { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; align-items: center; }

.scroll-note {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--f-data); font-size: .66rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--faint);
  margin-top: 1rem;
}
.scroll-note i {
  display: block; width: 30px; height: 1px; background: var(--edge-2); position: relative; overflow: hidden;
}
.scroll-note i::after {
  content: ""; position: absolute; inset: 0; width: 10px; background: var(--ice);
  animation: sweep 2.6s cubic-bezier(.6,0,.4,1) infinite;
}
@keyframes sweep { 0% { transform: translateX(-12px); } 100% { transform: translateX(32px); } }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ── layout primitives ──────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.stack   { display: flex; flex-direction: column; gap: 1.3rem; }
.stack-l { display: flex; flex-direction: column; gap: 2.2rem; }

/* ── panels (floating in the volume) ────────────────────────── */

.panel {
  background: var(--panel);
  backdrop-filter: blur(22px) saturate(115%);
  -webkit-backdrop-filter: blur(22px) saturate(115%);
  border: 1px solid var(--edge);
  border-radius: 4px;
  box-shadow:
    -1px 0 0 rgba(255,150,110,.13),
     1px 0 0 rgba(120,150,255,.15),
     0 40px 90px -50px rgba(0,0,0,.9);
}
.panel.pad { padding: 1.6rem 1.5rem; }

/* segmented panel grid — the workhorse (formerly "cards") */
.seg {
  display: grid;
  gap: 1px;
  background: var(--edge);
  border: 1px solid var(--edge);
  border-radius: 4px;
  overflow: hidden;
}
.seg > * {
  background: var(--panel);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 1.7rem 1.5rem 1.9rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: background .3s;
  margin: 0;
}
.seg > *:hover { background: rgba(20, 24, 36, 0.78); }
.seg .k { font-family: var(--f-data); font-size: .64rem; letter-spacing: .17em; text-transform: uppercase; color: var(--ice); }
.seg p { color: var(--dim); font-size: .91rem; line-height: 1.58; }
.seg a.more { color: var(--light-2); font-size: .82rem; text-decoration: none; margin-top: auto; padding-top: .6rem; border-bottom: 1px solid var(--edge-2); align-self: flex-start; transition: color .2s, border-color .2s; }
.seg a.more:hover { color: var(--light); border-color: var(--light); }
@media (min-width: 860px) {
  .seg.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .seg.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .seg.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) { .seg.cols-4 { grid-template-columns: repeat(4, 1fr); } }

/* bordered index rows — quiet lists (features, catalog families) */
.idx { display: flex; flex-direction: column; }
.idx > div {
  display: grid;
  grid-template-columns: 1.6rem 1fr auto;
  gap: .9rem;
  align-items: baseline;
  padding: .62rem 0;
  border-top: 1px solid rgba(178,192,235,.09);
  font-size: .9rem;
}
.idx > div:last-child { border-bottom: 1px solid rgba(178,192,235,.09); }
.idx i {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ice); justify-self: center; align-self: center;
  box-shadow: 0 0 8px rgba(159,180,255,.7);
}
.idx b { font-weight: 350; color: var(--light); }
.idx em { font-style: normal; color: var(--faint); font-size: .78rem; display: block; margin-top: .1rem; }
.idx .n { font-family: var(--f-data); font-size: .8rem; color: var(--dim); font-variant-numeric: tabular-nums; }

/* top-bordered fact grid */
.incl { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.6rem 2rem; }
.incl > div { display: flex; flex-direction: column; gap: .3rem; padding-top: .8rem; border-top: 1px solid rgba(178,192,235,.13); }
.incl b { font-weight: 400; font-size: .95rem; letter-spacing: -.01em; color: var(--light); }
.incl p { color: var(--faint); font-size: .84rem; line-height: 1.5; }

/* pricing tiers */
.tiers { display: grid; gap: 1px; background: var(--edge); border: 1px solid var(--edge); border-radius: 4px; overflow: hidden; }
@media (min-width: 760px) { .tiers { grid-template-columns: 1fr 1fr; } }
.tier { background: var(--panel); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); padding: 1.7rem 1.6rem; display: flex; flex-direction: column; gap: .9rem; }
.tier .k { font-family: var(--f-data); font-size: .64rem; letter-spacing: .17em; text-transform: uppercase; color: var(--faint); }
.tier .amt { font-size: 2.4rem; letter-spacing: -.05em; font-weight: 250; line-height: 1; }
.tier ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .42rem; font-size: .88rem; color: var(--dim); }
.tier li { padding-left: 1.1rem; position: relative; }
.tier li::before { content: ""; position: absolute; left: 0; top: .62em; width: .5rem; height: 1px; background: var(--edge-2); }
.tier.pro .k { color: var(--ice); }

/* code / shell blocks */
.shell {
  font-family: var(--f-data);
  font-size: .76rem;
  line-height: 1.85;
  color: var(--dim);
  background: rgba(4, 5, 8, .72);
  border: 1px solid var(--edge);
  border-radius: 4px;
  padding: 1.1rem 1.2rem;
  overflow-x: auto;
  white-space: pre;
}
.shell u { text-decoration: none; color: var(--light); }
.shell i { font-style: normal; color: var(--ice); }
.shell .c { color: var(--faint); }

code {
  font-family: var(--f-data);
  font-size: .84em;
  background: rgba(4,5,8,.72);
  border: 1px solid var(--edge);
  border-radius: 3px;
  padding: .1em .4em;
  color: var(--light-2);
  overflow-wrap: anywhere;
}
.shell code { border: 0; background: none; padding: 0; }

/* metric readouts */
.metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1.4rem; }
.metrics > div { display: flex; flex-direction: column; gap: .18rem; }
.metrics b { font-family: var(--f-data); font-size: 1.55rem; font-weight: 400; letter-spacing: -.035em; color: var(--light); font-variant-numeric: tabular-nums; }
.metrics span { font-family: var(--f-data); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; color: var(--faint); }

/* ── buttons + tags ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .72rem 1.5rem;
  border-radius: 100px;
  font-size: .92rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: var(--f-sans);
  transition: background .22s, border-color .22s, transform .22s;
}
.btn-a { background: var(--light); color: #06070B; font-weight: 450; }
.btn-a:hover { transform: translateY(-1px); background: #fff; }
.btn-b { border-color: var(--edge-2); color: var(--light); background: transparent; }
.btn-b:hover { border-color: rgba(200,212,255,.62); background: rgba(160,180,255,.07); }
.btn-s { padding: .5rem 1.1rem; font-size: .82rem; }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

.tag {
  display: inline-block;
  font-family: var(--f-data);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border-radius: 100px;
  border: 1px solid var(--edge-2);
  color: var(--dim);
}
.tag.ice  { color: var(--ice);  border-color: rgba(159,180,255,.4); }
.tag.live { color: var(--live); border-color: rgba(123,224,164,.4); }
.tag.warm { color: var(--warm); border-color: rgba(255,180,138,.4); }

/* ── tables ─────────────────────────────────────────────────── */

.tbl { border: 1px solid var(--edge); border-radius: 4px; overflow-x: auto; background: var(--panel); backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px); }
.tbl table { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 560px; }
.tbl th {
  text-align: left; padding: .75rem 1.1rem;
  font-family: var(--f-data); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--faint); font-weight: 500;
  border-bottom: 1px solid var(--edge);
}
.tbl td { padding: .68rem 1.1rem; border-bottom: 1px solid rgba(178,192,235,.08); color: var(--dim); }
.tbl tr:last-child td { border-bottom: 0; }
.tbl td:first-child { color: var(--light-2); }
.tbl .num { font-family: var(--f-data); font-variant-numeric: tabular-nums; }

/* ── prose (blog posts, terms, privacy, long-form) ──────────── */

.prose { max-width: 68ch; display: flex; flex-direction: column; gap: 1.05rem; }
.prose h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-top: 1.6rem; }
.prose h3 { font-size: 1.15rem; font-weight: 450; margin-top: .9rem; color: var(--light); }
.prose p { color: var(--dim); font-size: .99rem; line-height: 1.72; }
.prose ul, .prose ol { margin: 0; padding-left: 1.3rem; color: var(--dim); font-size: .99rem; line-height: 1.72; display: flex; flex-direction: column; gap: .45rem; }
.prose li::marker { color: var(--faint); }
.prose a { color: var(--ice); text-decoration: none; border-bottom: 1px solid rgba(159,180,255,.35); }
.prose a:hover { border-color: var(--ice); }
.prose strong, .prose b { color: var(--light-2); font-weight: 500; }
.prose blockquote {
  margin: 0; padding: .2rem 0 .2rem 1.2rem;
  border-left: 2px solid var(--edge-2);
  color: var(--light-2); font-size: 1.02rem;
}
.prose hr { border: 0; border-top: 1px solid var(--edge); margin: 1.2rem 0; }
.prose pre {
  font-family: var(--f-data); font-size: .78rem; line-height: 1.75;
  background: rgba(4,5,8,.72); border: 1px solid var(--edge); border-radius: 4px;
  padding: 1rem 1.1rem; overflow-x: auto; color: var(--dim); margin: 0;
}
.prose img { max-width: 100%; border-radius: 4px; border: 1px solid var(--edge); }

.byline {
  display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; align-items: baseline;
  font-family: var(--f-data); font-size: .7rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--faint);
}

/* blog index rows */
.post-list { display: flex; flex-direction: column; }
.post-list a {
  display: flex; flex-direction: column; gap: .45rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(178,192,235,.09);
  text-decoration: none;
  transition: background .25s;
}
.post-list a:last-child { border-bottom: 1px solid rgba(178,192,235,.09); }
.post-list h3 { color: var(--light); transition: color .2s; }
.post-list a:hover h3 { color: var(--ice); }
.post-list .date { font-family: var(--f-data); font-size: .66rem; letter-spacing: .14em; color: var(--faint); text-transform: uppercase; }
.post-list p { color: var(--dim); font-size: .92rem; line-height: 1.6; max-width: 72ch; }

/* ── forms ──────────────────────────────────────────────────── */

.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form label { display: flex; flex-direction: column; gap: .4rem; font-size: .82rem; color: var(--light-2); }
.form .frow { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; }
.form input, .form select, .form textarea {
  background: rgba(4,5,8,.72);
  border: 1px solid var(--edge);
  border-radius: 4px;
  color: var(--light);
  font-family: var(--f-sans);
  font-size: .92rem;
  padding: .68rem .85rem;
  transition: border-color .2s;
  width: 100%;
}
.form input::placeholder, .form textarea::placeholder { color: var(--faint); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--edge-2); }
.form textarea { min-height: 120px; resize: vertical; }
.form select { appearance: none; }
.note-ok    { border-left: 2px solid var(--live);  padding: .6rem 1rem; color: var(--light-2); font-size: .9rem; background: rgba(123,224,164,.06); }
.note-err   { border-left: 2px solid var(--alarm); padding: .6rem 1rem; color: var(--light-2); font-size: .9rem; background: rgba(255,158,158,.06); }

/* ── routing demo (homepage) ────────────────────────────────── */

.route { padding: 0; overflow: hidden; }
.route-top {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--edge);
}
.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip {
  font-family: var(--f-data);
  font-size: .69rem;
  padding: .34rem .72rem;
  border-radius: 100px;
  border: 1px solid var(--edge);
  background: transparent;
  color: var(--dim);
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.chip:hover { color: var(--light); border-color: var(--edge-2); }
.chip[aria-pressed="true"] { color: #06070B; background: var(--light); border-color: var(--light); }

.route-body { display: grid; grid-template-columns: 1fr; }
@media (min-width: 900px) { .route-body { grid-template-columns: 1.15fr .85fr; } }

.route-stage { position: relative; min-height: 280px; border-right: 1px solid var(--edge); }
@media (max-width: 899px) { .route-stage { border-right: 0; border-bottom: 1px solid var(--edge); } }
#stage { display: block; width: 100%; height: 100%; position: absolute; inset: 0; }
.route-prompt {
  position: absolute; left: 1.4rem; right: 1.4rem; top: 1.25rem;
  font-family: var(--f-data); font-size: .78rem; color: var(--light);
  display: flex; gap: .55rem; align-items: baseline;
}
.route-prompt s { color: var(--ice); text-decoration: none; }

.route-out { padding: 1.4rem; display: flex; flex-direction: column; gap: 1rem; }
.trace { display: flex; flex-direction: column; gap: .5rem; font-family: var(--f-data); font-size: .74rem; }
.trace div { display: flex; justify-content: space-between; gap: 1rem; color: var(--faint); }
.trace div b { color: var(--light-2); font-weight: 400; font-variant-numeric: tabular-nums; }
.trace div.sel b { color: var(--live); }
.verdict {
  border-top: 1px solid var(--edge);
  padding-top: .9rem;
  font-size: .88rem;
  color: var(--dim);
  line-height: 1.55;
}
.verdict b { color: var(--light); font-weight: 400; }

/* ── closing CTA + footer ───────────────────────────────────── */

.close { text-align: center; padding-block: clamp(6rem, 16vh, 11rem); }
.close-in { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.close .lede { max-width: 40ch; }

footer.site {
  border-top: 1px solid rgba(178,192,235,.1);
  padding: 2.6rem 0 3.5rem;
  font-size: .78rem; color: var(--faint);
}
footer.site .frow {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  justify-content: space-between; align-items: flex-start;
}
footer.site ul { display: flex; flex-wrap: wrap; gap: .55rem 1.3rem; list-style: none; margin: 0; padding: 0; max-width: 640px; }
footer.site a { color: var(--dim); text-decoration: none; }
footer.site a:hover { color: var(--light); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-note i::after { animation: none; }
}
