:root {
  color-scheme: dark;
  --bg: #0a0a0b;
  --panel: #0f1113;
  --text: #e9eaee;
  --muted: #9aa2ad;
  --border: rgba(255, 255, 255, 0.08);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

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

.bg-glow {
  display: none;
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8vw 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.page {
  position: relative;
  z-index: 1;
  padding: 48px 8vw 80px;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0 0 8px;
}

.dek {
  color: var(--muted);
  margin-bottom: 24px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.item {
  text-decoration: none;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.item:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 211, 255, 0.35);
}

.title {
  color: var(--text);
  font-size: 1.05rem;
}

.meta {
  color: var(--muted);
  font-size: 0.85rem;
}
