:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #071018;
  color: #e9f4f8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #071018;
}

.shell {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  border-bottom: 1px solid rgba(233, 244, 248, 0.16);
  padding-bottom: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #76c7df;
  font-size: 13px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.95;
  font-weight: 750;
}

h1 strong {
  color: #76c7df;
  font-weight: 850;
}

.lede {
  max-width: 760px;
  color: #b8c9d0;
  font-size: 20px;
  line-height: 1.55;
}

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

a {
  color: #071018;
  background: #76c7df;
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
}

a:nth-child(2),
a:nth-child(3) {
  color: #e9f4f8;
  background: rgba(233, 244, 248, 0.1);
}

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

article,
.release-box {
  border: 1px solid rgba(233, 244, 248, 0.14);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.035);
}

h2 {
  margin: 0 0 10px;
  font-size: 18px;
}

p,
li {
  color: #b8c9d0;
  line-height: 1.55;
}

code {
  color: #e9f4f8;
}

@media (max-width: 760px) {
  .status-grid {
    grid-template-columns: 1fr;
  }
}
