:root {
  --bg: #0d0f13;
  --panel: #14171c;
  --panel-alt: #1b1f26;
  --border: #262b33;
  --text: #e7e9ec;
  --muted: #8b93a1;
  --gold: #f5c34d;
  --gold-dim: #caa03f;
  --link: #7fb0ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.brand .accent {
  color: var(--gold);
}

.site-header nav a {
  color: var(--muted);
  font-size: 0.92rem;
  margin-left: 20px;
}

.site-header nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.hero {
  padding: 96px 0 64px;
  text-align: center;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.hero h1 .accent {
  color: var(--gold);
}

.hero .tagline {
  color: var(--muted);
  font-size: 1.25rem;
  max-width: 640px;
  margin: 0 auto 32px;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.pill strong {
  color: var(--gold);
  font-weight: 700;
}

.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}

.button.primary {
  background: var(--gold);
  color: #14171c;
}

.button.primary:hover {
  background: #ffd166;
  text-decoration: none;
}

.button.secondary {
  background: var(--panel);
  border: 1px solid var(--border);
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--gold-dim);
  text-decoration: none;
}

section {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

section h2 {
  font-size: 1.6rem;
  margin: 0 0 8px;
}

section .section-lede {
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 36px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
}

.card .count {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.license-note {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}

.license-note p {
  margin: 0 0 12px;
  color: var(--muted);
}

.license-note p:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero .tagline {
    font-size: 1.05rem;
  }
}
