:root {
  color-scheme: light;
  --ink: #17323b;
  --teal: #087b83;
  --green: #5e875f;
  --gold: #f6aa2f;
  --line: #d9e5e3;
  --bg: #f7faf9;
  --white: #ffffff;
}

* {
  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.55;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 6vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}

.logo {
  width: min(260px, 56vw);
  height: auto;
}

nav {
  display: flex;
  gap: 22px;
  font-weight: 600;
}

.hero {
  min-height: 58vh;
  display: grid;
  align-items: center;
  padding: clamp(56px, 9vw, 120px) clamp(20px, 6vw, 72px);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.84) 58%, rgba(247, 250, 249, 0.75) 100%),
    radial-gradient(circle at 85% 15%, rgba(246, 170, 47, 0.24), transparent 30%);
}

.hero > div {
  max-width: 760px;
}

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

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

h1 {
  margin-bottom: 18px;
  max-width: 700px;
  font-size: clamp(2.45rem, 6vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.lede {
  max-width: 700px;
  font-size: clamp(1.1rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
}

.button:hover {
  text-decoration: none;
}

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

.section {
  padding: clamp(48px, 7vw, 84px) clamp(20px, 6vw, 72px);
}

.muted {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

article {
  min-height: 168px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

footer {
  padding: 28px clamp(20px, 6vw, 72px);
  color: #476169;
  font-size: 0.94rem;
}

footer p {
  max-width: 920px;
}

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

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

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