:root {
  color-scheme: light;
  --bg: #f5f8fb;
  --surface: #ffffff;
  --text: #17202a;
  --muted: #586779;
  --line: #d8e1ea;
  --teal: #126a79;
  --teal-dark: #0d5360;
  --amber: #b66b13;
  --green: #237a4b;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

a {
  color: var(--teal);
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 5;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 16px 24px;
}

.brand {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  height: 34px;
  width: 34px;
}

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

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

main {
  margin: 0 auto;
}

.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  margin: 0 auto;
  max-width: var(--max);
  padding: 64px 24px 56px;
}

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

h1 {
  font-size: clamp(40px, 7vw, 68px);
  line-height: 0.98;
  margin: 0;
}

h2 {
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 14px;
}

h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 16px;
}

.lead {
  font-size: 22px;
  margin-top: 22px;
  max-width: 680px;
}

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

.button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  display: inline-flex;
  font-weight: 800;
  min-height: 44px;
  padding: 10px 14px;
  text-decoration: none;
}

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

.button.primary:hover,
.button.primary:focus {
  background: var(--teal-dark);
}

.visual {
  align-self: center;
}

.visual img {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.14);
  display: block;
  max-width: 100%;
}

.band {
  border-bottom: 1px solid var(--line);
}

.band-inner {
  margin: 0 auto;
  max-width: var(--max);
  padding: 44px 24px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.card p {
  font-size: 15px;
  margin-bottom: 0;
}

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

.checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.checklist li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  list-style: none;
  padding: 16px;
}

.status {
  border-left: 4px solid var(--green);
}

.notice {
  background: #fff8ee;
  border-color: #f0d5ac;
  border-left: 4px solid var(--amber);
}

.legal-page {
  margin: 0 auto;
  max-width: 920px;
  padding: 48px 24px 72px;
}

.legal-page h1 {
  font-size: clamp(36px, 6vw, 56px);
}

.legal-page h2 {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 26px;
}

.legal-page ul {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  padding-left: 22px;
}

.legal-page li {
  margin: 8px 0;
}

.meta {
  color: var(--muted);
  font-size: 15px;
  margin-top: 10px;
}

.site-footer {
  background: #17202a;
  color: #ffffff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  padding: 28px 24px;
}

.site-footer a,
.site-footer p {
  color: #dce6ef;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 860px) {
  .hero-inner,
  .split,
  .grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 42px;
  }

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

  .nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .lead {
    font-size: 19px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: center;
  }
}
