:root {
  --bg: #0b0e14;
  --fg: #e7ebf3;
  --muted: #a8b0c0;
  --panel: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #7dd3fc;
  --warn: #fbbf24;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

html, body { height: 100%; }
body {
  margin: 0;
  background: radial-gradient(900px 600px at 20% -10%, rgba(125, 211, 252, 0.18), transparent 60%),
              radial-gradient(700px 500px at 90% 10%, rgba(251, 191, 36, 0.14), transparent 55%),
              var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.wrap { max-width: 1100px; padding: 24px 20px; margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(11, 14, 20, 0.7);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  color: var(--fg);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.hint { color: var(--muted); font-size: 14px; }

h1 { font-size: 30px; margin: 16px 0 8px; }
.lead { color: var(--muted); margin: 0 0 18px; max-width: 80ch; }

.table {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
}
.thead, .trow {
  display: grid;
  grid-template-columns: 72px 1fr 120px;
}
.thead {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: #cdd5e6;
}
.thead > div, .trow > div { padding: 12px 14px; }
.trow { border-bottom: 1px solid rgba(255,255,255,0.06); }
.trow:last-child { border-bottom: none; }

.num { color: #cdd5e6; font-variant-numeric: tabular-nums; }
.title { color: var(--fg); }
.status { display: flex; align-items: center; }
.soon { color: var(--muted); }
.link { color: var(--accent); text-decoration: none; }
.link:hover { text-decoration: underline; }

.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.method-title { color: var(--muted); margin: 6px 0 18px; }

.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  max-width: 90ch;
}
.card.warn { border-color: rgba(251, 191, 36, 0.35); }
.card-title { font-weight: 700; margin-bottom: 10px; }
code { font-family: var(--mono); font-size: 0.95em; }
.muted { color: var(--muted); }

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 720px) {
  .thead, .trow { grid-template-columns: 56px 1fr 90px; }
  .hint { display: none; }
}

