:root {
  --bg: #0f1115;
  --surface: #1a1f2b;
  --text: #e8ecf4;
  --muted: #9aa4b8;
  --accent: #f4b942;
  --accent-dim: #c8922a;
}

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

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(ellipse at top, #1c2433 0%, var(--bg) 55%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

.page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.hero {
  margin-bottom: 2rem;
}

.eyebrow {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.tagline {
  color: var(--muted);
  font-size: 1.05rem;
}

.handle {
  color: var(--accent);
  font-family: ui-monospace, "Cascadia Code", monospace;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.card h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dim);
  margin-bottom: 0.5rem;
}

footer {
  color: var(--muted);
  font-size: 0.9rem;
}
