@font-face {
  font-family: 'VCR';
  src: url('/vcr.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --bg: #fafafa;
  --fg: #111111;
  --fg-subtle: #666666;
  --fg-faint: #999999;
  --border: #e4e4e4;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0a0a;
    --fg: #eaeaea;
    --fg-subtle: #8a8a8a;
    --fg-faint: #5e5e5e;
    --border: #222222;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica,
    Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.vcr {
  font-family: 'VCR', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ── Landing ─────────────────────────────────────────── */

.center-stage {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-stage .vcr {
  color: var(--fg-subtle);
}

.center-stage .stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  text-align: center;
}

.center-stage .stack > .vcr:first-child {
  color: var(--fg);
}

.center-stage .tagline {
  max-width: 26rem;
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-subtle);
}

.center-stage .links a {
  color: var(--fg-subtle);
  text-decoration: none;
}

.center-stage .links a:hover {
  color: var(--fg);
}

.center-stage .links span {
  color: var(--fg-faint);
  margin: 0 0.5em;
}

.center-stage .byline {
  color: var(--fg-faint);
}

.center-stage .features {
  max-width: 28rem;
  text-align: left;
  margin-top: 0.5rem;
}

.center-stage .features h2.vcr {
  font-weight: normal;
  font-size: 11px;
  color: var(--fg-faint);
  margin-bottom: 0.75rem;
  text-align: center;
}

.center-stage .features ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.center-stage .features li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-subtle);
}

/* ── Legal prose pages ───────────────────────────────── */

.legal {
  max-width: 40rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
  line-height: 1.65;
  font-size: 15px;
}

.legal .brand {
  display: inline-block;
  color: var(--fg-subtle);
  text-decoration: none;
  margin-bottom: 3rem;
}

.legal .brand:hover {
  color: var(--fg);
}

.legal h1 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.legal .effective {
  color: var(--fg-faint);
  font-size: 13px;
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-size: 1rem;
  font-weight: 600;
  margin: 2.25rem 0 0.6rem;
}

.legal p,
.legal ul {
  margin-bottom: 0.9rem;
  color: var(--fg);
}

.legal ul {
  padding-left: 1.25rem;
}

.legal li {
  margin-bottom: 0.35rem;
}

.legal a {
  color: inherit;
  text-underline-offset: 2px;
}

.legal .footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--fg-faint);
}

.center-stage h1.vcr {
  font-weight: normal;
  font-size: 11px;
}
