:root {
  color-scheme: dark;
  --background: #0e0e0e;
  --surface: #161616;
  --surface-elevated: #222222;
  --active-gold-surface: #2a2410;
  --gold: #e6cd7d;
  --gold-strong: #f2ca50;
  --text: #ffffff;
  --text-muted: #a3a3a3;
  --text-soft: #d0c5af;
  --divider: rgba(230, 205, 125, 0.12);
  --shadow: rgba(0, 0, 0, 0.32);
  --max-width: 860px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration-color: rgba(230, 205, 125, 0.42);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold-strong);
}

.site-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 28px 20px 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--active-gold-surface);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-name {
  font-size: 20px;
  font-weight: 760;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

.nav a[aria-current="page"],
.nav a:hover {
  background: var(--active-gold-surface);
  color: var(--gold);
}

.hero {
  padding: 56px 0 30px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.02;
  font-weight: 820;
}

h2 {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--divider);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 760;
}

h3 {
  margin-top: 26px;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 720;
}

p,
li {
  color: var(--text-soft);
  font-size: 16px;
}

p {
  margin: 14px 0 0;
}

ul,
ol {
  margin: 12px 0 0;
  padding-left: 24px;
}

li + li {
  margin-top: 8px;
}

strong {
  color: var(--text);
}

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

.summary-card,
.legal-card {
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 52px var(--shadow);
}

.summary-card {
  padding: 18px;
}

.summary-card h2,
.summary-card h3 {
  margin: 0;
  padding: 0;
  border: 0;
}

.summary-card h2 {
  font-size: 18px;
}

.summary-card p {
  color: var(--text-muted);
}

.legal-card {
  margin-top: 28px;
  padding: 30px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 8px;
  background: var(--surface-elevated);
  color: var(--text-soft);
}

.document {
  margin-top: 18px;
}

.document > p:first-child {
  margin-top: 0;
}

.callout {
  margin-top: 22px;
  padding: 18px;
  border-radius: 8px;
  background: var(--active-gold-surface);
  color: var(--text-soft);
}

.callout p {
  margin: 0;
}

.footer {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 14px;
}

.footer p {
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 680px) {
  .site-shell {
    padding: 20px 16px 44px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 22px;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
  }

  .hero {
    padding: 38px 0 22px;
  }

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

  .legal-card {
    padding: 22px 18px;
  }
}
