/* ReelsX Landing Page External Stylesheet */
:root {
    --primary-gradient: linear-gradient(135deg, #7C3AED 0%, #6366F1 50%, #4F46E5 100%);
    --primary-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.12) 0%, rgba(99, 102, 241, 0.12) 100%);
    --accent-purple: #7C3AED;
    --accent-indigo: #6366F1;
    --bg-light: #F8FAFC;
    --card-bg: rgba(255, 255, 255, 0.9);
    --border-light: rgba(226, 232, 240, 0.95);
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --shadow-soft: 0 10px 30px -10px rgba(124, 58, 237, 0.08);
}

body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Ambient Background Mesh Orbs */
.ambient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.glow-orb-1 {
    position: absolute;
    top: -10%;
    left: 15%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
}

.glow-orb-2 {
    position: absolute;
    top: 35%;
    right: -5%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.09) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(80px);
}

.glow-orb-3 {
    position: absolute;
    bottom: 5%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(90px);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.35);
}

/* Navbar */
.navbar-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-pill-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 50px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.nav-pill-link:hover, .nav-pill-link.active {
    color: var(--accent-purple);
    background: rgba(124, 58, 237, 0.08);
}

/* Typography & Gradient Text */
.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-gradient-primary {
    background: var(--primary-gradient);
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 20px -4px rgba(124, 58, 237, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -4px rgba(124, 58, 237, 0.45);
}

.btn-light-secondary {
    background: #ffffff;
    color: var(--text-dark);
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-light-secondary:hover {
    background: #F1F5F9;
    color: var(--accent-purple);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: var(--accent-purple);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* Feature Icons */
.feature-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--primary-glow);
    color: var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(124, 58, 237, 0.15);
}

/* Equalizer Wave Animation */
.wave-bar {
    width: 4px;
    background: var(--primary-gradient);
    border-radius: 4px;
    animation: wave 1.2s ease-in-out infinite alternate;
}

.wave-bar:nth-child(1) { height: 16px; animation-delay: 0.1s; }
.wave-bar:nth-child(2) { height: 30px; animation-delay: 0.3s; }
.wave-bar:nth-child(3) { height: 44px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 24px; animation-delay: 0.4s; }
.wave-bar:nth-child(5) { height: 36px; animation-delay: 0.15s; }

@keyframes wave {
    0% { transform: scaleY(0.4); }
    100% { transform: scaleY(1); }
}

/* Hero Mockup Card Frame */
.hero-mockup-frame {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 32px;
    box-shadow: 0 25px 60px -15px rgba(124, 58, 237, 0.15);
    padding: 24px;
}

.reel-player-preview {
    background: #0F172A;
    border-radius: 24px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.reel-player-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.reel-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.95) 100%);
    color: #ffffff;
}

/* Testimonials */
.avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* CTA Banner */
.cta-banner-card {
    background: linear-gradient(135deg, #1E1B4B 0%, #312E81 50%, #4338CA 100%);
    color: #ffffff;
    border-radius: 32px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(49, 46, 129, 0.3);
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.45) 0%, transparent 70%);
    pointer-events: none;
}

footer {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
}
