:root {
  color-scheme: dark;
  --bg: #0d0d0d;
  --panel: #161616;
  --text: #ffffff;
  --muted: #b8c3d1;
  --accent: #c17e24;
  --action: #b94a1a;
  --border: #2d3647;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.page {
  min-height: 100vh;
}

.hero,
.band {
  width: min(1100px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  padding: 72px 0 40px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
p,
li {
  margin-top: 0;
}

h1 {
  font-size: 2.4rem;
  line-height: 1.05;
  max-width: 12ch;
}

.lede,
.muted,
li {
  color: var(--muted);
  line-height: 1.6;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: var(--action);
  border-color: var(--action);
}

.button.secondary {
  background: transparent;
  border-color: var(--border);
}

.band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 28px 0 32px;
  border-top: 1px solid var(--border);
}

.status-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.list {
  padding-left: 18px;
}

code {
  font-family: Consolas, "Courier New", monospace;
  color: var(--accent);
}

@media (max-width: 800px) {
  .hero {
    padding-top: 48px;
  }

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

  h1 {
    font-size: 2rem;
  }
}
