:root {
  color-scheme: light;
  --ink: #14222a;
  --muted: #69757b;
  --line: #dce4e3;
  --paper: #fbfcfb;
  --panel: #ffffff;
  --teal: #2e807b;
  --coral: #d56f66;
  --soft: #eef6f4;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: var(--teal);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.shell {
  width: min(100% - 40px, 960px);
  margin: 0 auto;
}

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

.brand {
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
}

.hero {
  display: grid;
  justify-items: center;
  padding: 68px 0 58px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(52px, 8vw, 82px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-art {
  width: min(100%, 800px);
  margin: 42px 0 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  aspect-ratio: 16 / 9;
}

.hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lede {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

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

.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--panel);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  border-color: var(--teal);
  color: #ffffff;
  background: var(--teal);
}

.legal-main {
  max-width: 820px;
  padding: 54px 0 72px;
}

.legal-main h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(38px, 6vw, 60px);
  line-height: 1.04;
}

.legal-meta {
  margin: 0 0 34px;
  color: var(--muted);
}

.legal-content {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: #26353a;
  font-size: 16px;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content ul {
  padding-left: 22px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 22px;
  padding: 22px 0 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 960px);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-art {
    margin-top: 32px;
  }

  .lede {
    font-size: 18px;
  }

  .legal-content {
    padding: 20px;
    font-size: 15px;
  }
}