:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5f6b78;
  --line: #dce3e9;
  --paper: #f8faf9;
  --panel: #ffffff;
  --green: #17725f;
  --blue: #2d63c8;
  --shadow: 0 18px 48px rgba(31, 43, 58, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(220, 227, 233, 0.86);
  background: rgba(248, 250, 249, 0.9);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}

nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-height: calc(78vh - 74px);
  padding: clamp(64px, 10vw, 128px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(125deg, rgba(45, 99, 200, 0.08), transparent 42%),
    linear-gradient(24deg, rgba(23, 114, 95, 0.12), transparent 48%),
    var(--paper);
}

.hero-copy {
  max-width: 880px;
}

.status-card {
  align-self: end;
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.status-card span {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-card strong {
  font-size: 28px;
  line-height: 1.1;
}

.status-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

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

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(52px, 9vw, 106px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.07;
  letter-spacing: 0;
}

.lede {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(23px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.18;
}

.hero-copy p:not(.eyebrow):not(.lede),
.content-grid p,
.wide-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 12px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(45, 99, 200, 0.22);
}

.button:hover {
  background: #254f9f;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.focus-section {
  background: #f3f7f6;
}

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

.focus-grid span {
  display: flex;
  min-height: 112px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.stage-section {
  background: #fff;
}

.wide-copy {
  max-width: 880px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

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

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

  .hero,
  .content-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  nav {
    gap: 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 52px;
  }
}
