@font-face {
  font-family: "Geist";
  src: url("fonts/geist.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("fonts/geist-mono.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --fg: #0a0a0a;
  --fg-muted: #0a0a0aa8;
  --fg-faint: #0a0a0a80;
  --label: #0a0a0a8c;
  --border: #0a0a0a1f;
  --border-strong: #0a0a0a3d;
  --surface: #f5f5f5;
  --frame: #0a0a0a;
  --frame-fg: #ffffff;
  --frame-muted: #ffffffa8;
  --frame-faint: #ffffff80;
  --frame-border: #ffffff24;
  --term-bg: #111111;
  --term-border: #ffffff1f;
  --mint: #8ec5b2;
  --accent-ink: #3b7a64;
  --amber: #f4b942;
  --on-accent: #0a0a0a;
  --header-bg: #ffffffd9;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-full: 9999px;
  --frame-radius: 40px;
  --inset: 16px;
  --container: 1400px;
  --sans: "Geist", ui-sans-serif, system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", monospace;
  --ease-reveal: cubic-bezier(.16, 1, .3, 1);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #070e1a;
    --fg: #ffffff;
    --fg-muted: #ffffffb3;
    --fg-faint: #ffffff80;
    --label: #ffffff8c;
    --border: #ffffff24;
    --border-strong: #ffffff47;
    --surface: #0f1827;
    --frame: #0f1827;
    --term-bg: #070e1a;
    --header-bg: #070e1ad9;
    --accent-ink: #8ec5b2;
  }
}
:root[data-theme="light"] {
  --bg: #ffffff;
  --fg: #0a0a0a;
  --fg-muted: #0a0a0aa8;
  --fg-faint: #0a0a0a80;
  --label: #0a0a0a8c;
  --border: #0a0a0a1f;
  --border-strong: #0a0a0a3d;
  --surface: #f5f5f5;
  --frame: #0a0a0a;
  --term-bg: #111111;
  --header-bg: #ffffffd9;
  --accent-ink: #3b7a64;
}
:root[data-theme="dark"] {
  --bg: #070e1a;
  --fg: #ffffff;
  --fg-muted: #ffffffb3;
  --fg-faint: #ffffff80;
  --label: #ffffff8c;
  --border: #ffffff24;
  --border-strong: #ffffff47;
  --surface: #0f1827;
  --frame: #0f1827;
  --term-bg: #070e1a;
  --header-bg: #070e1ad9;
  --accent-ink: #8ec5b2;
}
@media (max-width: 720px) {
  :root { --frame-radius: 24px; --inset: 8px; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
code { font-family: var(--mono); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
::selection { background: var(--mint); color: var(--on-accent); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 56px);
}

/* ---- Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}
.wordmark {
  font-family: var(--mono);
  font-weight: 700;
  font-size: .9375rem;
  letter-spacing: -.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wordmark .prompt-glyph { color: var(--accent-ink); font-weight: 700; }
.site-footer .wordmark .prompt-glyph { color: var(--mint); }
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  font-size: .875rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color .15s ease;
}
.site-nav a:hover { color: var(--fg); }
@media (max-width: 860px) { .site-nav { display: none; } }
.gh-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  white-space: nowrap;
  transition: border-color .15s ease, background .15s ease;
}
.gh-link:hover { border-color: var(--fg); }
.gh-link svg { width: 14px; height: 14px; fill: currentColor; }

/* ---- Eyebrows & headings */
.eyebrow {
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--label);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent-ink);
  flex: none;
}
.sessions-copy .eyebrow::before { background: var(--mint); }
h1, h2, h3 { margin: 0; text-wrap: balance; }
.section-head { max-width: 720px; display: grid; gap: 16px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.08;
}
.section-head p { margin: 0; color: var(--fg-muted); font-size: 1.0625rem; max-width: 56ch; }
section { padding-block: clamp(48px, 7vw, 96px); }
section + section { border-top: 1px solid var(--border); }

/* ---- Hero frame (signature) */
.hero-shell { padding: var(--inset); }
.hero-frame {
  background: var(--frame);
  color: var(--frame-fg);
  border-radius: var(--frame-radius);
  overflow: clip;
}

/* ---- Hero entrance: one staged reveal on load, then the terminal replay */
.hero-frame,
.hero-copy > *,
.terminal,
.hero-stats {
  opacity: 0;
  transform: translateY(12px);
  animation: rise .6s var(--ease-reveal) forwards;
}
.hero-frame { animation-duration: .7s; }
.hero-copy > :nth-child(1) { animation-delay: .15s; }
.hero-copy > :nth-child(2) { animation-delay: .25s; }
.hero-copy > :nth-child(3) { animation-delay: .35s; }
.hero-copy > :nth-child(4) { animation-delay: .45s; }
.hero-copy > :nth-child(5) { animation-delay: .5s; }
.hero-copy > :nth-child(6) { animation-delay: .55s; }
.hero-copy > :nth-child(7) { animation-delay: .6s; }
.terminal { animation-delay: .45s; }
.hero-stats { animation-delay: .65s; }
@media (prefers-reduced-motion: reduce) {
  .hero-frame, .hero-copy > *, .terminal, .hero-stats {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.hero-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(48px, 7vw, 104px) clamp(24px, 4.5vw, 72px) clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 1000px) { .hero-inner { grid-template-columns: 1fr; } }
.hero-copy { display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; }
.hero-chip {
  justify-self: start;
  font-family: var(--mono);
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--frame-muted);
  border: 1px solid var(--frame-border);
  border-radius: var(--radius-full);
  padding: 7px 14px;
}
.hero-chip b { color: var(--mint); font-weight: 700; }
.hero-copy h1 {
  max-width: 100%;
  font-size: clamp(2.5rem, 5.4vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -.04em;
  line-height: 1.02;
}
.hero-copy h1 em { font-style: normal; color: var(--mint); }
.hero-sub { margin: 0; color: var(--frame-muted); font-size: 1.125rem; max-width: 52ch; }
.hero-sub a { color: var(--frame-fg); text-underline-offset: 3px; }

.install-line {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  background: var(--term-bg);
  border: 1px solid var(--term-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.install-line code {
  font-family: var(--mono);
  font-size: .8125rem;
  color: var(--frame-fg);
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.install-line code .dollar { color: var(--mint); user-select: none; }
.install-note {
  margin: -14px 0 0;
  font-family: var(--mono);
  font-size: .6875rem;
  color: var(--frame-faint);
}
.install-note a { color: var(--frame-muted); text-underline-offset: 3px; }
.install-note a:hover { color: var(--frame-fg); }
.copy-btn {
  flex: none;
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--on-accent);
  background: var(--mint);
  border: 0;
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  cursor: pointer;
}
.copy-btn:hover { filter: brightness(1.06); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .8125rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-full);
  padding: 12px 24px;
}
.btn > span { position: relative; z-index: 1; transition: color .5s var(--ease-reveal); }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mint);
  transform: translateY(100%);
  transition: transform .5s var(--ease-reveal);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover > span { color: var(--on-accent); }
.btn-primary { background: var(--frame-fg); color: var(--on-accent); }
.btn-ghost { border: 1px solid var(--frame-border); color: var(--frame-fg); }
.btn-ink { background: var(--fg); color: var(--bg); }
.btn-outline { border: 1px solid var(--border-strong); color: var(--fg); }
@media (prefers-reduced-motion: reduce) {
  .btn::before { transition: none; }
  .btn > span { transition: none; }
  html { scroll-behavior: auto; }
}

.client-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 20px;
  row-gap: 8px;
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--frame-faint);
}
.client-row .lead { text-transform: uppercase; letter-spacing: .15em; font-size: .625rem; font-weight: 700; }

/* ---- Terminal */
.terminal {
  background: var(--term-bg);
  border: 1px solid var(--term-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 64px #00000059;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--term-border);
}
.terminal-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #ffffff2e; }
.terminal-bar .term-title {
  margin-left: auto;
  font-family: var(--mono);
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--frame-faint);
}
.terminal-body {
  padding: 20px 20px 24px;
  font-family: var(--mono);
  font-size: .8125rem;
  line-height: 1.7;
  display: grid;
  gap: 14px;
  min-height: 320px;
  align-content: start;
}
.t-msg { display: grid; gap: 2px; }
.t-who {
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--frame-faint);
}
.t-who.you { color: var(--amber); }
.t-who.agent { color: var(--mint); }
.t-text { color: var(--frame-muted); overflow-wrap: break-word; }
.t-text .caret {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: var(--amber);
  vertical-align: -2px;
  margin-left: 2px;
  animation: blink 1.1s steps(1) infinite;
}
.t-tools { display: grid; gap: 6px; }
.t-tool {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  align-items: baseline;
  color: var(--frame-faint);
}
.t-tool .t-name { color: var(--frame-fg); font-weight: 700; min-width: 15ch; }
.t-tool .t-note { flex: 1 1 12ch; }
.t-tool .t-ok { color: var(--mint); font-weight: 700; }
.t-line { opacity: 0; transform: translateY(6px); animation: rise .6s var(--ease-reveal) forwards; }
.t-line:nth-child(1) { animation-delay: 1.2s; }
.t-line:nth-child(2) { animation-delay: 2.4s; }
.t-line:nth-child(3) { animation-delay: 3.3s; }
.t-line:nth-child(4) { animation-delay: 5.1s; }
.t-line:nth-child(5) { animation-delay: 6.3s; }
.t-tools .t-tool:nth-child(1) { animation-delay: 3.7s; }
.t-tools .t-tool:nth-child(2) { animation-delay: 4.05s; }
.t-tools .t-tool:nth-child(3) { animation-delay: 4.4s; }
.t-tools .t-tool:nth-child(4) { animation-delay: 4.75s; }
.t-tool { opacity: 0; transform: translateY(6px); animation: rise .6s var(--ease-reveal) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .t-line, .t-tool { animation: none; opacity: 1; transform: none; }
  .t-text .caret { animation: none; }
}

/* ---- Hero stats strip */
.hero-stats {
  border-top: 1px solid var(--frame-border);
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 clamp(24px, 4.5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 860px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: clamp(20px, 2.5vw, 32px) 0;
  display: grid;
  gap: 4px;
}
.hero-stats .stat + .stat { border-left: 1px solid var(--frame-border); padding-left: clamp(16px, 2.5vw, 32px); }
@media (max-width: 860px) {
  .hero-stats .stat:nth-child(3) { border-left: 0; padding-left: 0; border-top: 1px solid var(--frame-border); }
  .hero-stats .stat:nth-child(4) { border-top: 1px solid var(--frame-border); }
}
.stat .stat-n {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}
.stat .stat-n b { color: var(--mint); font-weight: 700; }
.stat .stat-l {
  font-family: var(--mono);
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--frame-faint);
}

/* ---- Two pieces */
.pieces { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 860px) { .pieces { grid-template-columns: 1fr; } }
.piece {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 40px);
  display: grid;
  gap: 14px;
  align-content: start;
}
.piece .tag {
  justify-self: start;
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 700;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  padding: 5px 12px;
}
.piece h3 { font-size: 1.375rem; font-weight: 600; letter-spacing: -.02em; }
.piece p { margin: 0; color: var(--fg-muted); max-width: 52ch; }

/* ---- Workflows */
.flows { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 860px) { .flows { grid-template-columns: 1fr; } }
.flow {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 16px;
  align-content: start;
}
.flow-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.flow h3 { font-size: 1.25rem; font-weight: 600; letter-spacing: -.02em; }
.flow .skill-tag {
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 700;
  color: var(--label);
  white-space: nowrap;
}
.flow blockquote {
  margin: 0;
  font-family: var(--mono);
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--fg);
  background: var(--surface);
  border-left: 2px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
}
.flow blockquote::before { content: "you › "; color: var(--label); font-weight: 700; }
.flow p { margin: 0; color: var(--fg-muted); font-size: .9375rem; }

/* ---- Sessions panel */
.sessions-panel {
  margin-top: 16px;
  background: var(--frame);
  color: var(--frame-fg);
  border-radius: calc(var(--frame-radius) / 2);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
@media (max-width: 860px) { .sessions-panel { grid-template-columns: 1fr; } }
.sessions-copy { display: grid; gap: 14px; }
.sessions-copy .eyebrow { justify-self: start; }
.sessions-copy .eyebrow { color: var(--frame-faint); }
.sessions-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; letter-spacing: -.03em; }
.sessions-copy p { margin: 0; color: var(--frame-muted); max-width: 50ch; }
.session-steps { display: grid; gap: 0; font-family: var(--mono); font-size: .8125rem; }
.session-step {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
}
.session-step + .session-step { border-top: 1px solid var(--frame-border); }
.session-step .s-n { color: var(--mint); font-weight: 700; }
.session-step .s-t { color: var(--frame-muted); }
.session-step .s-t b { color: var(--frame-fg); font-weight: 700; }

/* ---- Tools table */
.tool-rows { border-top: 1px solid var(--border); }
.tool-row {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(0, 2fr) minmax(140px, .7fr);
  gap: clamp(16px, 3vw, 48px);
  padding: clamp(18px, 2.5vw, 28px) 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
@media (max-width: 720px) { .tool-row { grid-template-columns: 1fr; gap: 6px; } }
.tool-row h3 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -.01em; }
.tool-row p { margin: 0; color: var(--fg-muted); font-size: .9375rem; }
.tool-row .needs {
  font-family: var(--mono);
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--label);
  justify-self: end;
  text-align: right;
}
@media (max-width: 720px) { .tool-row .needs { justify-self: start; text-align: left; } }
.tool-strip {
  margin-top: clamp(24px, 3vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 6px;
}
.tool-strip code {
  font-family: var(--mono);
  font-size: .75rem;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  transition: color .15s ease, border-color .15s ease;
}
.tool-strip code:hover { color: var(--fg); border-color: var(--border-strong); }
.tool-strip-note {
  margin: 12px 0 0;
  font-size: .8125rem;
  color: var(--fg-faint);
}

/* ---- Security */
.inv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(32px, 5vw, 80px); }
@media (max-width: 860px) { .inv-grid { grid-template-columns: 1fr; } }
.inv {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.inv .mark { width: 10px; height: 10px; background: var(--mint); margin-top: 7px; }
.inv h3 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -.01em; }
.inv p { margin: 4px 0 0; color: var(--fg-muted); font-size: .9375rem; max-width: 48ch; }
.wip-note {
  margin-top: clamp(28px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.wip-note .wip-chip {
  flex: none;
  font-family: var(--mono);
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  background: var(--amber);
  color: var(--on-accent);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
}
.wip-note p { margin: 0; font-size: .875rem; color: var(--fg-muted); }
.wip-note a { color: var(--fg); text-underline-offset: 3px; }

/* ---- Get started */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 12px;
  align-content: start;
}
.step .step-n {
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 700;
  color: var(--label);
}
.step h3 { font-size: 1.125rem; font-weight: 600; letter-spacing: -.01em; }
.step p { margin: 0; color: var(--fg-muted); font-size: .9375rem; }
.step .mini-cmd {
  font-family: var(--mono);
  font-size: .71875rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: thin;
}
.step .mini-cmd .dollar { color: var(--accent-ink); user-select: none; }
.start-actions { margin-top: clamp(24px, 3vw, 40px); display: flex; flex-wrap: wrap; gap: 12px; }

/* ---- Footer */
.footer-shell { padding: var(--inset); }
.site-footer {
  background: var(--frame);
  color: var(--frame-fg);
  border-radius: var(--frame-radius);
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: clamp(28px, 4vw, 44px);
}
.site-footer .foot-links { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.site-footer a {
  font-size: .875rem;
  color: var(--frame-muted);
  text-decoration: none;
}
.site-footer a:hover { color: var(--frame-fg); text-decoration: underline; text-underline-offset: 3px; }
.foot-social { display: flex; gap: 18px; }
.foot-social a { display: inline-flex; color: var(--frame-muted); transition: color .15s ease; }
.foot-social a:hover { color: var(--frame-fg); }
.foot-social svg { width: 18px; height: 18px; fill: currentColor; }
.site-footer .legal {
  font-family: var(--mono);
  font-size: .6875rem;
  color: var(--frame-faint);
}

/* ---- Scroll reveal */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-reveal), transform .7s var(--ease-reveal); }
  .js .reveal.in { opacity: 1; transform: none; }
}
