:root {
  color-scheme: dark;
  --bg: #10201d;
  --surface: #0e2026;
  --surface-alt: #17332d;
  --border: #24444d;
  --text: #f6fbf7;
  --muted: #c8d7d2;
  --soft: #9ab8be;
  --accent: #ffc857;
  --good: #b6f36e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 28px 18px 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 42px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 20px;
  font-weight: 950;
}

.mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 200, 87, 0.16);
  color: var(--accent);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a {
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  padding: 8px 11px;
}

.hero {
  margin-bottom: 24px;
}

.eyebrow {
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  margin: 8px 0 10px;
  max-width: 780px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 17px;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 21px;
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.card,
.section {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}

.card {
  padding: 18px;
}

.section {
  margin-top: 14px;
  padding: 20px;
}

.card p,
.section p,
.section li {
  color: var(--muted);
  font-weight: 650;
}

.section ul {
  margin: 8px 0 0;
  padding-left: 22px;
}

.section li + li {
  margin-top: 6px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 8px 0 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--muted);
  padding: 7px 10px;
  font-size: 14px;
  font-weight: 850;
}

.notice {
  border-color: rgba(255, 200, 87, 0.55);
  background: rgba(255, 200, 87, 0.1);
}

.footer {
  margin-top: 34px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.footer a {
  color: var(--soft);
}

@media (max-width: 700px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .nav {
    justify-content: flex-start;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
