:root {
  color-scheme: dark;
  --bg: #0f172a;
  --card: #111827;
  --card-border: #263244;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 32rem),
    linear-gradient(135deg, #020617 0%, var(--bg) 100%);
  color: var(--text);
}

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

.card {
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: rgba(17, 24, 39, 0.84);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  padding: 28px;
  backdrop-filter: blur(16px);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

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

h1,
h2 {
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
}

h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.lead,
p,
li {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 720px;
  font-size: 1.05rem;
}

.status-pill {
  white-space: nowrap;
  border: 1px solid rgba(34, 197, 94, 0.45);
  border-radius: 999px;
  background: var(--accent-soft);
  color: #bbf7d0;
  padding: 10px 16px;
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.button {
  display: inline-flex;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #052e16;
  padding: 10px 16px;
  font-weight: 800;
  text-decoration: none;
}

code {
  display: inline-block;
  max-width: 100%;
  border: 1px solid var(--card-border);
  border-radius: 10px;
  background: #020617;
  color: #c4b5fd;
  padding: 4px 8px;
  overflow-wrap: anywhere;
}

.checks {
  display: grid;
  gap: 10px;
}

.check {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(2, 6, 23, 0.38);
}

.check span:last-child {
  color: #86efac;
  font-weight: 700;
}

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

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