:root {
  color-scheme: dark;
  --bg: #0f1114;
  --panel: rgba(24, 28, 33, 0.92);
  --line: #2a3038;
  --text: #f3efe7;
  --muted: #9ea6b0;
  --accent: #cf8c47;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(207, 140, 71, 0.18), transparent 28rem),
    linear-gradient(180deg, #0f1114 0%, #12161b 100%);
}

.shell {
  width: min(960px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 48px;
}

.hero,
.band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.hero {
  padding: 28px;
}

.hero-mark {
  width: 112px;
  height: 112px;
  margin: 0 0 16px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(44px, 8vw, 84px);
  line-height: 0.95;
}

.lede {
  max-width: 42rem;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.status-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(33, 38, 45, 0.92);
  font-size: 13px;
}

.bands {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.band {
  padding: 22px;
}

.band h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.band p {
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 720px) {
  .shell {
    width: calc(100vw - 24px);
    padding: 20px 0 32px;
  }

  .hero,
  .band {
    padding: 20px;
  }

  .hero-mark {
    width: 88px;
    height: 88px;
  }
}
