:root {
  color-scheme: dark;
  --bg: #16151a;
  --panel: #24212a;
  --text: #f7f1e8;
  --muted: #c9bdad;
  --gold: #f1bf4b;
  --green: #68b47b;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

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

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

.page {
  min-height: 100vh;
}

.hero {
  min-height: 58vh;
  display: flex;
  align-items: center;
  padding: 56px 22px;
  background:
    radial-gradient(circle at 50% 28%, rgba(241, 191, 75, 0.22), transparent 32%),
    linear-gradient(180deg, #2a2230 0%, #17161b 100%);
  border-bottom: 1px solid var(--line);
}

.hero__content,
.content,
.document {
  width: min(880px, 100%);
  margin: 0 auto;
}

.eyebrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 8px 0 16px;
  font-size: clamp(42px, 8vw, 76px);
  line-height: 1;
}

h2 {
  margin: 34px 0 10px;
  font-size: 24px;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--gold);
  color: #211910;
  font-weight: 800;
  text-decoration: none;
}

.button--secondary {
  background: var(--green);
  color: #0d1a10;
}

.content {
  padding: 42px 22px 72px;
}

.document {
  padding: 34px 22px 72px;
}

.document h1 {
  font-size: clamp(36px, 7vw, 58px);
}

.document p {
  color: var(--muted);
}

.updated,
.back-link {
  color: var(--gold);
  font-weight: 700;
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  text-decoration: none;
}

.email {
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 520px) {
  .hero {
    min-height: 52vh;
    padding-top: 42px;
  }

  .button {
    width: 100%;
  }
}
