:root {
  color-scheme: dark;
  --bg: #070a08;
  --card: #0f1410;
  --border: #1f2a22;
  --text: #e8f5e6;
  --muted: #8aa38a;
  --accent: #56bb06;
  --accent-dim: rgba(86, 187, 6, 0.15);
  font-family: "Space Grotesk", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 20% 0%,
    rgba(86, 187, 6, 0.12),
    transparent 45%
  );
}

main {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
}

.eyebrow {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  margin: 0.4rem 0 0;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
}

.sub {
  margin: 0.75rem 0 0;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.5;
}

.sub a {
  color: var(--accent);
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

button {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.status {
  font-size: 0.8rem;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
}

.table-wrap {
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

th,
td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

th {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

td.mono {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: #1a2218;
  overflow: hidden;
  min-width: 120px;
}

.bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #3d8f04, var(--accent));
  border-radius: inherit;
}

footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--muted);
}

footer a {
  color: var(--accent);
}
