:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5f6c7b;
  --paper: #f6f8fb;
  --panel: #ffffff;
  --line: #d8dee8;
  --blue: #2f6fbb;
  --green: #287a62;
  --gold: #b87524;
  --red: #a9493e;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
}

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

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 21, 31, 0.86), rgba(13, 21, 31, 0.48) 46%, rgba(13, 21, 31, 0.12));
}

.nav {
  position: absolute;
  top: 22px;
  right: 28px;
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
}

.nav a {
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.45);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1120px) / 2));
  padding: 92px 0 116px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 800;
}

.eyebrow {
  color: #b9e4ff;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.04;
  overflow-wrap: break-word;
}

h1 {
  font-size: 96px;
  max-width: 680px;
}

h2 {
  font-size: 52px;
}

.lede {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.88);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.button--primary {
  color: #102033;
  background: #d7f0ff;
  border-color: #d7f0ff;
}

.band {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.intro {
  background: #fff;
}

.wrap {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.section-kicker {
  color: var(--green);
}

.prose {
  color: var(--muted);
  font-size: 18px;
}

.prose p:first-child {
  margin-top: 0;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.status-card {
  min-height: 190px;
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.status-card strong {
  display: block;
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.status-card p {
  color: var(--muted);
  margin: 14px 0 0;
}

.split {
  background: #eef3f5;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: 18px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(40, 122, 98, 0.14);
}

.release {
  background: #17202a;
  color: #fff;
}

.release .section-kicker,
.release .prose {
  color: #b9e4ff;
}

.commands {
  display: grid;
  gap: 12px;
}

.commands code {
  display: block;
  overflow-wrap: anywhere;
  padding: 18px;
  background: #0d141c;
  border: 1px solid #314154;
  border-radius: 8px;
  color: #e7f2ff;
  font-size: 15px;
}

.links {
  padding: 34px 0;
  background: #fff;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.link-row a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 820px) {
  .hero {
    min-height: 84vh;
    align-items: flex-end;
  }

  .hero img {
    object-position: 55% center;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(13, 21, 31, 0.18), rgba(13, 21, 31, 0.88) 60%);
  }

  .nav {
    left: 22px;
    right: auto;
  }

  .hero__content {
    width: calc(100% - 44px);
    margin: 0 auto;
    padding-bottom: 64px;
  }

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

  .button {
    width: min(100%, 220px);
  }

  .two-col,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .status-card {
    min-height: 0;
  }

  h1 {
    max-width: 8ch;
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .lede {
    max-width: 30ch;
    font-size: 19px;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 44px;
  }
}
