:root {
  color-scheme: dark;
  --bg: #080b12;
  --panel: rgba(255, 255, 255, 0.07);
  --text: #f5f7fb;
  --muted: #aab3c5;
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --border: rgba(255, 255, 255, 0.14);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.24), transparent 36rem), var(--bg);
  color: var(--text);
}

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

.hero, .panel, .stat {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.hero { padding: 40px; position: relative; overflow: hidden; }
.eyebrow { color: var(--accent); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; }
h1 { margin: 12px 0; font-size: clamp(2rem, 6vw, 4.5rem); line-height: 1; }
h2 { margin-top: 0; }
p, li { color: var(--muted); line-height: 1.8; }

.status-pill {
  display: inline-flex;
  margin-top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #082f49;
  background: var(--accent);
  font-weight: 700;
}
.status-pill.error { color: #450a0a; background: #fca5a5; }

.grid { display: grid; gap: 16px; margin: 16px 0; }
.stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stat { padding: 24px; }
.stat span { display: block; color: var(--muted); margin-bottom: 8px; }
.stat strong { font-size: clamp(1.5rem, 4vw, 2.4rem); }
.panel { padding: 28px; margin-top: 16px; }
.muted-panel { background: rgba(255, 255, 255, 0.045); }
.method-list { display: grid; gap: 12px; margin-top: 20px; }
.method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}
.method a {
  color: #02131d;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  text-decoration: none;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.updated { font-size: 0.88rem; }

@media (max-width: 720px) {
  .shell { width: min(100% - 20px, 960px); padding: 24px 0; }
  .hero, .panel, .stat { border-radius: 18px; }
  .hero, .panel { padding: 22px; }
  .stats { grid-template-columns: 1fr; }
  .method { align-items: flex-start; flex-direction: column; }
}
