:root {
  color-scheme: dark;
  --background: #0f100e;
  --surface: #191b18;
  --line: #45473f;
  --bone: #f3eee4;
  --muted: #b7b5ad;
  --amber: #e2a923;
  --purple: #4a1d5e;
  --green: #93af5e;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--bone);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--background);
  background-size: 48px 48px;
}

header,
main,
footer {
  width: min(920px, calc(100% - 36px));
  margin-inline: auto;
}

header {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 34px 0 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  gap: 13px;
  align-items: center;
  color: var(--bone);
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

nav a,
main a,
footer a {
  color: var(--amber);
}

main {
  padding: 54px 0 70px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 8vw, 72px);
  line-height: .95;
  text-transform: uppercase;
}

.intro {
  max-width: 760px;
  margin: 22px 0 44px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.legal-section {
  margin-top: 18px;
  padding: 26px;
  background: rgba(25,27,24,.95);
  border: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 14px;
  font-size: 21px;
  text-transform: uppercase;
}

.legal-section h3 {
  margin: 24px 0 8px;
  color: var(--green);
  font-size: 15px;
  text-transform: uppercase;
}

.legal-section p,
.legal-section li {
  color: #d0cdc4;
  line-height: 1.7;
}

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

.notice {
  padding-left: 16px;
  border-left: 3px solid var(--purple);
}

footer {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 26px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
  header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-section {
    padding: 20px;
  }
}
