:root {
  color-scheme: dark;
  --bg: #08090b;
  --panel: #15171c;
  --panel-2: #1d2027;
  --text: #f7f4ef;
  --muted: #b5b0aa;
  --line: #343842;
  --accent: #ff4d5f;
  --accent-2: #8f7cff;
}

* {
  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: inherit;
}

.page,
.legal {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 72px 0 48px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(44px, 8vw, 82px);
}

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

p {
  margin: 0 0 18px;
  color: var(--muted);
}

.lede {
  max-width: 680px;
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--accent);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: var(--panel-2);
  border: 1px solid var(--line);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 20px 0 56px;
}

article,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.notice {
  margin-bottom: 56px;
}

.legal {
  max-width: 780px;
  padding: 72px 0 40px;
}

.legal h1 {
  font-size: clamp(40px, 7vw, 64px);
  margin-bottom: 8px;
}

.legal h2 {
  margin-top: 34px;
}

.updated {
  color: var(--muted);
  margin-bottom: 32px;
}

footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 22px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

footer a {
  color: var(--text);
  text-decoration: none;
}

@media (max-width: 760px) {
  .page,
  .legal,
  footer {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

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