*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #0a0a0f;
    --bg2: #13121a;
    --border: rgba(255, 255, 255, 0.07);
    --pink: #f472b6;
    --purple: #a78bfa;
    --text: #e2e8f0;
    --muted: #94a3b8;
    --radius: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
    cursor: pointer;
    border: none;
}

.btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Nav */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-dot {
    color: var(--pink);
    margin-right: 2px;
}

/* Hero */
.hero {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(244, 114, 182, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 50%, rgba(167, 139, 250, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
}

.badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(244, 114, 182, 0.1);
    border: 1px solid rgba(244, 114, 182, 0.2);
    color: var(--pink);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 36px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 32px;
}

.stat {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 22px;
    font-weight: 800;
}

.stat-label {
    font-size: 12px;
    color: var(--muted);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Features */
.features {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.section-title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 12px;
}

.section-sub {
    color: var(--muted);
    text-align: center;
    font-size: 15px;
    margin-bottom: 48px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
    border-color: rgba(244, 114, 182, 0.25);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    background: rgba(244, 114, 182, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--pink);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

/* Genres */
.genres {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.genres .section-title {
    margin-bottom: 28px;
}

.genre-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.pill {
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--bg2);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.pill:hover {
    background: rgba(244, 114, 182, 0.1);
    color: var(--pink);
    border-color: rgba(244, 114, 182, 0.25);
}

/* CTA */
.cta-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(167, 139, 250, 0.07) 0%, transparent 70%);
}

.cta-inner h2 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}

.cta-inner p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-copy {
    color: var(--muted);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 600px) {
    .hero {
        padding: 70px 0 60px;
    }

    .hero-stats {
        gap: 16px;
        padding: 14px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-divider {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}