/* landing.css - Landing Page Styles */

/* Fix scrolling */
html,
body {
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto !important;
}

/* ============================================
   INTERACTIVE PARTICLES CANVAS
   ============================================ */
.particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   BACKGROUND ORBS
   ============================================ */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 15s ease-in-out infinite;
}

.glow-orb-1 {
    top: 10%;
    left: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(180, 100, 255, 0.25) 0%, transparent 70%);
}

.glow-orb-2 {
    bottom: 10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(120, 80, 255, 0.2) 0%, transparent 70%);
    animation-delay: -5s;
}

.glow-orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 100, 255, 0.15) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translate(30px, -40px) scale(1.1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-20px, 30px) scale(0.9);
        opacity: 0.5;
    }

    75% {
        transform: translate(40px, 20px) scale(1.05);
        opacity: 0.7;
    }
}

/* ============================================
   LANDING CONTAINER
   ============================================ */
.landing-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 2rem 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 0 4rem;
}

.hero-brand {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 50%, #ff88ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 800px;
    background: rgba(15, 15, 25, 0.9);
    border: 1px solid rgba(180, 100, 255, 0.3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(180, 100, 255, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 2.5rem;
    transition: all 0.4s ease;
}

.hero-video-wrapper:hover {
    border-color: rgba(180, 100, 255, 0.6);
    box-shadow:
        0 0 80px rgba(180, 100, 255, 0.4),
        0 0 120px rgba(180, 100, 255, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), hsl(300, 100%, 60%));
    color: #000;
    box-shadow: 0 4px 20px rgba(180, 100, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(180, 100, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--foreground);
    border: 1px solid rgba(180, 100, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(180, 100, 255, 0.1);
    border-color: var(--accent);
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--foreground);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 3rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-card {
    background: rgba(15, 15, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(180, 100, 255, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(180, 100, 255, 0.5);
    box-shadow:
        0 10px 40px rgba(180, 100, 255, 0.25),
        0 0 60px rgba(180, 100, 255, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.4;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step-card {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), hsl(300, 100%, 60%));
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 3rem 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), #ff88ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(180, 100, 255, 0.08), rgba(120, 80, 255, 0.05));
    border: 1px solid rgba(180, 100, 255, 0.15);
    border-radius: 24px;
    margin: 2rem 0;
}

.final-cta h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.final-cta p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 2rem 0;
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero-brand {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        gap: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .landing-container {
        padding: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .final-cta {
        padding: 2rem 1rem;
    }
}