@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg: #0a0a0c;
  --surface: #15141a;
  --surface-2: #1e1c24;
  --line: #2a2830;
  --text: #edeae2;
  --text-muted: #97919f;
  --gold: #d9a94e;
  --gold-bright: #f2c879;
  --redline: #b23a32;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 24px 0;
}

.wordmark {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
}

.site-nav a { color: var(--text-muted); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold-bright); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding-top: 32px; }
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.05;
}

.hero .lede {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 42ch;
}

.gauge-wrap { display: flex; justify-content: center; }

/* ---------- Feature grid ---------- */
.features {
  max-width: 1080px;
  margin: 40px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 760px) {
  .features { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
}

.feature-card .icon { color: var(--gold); margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* ---------- CTA / footer note ---------- */
.status-note {
  max-width: 1080px;
  margin: 56px auto 0;
  padding: 20px 24px;
}

.status-pill {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 5px 14px;
}

/* ---------- Legal pages ---------- */
.legal-shell {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-shell .eyebrow { margin-bottom: 10px; }
.legal-shell h1 { font-size: 2rem; margin-bottom: 6px; }
.legal-shell .updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 40px; }

.legal-shell section { margin-bottom: 32px; }
.legal-shell h2 {
  font-size: 1.05rem;
  color: var(--gold-bright);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.legal-shell p { margin: 0 0 12px; color: var(--text); }
.legal-shell ul { margin: 0 0 12px; padding-left: 20px; color: var(--text); }
.legal-shell li { margin-bottom: 6px; }
.legal-shell strong { color: var(--gold-bright); font-weight: 600; }

.data-table {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

.data-row {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.data-row:last-child { border-bottom: none; }
.data-row .d-label { font-weight: 600; color: var(--text); display: block; margin-bottom: 4px; }
.data-row .d-meta { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Footer ---------- */
.site-footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--gold-bright); }

@media (prefers-reduced-motion: reduce) {
  .needle { animation: none !important; transform: rotate(35deg); }
}
