:root {
  --bg: #0f172a;
  --surface: #1e293b;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --accent: #38bdf8;
  --maxw: 900px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
  padding: 1rem 0;
}

.brand {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

main { flex: 1; }

.hero {
  padding: 4rem 0;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.5rem;
}

.lead {
  font-size: 1.25rem;
  color: var(--text);
  margin: 0 0 1.5rem;
}

.status {
  display: inline-block;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1rem;
  color: var(--muted);
  border-radius: 0 6px 6px 0;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #04263a;
  font-weight: 700;
  text-decoration: none;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  margin: 0.5rem 0 1.5rem;
}

.cta:hover { background: #7dd3fc; }

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding: 1.5rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}
