:root {
  --bg: #0c0f12;
  --bg-elevated: #141a20;
  --border: #252d36;
  --text: #e8ecf0;
  --text-muted: #8b97a5;
  --accent: #c9a227;
  --accent-dim: rgba(201, 162, 39, 0.12);
  --max-width: 40rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: "Instrument Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

/* ── Header ─────────────────────────────────────────────────────────────── */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-mark {
  color: var(--accent);
  font-size: 0.85rem;
}

.logo-text {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(201, 162, 39, 0.25);
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero {
  margin-bottom: 3.5rem;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

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

/* ── Features ───────────────────────────────────────────────────────────── */

.features {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature {
  background: var(--bg-elevated);
  padding: 1.5rem 1.35rem;
}

.feature h2 {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}

.feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}

/* ── Status ─────────────────────────────────────────────────────────────── */

.status-inner {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
}

.status h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
}

.status p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  max-width: var(--max-width);
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.footer {
  margin-top: auto;
  padding-top: 3rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer p {
  margin: 0 0 0.35rem;
}

.footer-note {
  font-size: 0.72rem;
  opacity: 0.75;
  max-width: 28rem;
}
