:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5d6875;
  --paper: #fbfaf7;
  --line: #d8dee5;
  --accent: #116a7b;
  --accent-strong: #0c4f5c;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px;
}

.brand {
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.brand:hover {
  color: var(--accent);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 24px 72px;
}

.hero {
  display: grid;
  align-content: center;
  min-height: 62vh;
  max-width: 760px;
  padding: 32px 0 72px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1;
}

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

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
}

footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 42px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

  .hero {
    min-height: 56vh;
    padding-top: 18px;
  }
}
