/* === SCROLLBAR === */
html { scrollbar-width: thin; scrollbar-color: rgba(8,203,0,0.3) var(--bg); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(8,203,0,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(8,203,0,0.5); }

/* === SHARED VARIABLES === */
:root {
    --serif: "Plantin MT Pro", Georgia, serif;
    --bg: #000000;
    --accent: #08CB00;
    --accent-dim: rgba(8,203,0,0.1);
    --accent-dark: #253900;
    --text: #EEEEEE;
    --text-dim: rgba(238,238,238,0.5);
    --text-muted: rgba(238,238,238,0.3);
    --border: rgba(238,238,238,0.08);
    --border-bright: rgba(238,238,238,0.12);
}

/* === BASE RESET === */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* === BACKGROUND === */
.bg {
    position: fixed; inset: 0; z-index: -2;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-dim) 0%, transparent 50%),
        radial-gradient(circle, rgba(238,238,238,0.08) 1px, transparent 1px);
    background-size: auto, 30px 30px;
}

/* === HEADER === */
header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 24px; height: 64px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.logo { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; text-decoration: none; color: var(--text); letter-spacing: -0.5px; }
.logo span { color: var(--accent); }
nav { display: flex; gap: 4px; align-items: center; }
nav a {
    color: var(--text-dim); text-decoration: none; font-size: 0.875rem; font-weight: 500;
    padding: 8px 14px; border-radius: 8px; transition: all 0.2s;
}
nav a:hover { color: var(--text); background: rgba(238,238,238,0.05); }
nav a.cta { background: var(--accent); color: var(--bg); font-weight: 600; }
nav a.cta:hover { background: var(--accent-dark); color: var(--text); }

/* === BUTTONS === */
.btn {
    background: var(--accent); color: var(--bg);
    padding: 10px 20px; border-radius: 8px;
    font-weight: 600; font-size: 0.875rem; text-decoration: none;
    display: inline-block; transition: all 0.2s;
}
.btn:hover { background: #06a600; transform: translateY(-2px); }

/* === CARDS === */
.card {
    background: rgba(238,238,238,0.02);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    text-decoration: none; color: inherit;
    transition: all 0.3s;
}
.card:hover { border-color: rgba(8,203,0,0.3); transform: translateY(-3px); }
.card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.card p { color: var(--text-dim); font-size: 0.85rem; }

/* === SECTION LABEL === */
.section-label {
    font-family: var(--serif);
    font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* === FOOTER === */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border);
}
footer .links { display: flex; justify-content: center; gap: 24px; margin-bottom: 14px; flex-wrap: wrap; }
footer a { color: var(--text-dim); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
footer a:hover { color: var(--accent); }
footer p { color: var(--text-muted); font-size: 0.8rem; }

/* === RESPONSIVE === */
@media (max-width: 600px) {
    .wrap { padding: 100px 16px 60px; }
}