* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #0f0f11;
    color: #e0e0e0;
    line-height: 1.6;
    transition: background 0.3s ease, color 0.3s ease;
}

/* Accent Color */
:root {
    --accent: #9b5de5;
    --accent-light: #c084fc;
    --dark-bg: #0f0f11;
    --card-bg: #1a1b1e;
    --text-muted: #b0b0b0;
}

/* Navigation */
nav {
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border-bottom: 1px solid #2a2a2a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-light);
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 6rem;
    text-align: center;
    background: var(--dark-bg);
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 8px rgba(155, 93, 229, 0.3);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(155, 93, 229, 0.4);
    transition: all 0.25s ease;
}

.cta-button:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 0 16px rgba(192, 132, 252, 0.6);
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: var(--card-bg);
}

.features-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.feature-card {
    background: var(--dark-bg);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 14px rgba(155, 93, 229, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-light);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
}

/* Stats Section */
.stats {
    padding: 6rem 2rem;
    background: var(--dark-bg);
    text-align: center;
}

.stats-container {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 6px rgba(155, 93, 229, 0.3);
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    background: #1a1b1e;
    color: white;
    text-align: center;
    border-top: 1px solid #2e2e2e;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        padding: 6rem 2rem 4rem;
    }

    .features, .stats {
        padding: 4rem 2rem;
    }

    .features-container, .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
