:root {
  color-scheme: dark;
  --background: #141412;
  --surface: #1d1c18;
  --surface-alt: #26251f;
  --border: #2c2b24;
  --text: #f2f0ea;
  --text-sub: #9c988c;
  --text-faint: #908c80;
  --accent: #d6c25a;
  --accent-dim: #988e57;
  --nav: #181713;
  --max-width: 46rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Roboto, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
  text-underline-offset: 4px;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  border-radius: 4px;
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10;
  min-height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  background: var(--accent);
  color: var(--background);
  border-radius: 24px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 120ms ease-out;
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: 20px;
}

.top {
  background: var(--nav);
  border-bottom: 1px solid var(--border);
}

.top-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.back,
.wordmark {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 600;
}

.back:hover,
.wordmark:hover {
  color: var(--text);
  text-decoration: none;
}

.wordmark {
  gap: 0;
}

.brand-accent {
  color: var(--accent);
}

.hero {
  padding-block: 46px 28px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.updated {
  margin: 10px 0 0;
  color: var(--text-faint);
  font-size: 13px;
}

main {
  display: grid;
  gap: 12px;
  padding-bottom: 72px;
}

.lead,
.legal-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.lead {
  margin-bottom: 4px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
}

.lead p:last-child,
.legal-section > :last-child {
  margin-bottom: 0;
}

.legal-section {
  padding: 20px;
}

h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}

p {
  margin: 0 0 14px;
}

ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

li {
  margin-bottom: 8px;
}

li::marker {
  color: var(--accent-dim);
}

strong {
  color: var(--text);
  font-weight: 700;
}

.consumer-note {
  margin-top: 16px;
  padding: 14px 16px;
  background: var(--surface-alt);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
}

.foot {
  padding-block: 30px 40px;
  background: var(--nav);
  border-top: 1px solid var(--border);
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  margin-bottom: 20px;
}

.foot-links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 600;
}

.foot-links a:hover {
  color: var(--accent);
}

.foot-mark {
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 800;
}

.foot-copy {
  color: var(--text-faint);
  font-size: 13px;
}

@media (max-width: 480px) {
  body {
    font-size: 15.5px;
  }

  .hero {
    padding-block: 34px 24px;
  }

  .lead,
  .legal-section {
    padding: 16px;
  }

  h2 {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .skip-link {
    transition: none;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    background: #fff;
    color: #111;
    font-size: 11pt;
  }

  .top,
  .foot,
  .skip-link {
    display: none;
  }

  .hero {
    padding-block: 0 20px;
  }

  .lead,
  .legal-section {
    break-inside: avoid;
    background: #fff;
    border-color: #bbb;
  }

  a {
    color: #111;
    text-decoration: underline;
  }
}


