:root {
    --primary: #E50914;
    --primary-hover: #ff0f1f;
    --secondary: #ffffff;
    --bg-dark: #000000;
    --text-main: #ffffff;
    --text-muted: #888888;
    --glass: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- BACKGROUND FX --- */
.aurora {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(229, 9, 20, 0.08), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(70, 0, 150, 0.08), transparent 50%);
    animation: aurora-spin 40s linear infinite;
    z-index: -2;
    filter: blur(80px);
    pointer-events: none;
}

@keyframes aurora-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdib3g9IjAgMCA3MDAgNzAwIiB3aWR0aD0iNzAwIiBoZWlnaHQ9IjcwMCIgb3BhY2l0eT0iMSI+PGRlZnM+PGZpbHRlciBpZD0ibm4iPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzPSIzIiBzdGl0Y2hUaWxlcz0ic3RpdGNoIi8+PC9maWx0ZXI+PC9kZWZzPjxyZWN0IHdpZHRoPSI3MDAiIGhlaWdodD0iNzAwIiBmaWxsPSIjMDAwMDAwIi8+PHJlY3Qgd2lkdGg9IjcwMCIgaGVpZ2h0PSI3MDAiIGZpbGw9IiNmZmZmZmYiIG9wYWNpdHk9IjAuMTUiIGZpbHRlcj0idXJsKCNubikiLz48L3N2Zz4=');
    opacity: 0.05;
    pointer-events: none;
    z-index: -1;
}

.glow-effect {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.top-glow {
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

/* --- UTILS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(to right, #e50914, #ff5f6d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 15px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229, 9, 20, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* --- NAVBAR --- */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 800;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.brand span {
    font-weight: 300;
}

.brand-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(229, 9, 20, 0.5);
}

.brand-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #fff;
}

.btn-nav {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff !important;
}

/* --- HERO --- */
.hero {
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin: 24px 0;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.badge {
    background: rgba(229, 9, 20, 0.1);
    color: #e50914;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(229, 9, 20, 0.2);
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 24px;
    color: #fff;
}

.stat-item span {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- HERO VISUAL (MOCKUP) --- */
.hero-visual {
    position: relative;
}

.card-visual {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 20px;
    backdrop-filter: blur(20px);
    width: 320px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: rotate(-5deg);
    transition: transform 0.5s;
}

.card-visual:hover {
    transform: rotate(0deg) scale(1.02);
}

.visual-header {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.mockup-popup {
    background: #000;
    padding: 16px;
    border-radius: 12px;
}

.m-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.m-brand {
    font-weight: 800;
    color: #e50914;
}

.m-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 80px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 12px;
}

.m-btn {
    background: #e50914;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
}

.glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.4) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

/* --- SECTIONS --- */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
}

/* BENTO GRID */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bento-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: 0.3s;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.wide {
    grid-column: span 2;
}

.bento-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.bento-item p {
    color: var(--text-muted);
    font-size: 15px;
}

/* STEPS GRID */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-num {
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-muted);
}

/* FOOTER */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
}

/* RESPONSIVE */
/* RESPONSIVE */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    /* Navbar */
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .nav-links a {
        font-size: 14px;
    }

    /* Hero */
    .hero {
        padding: 40px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;
        margin: 0 auto 30px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-lg {
        width: 100%;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-item strong {
        font-size: 20px;
    }

    /* Visual */
    .hero-visual {
        margin-top: 40px;
        display: flex;
        justify-content: center;
    }

    .card-visual {
        width: 100%;
        max-width: 320px;
        transform: rotate(0deg);
        /* Reset rotation for clean mobile view */
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .bento-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wide {
        grid-column: auto;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .brand {
        font-size: 20px;
    }

    .nav-links {
        gap: 10px;
    }
}

/* --- MOBILE MENU & HAMBURGER --- */
.hamburger-btn {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

.hamburger-btn svg {
    width: 32px;
    height: 32px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-links a {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
}

.mobile-links a:hover {
    color: var(--primary);
}

.mobile-btn {
    background: var(--primary);
    padding: 12px 30px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

/* RESPONSIVE OVERRIDES */
.desktop-menu {
    display: flex;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .desktop-menu {
        display: none;
    }

    .hamburger-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }
}