:root{
  --bg: #0b1020;
  --panel: #0f1724;
  --muted: #9aa4b2;
  --text: #e6eef6;
  --accent: #7dd3fc;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  margin: 0;
  padding: 2rem;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), #07101a 120%);
}

header { margin-bottom: 2rem }
header a { text-decoration: none; color: var(--text) }
main { max-width: 48rem }

.hero{
  background: linear-gradient(135deg, rgba(125,211,252,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.04);
  padding: 2.25rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(2,6,23,0.6);
  margin-bottom: 1.5rem;
}

.hero h1{
  margin: 0 0 0.5rem 0;
  font-size: 2.25rem;
  letter-spacing: -0.02em;
}

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

a { color: var(--accent) }

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