:root {
  --bg: #0f1115;
  --fg: #e6e7eb;
  --muted: #9aa0aa;
  --accent: #7aa2ff;
  --border: #2a2f3a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

.container {
  max-width: 720px;
  padding: 4rem 1.5rem;
  margin: 0 auto;
}

section {
  margin-bottom: 3rem;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -25%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'><polygon points='60,1 119,26 119,78 60,103 1,78 1,26'/></svg>");
  background-repeat: repeat;
  background-size: 140px 120px;
  opacity: 0.35;
  pointer-events: none;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

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

.subhead {
  margin-top: 1.5rem;
}

.cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.primary {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--accent);
  color: var(--fg);
  text-decoration: none;
  width: fit-content;
}

.primary:hover {
  background: var(--accent);
  color: #000;
}

.secondary {
  font-size: 0.85rem;
  color: var(--muted);
}

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

ul {
  padding-left: 1.25rem;
}

.muted {
  color: var(--muted);
}

.alpha {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

footer a {
  color: var(--muted);
  text-decoration: none;
}
