:root {
  color-scheme: light;
  --bg: #f4f7f7;
  --surface: #ffffff;
  --ink: #1e2528;
  --muted: #5d686d;
  --line: #d6dedf;
  --accent: #176b87;
  --accent-strong: #0d4f68;
  --warm: #d97642;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--accent-strong);
}

.site-header,
.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

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

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

.site-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--accent-strong);
}

.hero,
.page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 84px 0 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--warm);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: 5.75rem;
  line-height: 0.95;
}

.lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1.22rem;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 750;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--accent-strong);
}

.section-band {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.section-inner {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0;
}

.section-inner h2,
.page h1 {
  margin: 0 0 18px;
  font-size: 3.3rem;
  line-height: 1.05;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.feature-list li {
  border-top: 3px solid var(--accent);
  padding-top: 14px;
}

.feature-list strong {
  display: block;
  margin-bottom: 6px;
}

.feature-list span,
.page p,
.page li {
  color: var(--muted);
}

.page {
  padding: 64px 0;
}

.page h2 {
  margin: 40px 0 12px;
  font-size: 1.45rem;
}

.page ul {
  padding-left: 1.2rem;
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding: 56px 0 48px;
  }

  h1 {
    font-size: 3.2rem;
  }

  .section-inner h2,
  .page h1 {
    font-size: 2.25rem;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }
}
