:root {
  color-scheme: dark;
  --bg: #07111f;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-border: rgba(255, 255, 255, 0.15);
  --text: #f7fbff;
  --muted: #a9b7c6;
  --accent: #f6821f;
  --accent-2: #ffd166;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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(246, 130, 31, 0.24), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(71, 163, 255, 0.18), transparent 30rem),
    var(--bg);
  color: var(--text);
}

.page {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 40px;
}

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

.eyebrow {
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.subtitle {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--accent);
  color: #1b0d02;
}

.secondary {
  border: 1px solid var(--panel-border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.card {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

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

.status-grid > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

strong {
  font-size: 1.1rem;
}

.muted {
  color: var(--muted);
}

pre {
  overflow: auto;
  margin: 16px 0 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.28);
  color: #d7efff;
  line-height: 1.5;
}

footer {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
  color: var(--muted);
}

@media (max-width: 700px) {
  .page {
    padding-top: 40px;
  }

  .hero {
    padding-top: 40px;
  }

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