:root {
  color-scheme: dark;
  --bg: #0b0d10;
  --card: #151920;
  --text: #f2f4f8;
  --muted: #9aa3b2;
  --accent: #f6821f;
  --border: #2a3140;
  --tap: 3.5rem;
  --radius: 1rem;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.35;
}

body {
  min-height: 100dvh;
  padding: 1.25rem 1rem 2.5rem;
}

.wrap {
  max-width: 40rem;
  margin: 0 auto;
}

header {
  margin-bottom: 1.5rem;
}

h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

h2 {
  margin: 1.75rem 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--tap);
  padding: 1rem 1.15rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.list a:active,
.list a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.list .title {
  font-size: 1.25rem;
  font-weight: 600;
}

.list .blurb {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.noscript {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

footer {
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.85rem;
}
