:root {
  color-scheme: light;
  --ink: #183433;
  --muted: #58716b;
  --paper: #f7faf6;
  --line: #d7e3dc;
  --leaf: #477f70;
  --clay: #c85f3e;
  --gold: #d4aa45;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 3px solid currentColor;
  border-left-color: var(--gold);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  text-decoration: none;
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 48, 47, 0.88), rgba(20, 48, 47, 0.48) 52%, rgba(20, 48, 47, 0.12)),
    linear-gradient(0deg, rgba(20, 48, 47, 0.7), rgba(20, 48, 47, 0.04) 42%);
}

.hero-content {
  width: min(760px, calc(100% - 40px));
  margin: 0 0 clamp(56px, 10vh, 104px) clamp(20px, 7vw, 96px);
  color: var(--white);
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2.2vw, 23px);
}

.primary-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.intro,
.process,
.status {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(52px, 8vw, 92px) 0;
}

.intro-text h2,
.process h2,
.status h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-text p,
.status p {
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
}

.signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
}

.signals div,
.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.signals div {
  min-height: 132px;
  padding: 18px;
}

.signals strong {
  display: block;
  color: var(--clay);
  font-size: 28px;
  line-height: 1;
}

.signals span {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 700;
}

.process {
  padding: clamp(48px, 7vw, 82px) 0;
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.process-grid article {
  min-height: 218px;
  padding: 24px;
}

.tile-number {
  color: var(--clay);
  font-weight: 900;
}

.process-grid h3 {
  margin: 26px 0 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.process-grid p {
  color: var(--muted);
}

.status {
  padding: clamp(48px, 7vw, 82px) 0 clamp(64px, 9vw, 104px);
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding-top: 16px;
  }

  .nav {
    gap: 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    margin-left: 20px;
    margin-bottom: 64px;
  }

  .intro,
  .process-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .site-header {
    flex-direction: column;
    gap: 10px;
  }

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

  h1 {
    font-size: 44px;
  }

  .hero-copy,
  .intro-text p,
  .status p {
    font-size: 16px;
  }
}

