:root {
  --bg: #09070f;
  --fg: #f1eeff;
  --muted: #b3a9d9;
  --card: #130f22;
  --line: #332a5c;
  --accent: #7df9ff;
  --accent2: #ff7ad9;
  --acid: #c3ff6f;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "IBM Plex Sans", Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    radial-gradient(1200px 600px at 10% -20%, #2a1459 0%, transparent 50%),
    radial-gradient(1000px 600px at 100% 0%, #12355a 0%, transparent 45%),
    var(--bg);
  color: var(--fg);
}
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,122,217,.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(125,249,255,.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 85%);
}
.wrap { width: min(940px, 92vw); margin: 0 auto; position: relative; z-index: 1; }
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.brand {
  color: var(--fg);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .02em;
  text-shadow: 0 0 18px rgba(125,249,255,.35);
}
nav a {
  color: var(--muted);
  margin-left: .9rem;
  text-decoration: none;
  font-size: .95rem;
}
nav a:hover { color: var(--accent); }
main { padding: 1.4rem 0 2.5rem; display: grid; gap: 1rem; }
.card {
  background: color-mix(in oklab, var(--card) 88%, #000 12%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 12px 50px rgba(0,0,0,.45);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% -20%;
  height: 120px;
  background: radial-gradient(circle, rgba(255,122,217,.2), transparent 65%);
  pointer-events: none;
}
.hero { transform: rotate(-0.35deg); }
.hero h1 {
  margin-top: .25rem;
  margin-bottom: .6rem;
  font-size: clamp(1.6rem, 5vw, 2.7rem);
}
.kicker {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--acid);
  font-size: .75rem;
  margin: 0;
}
.content { line-height: 1.78; color: #e3ddff; }
.clean { list-style: none; padding: 0; margin: 0; }
.clean li { padding: .58rem 0; border-bottom: 1px dashed #3a3264; }
.clean li:last-child { border-bottom: 0; }
h1,h2,h3 { line-height: 1.15; }
a { color: var(--accent); text-decoration-thickness: 1.5px; }
a:hover { color: #cfffff; }
.muted { color: var(--muted); }
.footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0 2rem;
  display:flex;
  justify-content:space-between;
  gap:1rem;
  flex-wrap:wrap;
}
.prose p { margin: .9rem 0; }
code {
  background:#0b1222;
  padding:.1rem .35rem;
  border-radius:6px;
  border:1px solid #273760;
}
