:root {
    --purple: #7c3aed;
    --purple-light: #a78bfa;
    --purple-dark: #6d28d9;
    --bg: #06060b;
    --bg-card: #0f0f1a;
    --border: #1a1a2e;
    --text: #e0e0e0;
    --text-dim: #888;
    --text-dimmer: #555;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: radial-gradient(rgba(124, 58, 237, 0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

a { color: var(--purple-light); text-decoration: none; }
a:hover { color: #fff; }

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(6, 6, 11, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 26, 46, 0.5);
}

.nav-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.nav-brand a {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 24px;
    font-size: 14px;
}

.nav-links a {
    color: var(--text-dim);
}

.nav-links a:hover {
    color: #fff;
}

main {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    position: relative;
    z-index: 1;
}

h1 {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.updated {
    color: var(--text-dimmer);
    font-size: 13px;
    margin-bottom: 40px;
}

h2 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 12px;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin: 24px 0 8px;
}

p { margin-bottom: 14px; color: var(--text); }

p.lead {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 28px;
}

ul {
    margin: 12px 0 20px 20px;
    color: var(--text);
}

li { margin-bottom: 8px; }

code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    background: var(--bg-card);
    color: var(--purple-light);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    border: 1px solid var(--border);
}

.callout {
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-left: 3px solid var(--purple);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 24px 0;
}

.callout strong { color: #fff; }

.programs {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 24px;
    margin: 16px 0;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 13px;
}

.programs div { padding: 4px 0; }
.programs .label { color: var(--text-dim); }
.programs .addr { color: var(--purple-light); word-break: break-all; }

footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
    text-align: center;
    color: var(--text-dimmer);
    font-size: 13px;
    position: relative;
    z-index: 1;
}

footer a { color: #666; margin: 0 10px; }
footer a:hover { color: var(--purple-light); }
