:root {
  color-scheme: dark;
  --bg: #101010;
  --panel: #1b1b1d;
  --text: #f3f0e9;
  --muted: #aaa8ad;
  --line: #343438;
  --accent: #d7332d;
  --accent-strong: #f1413a;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--accent-strong);
}

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

.hero {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 20px;
}

.eyebrow,
.policy-header p,
footer {
  color: var(--muted);
}

.eyebrow {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(56px, 12vw, 132px);
  line-height: 0.9;
}

.lead {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(20px, 4vw, 32px);
}

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

.policy {
  padding: 56px 0 40px;
}

.policy-header {
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  padding-bottom: 24px;
}

.policy-header h1 {
  margin: 28px 0 12px;
  font-size: clamp(42px, 8vw, 72px);
  line-height: 1;
}

.back-link {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

section {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.2;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
}

ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

footer {
  padding-top: 28px;
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 28px, 920px);
  }

  .policy {
    padding-top: 36px;
  }
}
