:root {
  color-scheme: dark;
  --bg: #111318;
  --bg-panel: #181c24;
  --surface: #1f2430;
  --surface-alt: #252b38;
  --text: #e4e8ef;
  --muted: #8d95a5;
  --gear: #3d8bfd;
  --gear-dim: rgba(61, 139, 253, 0.14);
  --staker: #f0a030;
  --staker-dim: rgba(240, 160, 48, 0.12);
  --border: rgba(228, 232, 239, 0.08);
  --grid: rgba(61, 139, 253, 0.06);
  --radius: 6px;
  --font-display:
    "SF Mono",
    "Menlo",
    "Consolas",
    monospace;
  --font-body:
    "Helvetica Neue",
    Helvetica,
    Arial,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    radial-gradient(ellipse 60% 40% at 80% 0%, var(--gear-dim), transparent 55%),
    radial-gradient(ellipse 40% 30% at 0% 100%, var(--staker-dim), transparent 50%),
    var(--bg);
  background-size:
    32px 32px,
    32px 32px,
    auto,
    auto,
    auto;
}

.backdrop__cog {
  position: absolute;
  top: 6%;
  right: 5%;
  width: 100px;
  height: 100px;
  border: 3px dashed rgba(61, 139, 253, 0.2);
  border-radius: 50%;
  animation: spin 48s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.page {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 80px;
}

.hero {
  margin-bottom: 36px;
}

.hero__panel {
  padding: 32px 28px 28px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gear);
  border-radius: var(--radius);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 4px 10px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--staker);
  background: var(--staker-dim);
  border: 1px solid rgba(240, 160, 48, 0.25);
  border-radius: 3px;
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.brand-title .gear {
  color: var(--gear);
}

.brand-title .staker {
  color: var(--staker);
}

h1 {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin-top: 16px;
  max-width: 54ch;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.75;
}

.updated {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: rgba(61, 139, 253, 0.8);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 20px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.highlights li:nth-child(1) {
  border-top: 2px solid var(--gear);
}

.highlights li:nth-child(2) {
  border-top: 2px solid var(--staker);
}

.highlights li:nth-child(3) {
  border-top: 2px solid rgba(228, 232, 239, 0.2);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.highlights span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.card {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gear);
}

.card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

.card p + p {
  margin-top: 10px;
}

.card--wide {
  grid-column: 1 / -1;
  background: var(--surface-alt);
  border-color: rgba(61, 139, 253, 0.15);
}

a {
  color: var(--gear);
  text-decoration: none;
  border-bottom: 1px solid rgba(61, 139, 253, 0.35);
}

a:hover {
  color: var(--staker);
  border-bottom-color: rgba(240, 160, 48, 0.45);
}

.footer {
  margin-top: 36px;
  padding: 20px 22px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer strong {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text);
}

.footer strong .gear {
  color: var(--gear);
}

.footer strong .staker {
  color: var(--staker);
}

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

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

  .card--wide {
    grid-column: auto;
  }

  .backdrop__cog {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 32px 0 56px;
    width: min(100% - 24px, 940px);
  }

  .hero__panel {
    padding: 24px 20px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .backdrop__cog {
    animation: none;
  }
}
