@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
    --bg: #0b0c10;
    --panel: rgba(17,19,24,0.9);
    --panel-2: rgba(17,19,24,0.55);
    --accent: #88ffcc;
    --accent-soft: rgba(136,255,204,0.12);
    --border: rgba(255,255,255,0.06);
    --text: #ffffff;
    --muted: #a6a6a6;
    --dim: #777;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(136,255,204,0.10), transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(136,255,204,0.06), transparent 30%),
        linear-gradient(to bottom, #090b10, #0f131b);
    animation: bgMove 12s ease-in-out infinite;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
}

@keyframes bgMove {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* ── NAV ─────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: rgba(11,12,16,0.65);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.brand img { width: 32px; height: 32px; object-fit: contain; }


.nav-links {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

.nav-btn {
    background: var(--accent);
    color: #000 !important;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-btn:hover { background: #66cca3; }

/* ── CONTAINER ───────────────────────────────────── */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px 80px;
}

/* ── GRADIENT TEXT ───────────────────────────────── */
.gradient {
    background: linear-gradient(90deg, #88ffcc, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── FOOTER ──────────────────────────────────────── */
.footer {
    margin-top: 90px;
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 28px;
    color: var(--dim);
    font-size: 0.95rem;
}

.footer-links {
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #8d949f;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ── SCROLL REVEAL ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 700px) {
    .nav-links { display: none; }
}
