:root {
  color-scheme: light;
  --ink: #161716;
  --muted: #62645f;
  --paper: #f5f4ef;
  --panel: #ffffff;
  --line: #dedbd2;
  --accent: #256f68;
  --accent-strong: #153f3b;
}

* {
  box-sizing: border-box;
}

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

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

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

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-weight: 750;
  font-size: 16px;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.24);
  font-size: 15px;
}

nav a {
  padding: 8px 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 110px clamp(20px, 5vw, 76px) 84px;
  background: #111;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent 45%);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  color: white;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

h1 {
  margin: 0;
  font-size: clamp(54px, 9vw, 112px);
  line-height: 0.9;
  font-weight: 820;
}

.lede {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
}

.actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.primary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  background: white;
  color: #10201e;
  font-size: 14px;
  font-weight: 720;
}

.secondary {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.status-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.status-band > div {
  min-width: 0;
  padding: 24px clamp(18px, 4vw, 56px);
  background: var(--panel);
}

.label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

strong {
  font-size: 18px;
}

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(1180px, calc(100% - 40px));
  margin: 56px auto;
}

article {
  padding: 2px 0;
}

h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

article p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  nav {
    gap: 4px;
  }

  .hero {
    min-height: 82vh;
    padding: 96px 22px 62px;
  }

  .status-band,
  .details {
    grid-template-columns: 1fr;
  }

  .details {
    margin: 38px auto;
  }

  footer {
    flex-direction: column;
  }
}
