:root {
  color-scheme: light;
  --ink: #1d2530;
  --muted: #566272;
  --line: #d6dde5;
  --paper: #f6f8fa;
  --blue: #5b7188;
  --green: #64735d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
}

.site-header {
  width: 100%;
  padding: 18px clamp(18px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.brand img {
  width: min(260px, 46vw);
  height: auto;
  display: block;
}

nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 650;
}

nav a,
.text-link {
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

nav a:hover,
.text-link:hover {
  border-bottom-color: var(--green);
}

main {
  flex: 1;
}

.hero {
  min-height: 64vh;
  display: grid;
  align-items: center;
  padding: clamp(56px, 10vw, 108px) clamp(20px, 6vw, 88px);
  background:
    linear-gradient(110deg, rgba(246, 248, 250, 0.96), rgba(246, 248, 250, 0.72) 58%, rgba(91, 113, 136, 0.2)),
    radial-gradient(circle at 86% 22%, rgba(100, 115, 93, 0.18), transparent 34%),
    var(--paper);
}

.hero.compact {
  min-height: 52vh;
}

.hero-inner,
.content {
  width: min(820px, 100%);
}

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 8vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.lede {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.overview {
  padding: clamp(48px, 8vw, 86px) clamp(20px, 6vw, 88px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.overview p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 750;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font-weight: 750;
  text-decoration: none;
}

.button:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.site-footer {
  padding: 24px clamp(18px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
}

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

  .brand img {
    width: min(230px, 80vw);
  }

  nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }
}
