:root {
  color-scheme: dark;
  --bg: #0d0f0f;
  --panel: #171919;
  --text: #f5f1e8;
  --muted: #b3aaa0;
  --line: rgba(245, 241, 232, 0.14);
  --accent: #18c6be;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 75% 15%, rgba(24, 198, 190, 0.16), transparent 28rem), var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

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

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

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.links a {
  text-decoration: none;
}

.hero {
  min-height: 62vh;
  display: grid;
  align-content: center;
  padding: 56px 0;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 12px 0 18px;
  font-family: ui-serif, "New York", Georgia, serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

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

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

.button.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

article,
.legal section {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}

h2,
h3 {
  margin: 0 0 10px;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.legal {
  max-width: 860px;
}

.legal h1 {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
}

.legal section {
  margin: 16px 0;
}

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

@media (max-width: 820px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .page {
    width: min(100% - 28px, 1100px);
  }
}
