:root {
  color-scheme: light;
  --ink: #101514;
  --muted: #53605c;
  --paper: #f4f1ea;
  --panel: #ffffff;
  --line: #d9ded8;
  --green: #4aa477;
  --green-dark: #1f6d51;
  --amber: #d99a39;
  --charcoal: #182021;
  --shadow: 0 24px 70px rgba(16, 21, 20, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 24px clamp(20px, 6vw, 72px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}

.brand,
.site-header nav {
  align-items: center;
  display: flex;
}

.brand {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
}

.brand-mark {
  background: linear-gradient(135deg, var(--green), var(--amber));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  display: inline-block;
  height: 28px;
  width: 28px;
}

.site-header nav {
  backdrop-filter: blur(16px);
  background: rgba(15, 21, 21, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  gap: 4px;
  padding: 4px;
}

.site-header nav a {
  border-radius: 6px;
  font-size: 14px;
  padding: 9px 12px;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  outline: none;
}

.hero {
  isolation: isolate;
  min-height: 86vh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
  z-index: -3;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 13, 13, 0.92) 0%, rgba(9, 13, 13, 0.72) 37%, rgba(9, 13, 13, 0.18) 76%),
    linear-gradient(0deg, rgba(9, 13, 13, 0.36) 0%, rgba(9, 13, 13, 0) 42%);
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero-content {
  color: #fff;
  max-width: 680px;
  padding: 180px clamp(20px, 6vw, 72px) 86px;
}

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

.hero h1 {
  font-size: 104px;
  line-height: 0.95;
  margin: 0;
}

.lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  line-height: 1.45;
  margin: 28px 0 0;
  max-width: 600px;
}

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

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.button svg,
.card-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.button svg {
  height: 20px;
  width: 20px;
}

.primary {
  background: #f6f2e8;
  color: #151a19;
}

.primary:hover,
.primary:focus-visible {
  background: #fffaf0;
}

.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.secondary:hover,
.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
}

.work-band,
.status-band {
  padding: 76px clamp(20px, 6vw, 72px);
}

.section-inner {
  margin: 0 auto;
  max-width: 1120px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 20px;
  grid-template-columns: 0.7fr 1.3fr;
  margin-bottom: 32px;
}

.section-heading h2,
.status-layout h2 {
  font-size: 34px;
  line-height: 1.12;
  margin: 0;
}

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 50px rgba(16, 21, 20, 0.06);
  min-height: 236px;
  padding: 26px;
}

.card-icon {
  align-items: center;
  background: #eaf2ec;
  border: 1px solid #ccddd2;
  border-radius: 8px;
  color: var(--green-dark);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.card-icon svg {
  height: 24px;
  width: 24px;
}

.card h3 {
  font-size: 21px;
  margin: 24px 0 10px;
}

.card p,
.status-layout p,
.status-list dd {
  color: var(--muted);
}

.card p {
  margin: 0;
}

.status-band {
  background: var(--charcoal);
  color: #fff;
}

.status-layout {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 1fr;
}

.status-layout p {
  font-size: 18px;
  margin: 18px 0 0;
}

.status-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.status-list div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  min-height: 104px;
  padding: 18px;
}

.status-list dt {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-list dd {
  margin: 10px 0 0;
}

.site-footer {
  align-items: center;
  background: #0f1414;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 72px);
}

.site-footer a {
  color: #fff;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
    padding: 18px 20px;
  }

  .site-header nav {
    max-width: calc(100vw - 40px);
    overflow-x: auto;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-content {
    padding: 150px 20px 54px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .lead {
    font-size: 19px;
  }

  .section-heading,
  .status-layout,
  .cards {
    grid-template-columns: 1fr;
  }

  .work-band,
  .status-band {
    padding: 58px 20px;
  }

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

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

  .site-header nav a {
    padding: 8px 10px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: center;
  }

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