:root {
  --bg: #fafaf8;
  --text: #171717;
  --muted: #676767;
  --line: #e7e7e2;
  --surface: #ffffff;
  --max: 760px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
}

.nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

main {
  padding: 34px 0 28px;
}

.hero {
  padding: 20px 0 30px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

h1, h2 {
  margin: 0;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.1rem, 9vw, 4.1rem);
  line-height: 0.98;
  max-width: 10ch;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.2rem, 4.5vw, 1.65rem);
  margin-bottom: 12px;
}

p, li {
  margin: 0 0 14px;
}

.lead {
  font-size: 1.06rem;
  color: #262626;
  max-width: 38rem;
}

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

.meta {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.meta a {
  font-weight: 600;
}

.sections {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.legal-copy p,
.legal-copy li {
  color: #2a2a2a;
}

footer {
  padding: 18px 0 36px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: inherit;
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--muted);
  text-decoration: none;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--text);
}

.list {
  padding-left: 20px;
  margin: 0 0 14px;
}

@media (min-width: 760px) {
  main {
    padding-top: 52px;
  }

  .hero {
    padding-bottom: 38px;
  }

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

  .section {
    padding: 28px;
  }
}
