:root {
  color-scheme: dark;
  --bg: #101624;
  --surface: #182235;
  --surface-strong: #22314b;
  --text: #f7fafc;
  --muted: #b7c2d4;
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --line: #2c3b56;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(16, 22, 36, 0.94);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.brand {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
}

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

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent);
}

.hero {
  display: grid;
  min-height: 62vh;
  place-items: center;
  padding: 64px 16px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(16, 22, 36, 0.42), rgba(16, 22, 36, 0.9)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-content {
  width: min(1040px, 100%);
}

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

h1,
h2 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 12vw, 6rem);
}

h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

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

.lede {
  max-width: 660px;
  margin-top: 18px;
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: #07111d;
}

.button.secondary {
  background: rgba(24, 34, 53, 0.82);
  color: var(--text);
}

.content-section {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

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

.policy-page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 56px;
}

.policy {
  padding: 0;
}

.policy h1 {
  font-size: clamp(2.25rem, 8vw, 4rem);
}

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

.updated {
  margin-top: 10px;
}

.footer {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 36px;
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero {
    min-height: 58vh;
  }
}
