:root {
    --bg: #0a0a0f;
    --bg-card: #13131a;
    --bg-nav: #0d0d14;
    --border: #1e1e2a;
    --text: #e4e4ec;
    --text-muted: #8888a0;
    --primary: #5865F2;
    --primary-hover: #4752c4;
    --gold: #f1c40f;
    --green: #2ecc71;
    --red: #e74c3c;
    --radius: 12px;
    --transition: 0.2s ease;
}

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

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.nav-links { display: flex; gap: 1.2rem; align-items: center; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}
.nav-links a:hover { color: #fff; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.55rem 1.1rem; border-radius: 8px; border: none;
    font-weight: 600; font-size: 0.9rem; cursor: pointer;
    text-decoration: none; transition: all var(--transition);
}
.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; border-radius: 10px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: #fff; }
.btn-discord { background: var(--primary); color: #fff; }
.btn-discord:hover { background: var(--primary-hover); }

/* Hero */
.hero {
    text-align: center;
    padding: 5rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at top, rgba(88,101,242,0.15), transparent 70%);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.hero h1 { font-size: 3.5rem; font-weight: 800; color: #fff; margin-bottom: 1rem; letter-spacing: -1px; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1; }
.stat-card {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 1.2rem 1.8rem; border-radius: var(--radius); text-align: center; min-width: 130px;
}
.stat-card span { font-size: 1.8rem; font-weight: 700; color: var(--primary); display: block; }
.stat-card p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.3rem; }

/* Sections */
.section { padding: 4rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.section-dark { background: var(--bg-card); max-width: 100%; padding: 4rem 1.5rem; }
.section-title { text-align: center; font-size: 2rem; color: #fff; margin-bottom: 3rem; font-weight: 700; }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.feature-card {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 1.8rem; border-radius: var(--radius); transition: all var(--transition);
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { color: #fff; margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* Pricing */
.pricing-grid { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.pricing-card {
    background: var(--bg-card); border: 1px solid var(--border);
    padding: 2rem; border-radius: var(--radius); text-align: center; flex: 1; min-width: 240px; max-width: 300px;
}
.pricing-featured { border-color: var(--primary); box-shadow: 0 0 30px rgba(88,101,242,0.15); position: relative; }
.pricing-badge { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin: 0.5rem 0; }
.pricing-price span { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.pricing-features { list-style: none; text-align: left; margin-top: 1.5rem; }
.pricing-features li { padding: 0.4rem 0; color: var(--text); font-size: 0.9rem; }

/* Commands */
.commands-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0.8rem; }
.cmd-group { background: var(--bg-card); border: 1px solid var(--border); padding: 1rem; border-radius: 8px; font-size: 0.85rem; color: var(--text-muted); }
.cmd-group strong { color: #fff; display: block; margin-bottom: 0.4rem; }

/* Footer */
footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 3rem 1.5rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto 2rem; }
.footer-grid h4 { color: #fff; margin-bottom: 0.8rem; }
.footer-grid a { display: block; color: var(--text-muted); text-decoration: none; font-size: 0.9rem; padding: 0.2rem 0; transition: color var(--transition); }
.footer-grid a:hover { color: #fff; }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.8rem; border-top: 1px solid var(--border); padding-top: 1.5rem; max-width: 1200px; margin: 0 auto; }

/* Utility */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-muted a { color: var(--primary); }

/* Mobile */
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--bg-nav); border-bottom: 1px solid var(--border);
        padding: 1rem 1.5rem; gap: 0.8rem;
    }
    .nav-links.active { display: flex; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-stats { gap: 0.8rem; }
    .stat-card { padding: 1rem; min-width: 80px; }
    .stat-card span { font-size: 1.3rem; }
    .section-title { font-size: 1.5rem; }
    .pricing-card { max-width: 100%; }
}