:root {
  --bg:      #0a0e14;
  --panel:   #121822;
  --border:  #1f2a38;
  --text:    #dfe7f0;
  --muted:   #7d8ba0;
  --accent:  #35e0c8;
  --accent2: #4aa8ff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60vw 60vw at 15% -10%, rgba(53,224,200,.14), transparent 60%),
    radial-gradient(50vw 50vw at 100% 0%, rgba(74,168,255,.12), transparent 55%);
  pointer-events: none;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 10vh 24px 64px;
}

.logo {
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: lowercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.15;
  margin: 0 0 .5em;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  color: var(--muted);
  max-width: 44ch;
  margin: 0 0 2em;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9em;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .1em .4em;
}

.cta {
  display: inline-block;
  padding: .7em 1.4em;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #04121a;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  transition: transform .12s ease, box-shadow .12s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px -8px rgba(53,224,200,.5);
}

.panel {
  margin-top: 56px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
}

.panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-head h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin: 0;
}

.count {
  font-size: .85rem;
  color: var(--muted);
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-top: 1px solid var(--border);
}

.list li:first-child { border-top: 0; }

.list a {
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.list .meta {
  flex: none;
  font-size: .8rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

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

.all {
  display: inline-block;
  margin-top: 14px;
  font-size: .9rem;
  color: var(--accent);
  text-decoration: none;
}

.all:hover { text-decoration: underline; }

.foot {
  margin-top: 48px;
  font-size: .8rem;
  color: var(--muted);
}

.foot .dot { margin: 0 .5em; }

@media (max-width: 480px) {
  .wrap { padding-top: 8vh; }
  .list li { flex-direction: column; gap: 2px; }
}
