@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@600;700;800&display=swap');

/* Landing Modern Core Styles */
:root {
    --landing-accent: #FFD700;
    --landing-primary: #6610f2;
    --landing-secondary: #6C757D;
    --landing-bg-dark: #020617;
    --landing-glass: rgba(255, 255, 255, 0.1); /* Increased from 0.03 */
    --landing-glass-border: rgba(255, 255, 255, 0.15); /* Increased from 0.08 */
    --landing-text-white: #F8F9FA;
    --landing-neon-gold: #FFD700;
    --landing-accent-glow: rgba(255, 215, 0, 0.15);
    
    /* Hyper-Modern Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --mesh-purple: #7c3aed;
    --mesh-blue: #2563eb;
    --mesh-teal: #0d9488;
}

body.landing-page {
    font-family: var(--font-body);
    background-color: var(--landing-bg-dark) !important;
    color: var(--landing-text-white) !important;
    overflow-x: hidden;
}

/* Typography & Contrast */
.text-muted-modern {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5); 
}

.text-gradient-dark {
    background: linear-gradient(135deg, #1e293b 30%, var(--landing-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-white-modern {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Removed body.landing-page specific overrides to allow default light theme */

[data-pc-theme="dark"] .hero-modern {
    background: var(--landing-bg-dark);
}

[data-pc-theme="dark"] .glass-morphism {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.neon-border {
    border: 1px solid var(--landing-neon-gold) !important;
    box-shadow: 0 0 15px var(--landing-accent-glow);
}

/* Glassmorphism Utilities */
.glass-morphism {
    background: var(--landing-glass);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--landing-glass-border);
}

.glass-nav {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-nav.scrolled {
    padding: 10px 0 !important;
    background: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Hero Section Enhancements */
.hero-modern {
    position: relative;
    overflow: hidden;
    background: transparent !important; /* Allow mesh to show */
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Override legacy header styles */
header#home {
    background: transparent !important;
    background-image: none !important;
}

/* Choose Section Active State */
.choose-slider .swiper-slide.swiper-slide-active h2 {
    color: var(--landing-accent) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Footer Link Visibility */
.footer .footer-link a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
}
.footer .footer-link a:hover {
    color: var(--landing-accent) !important;
}

/* Accordion Icon Visibility */
.accordion-button::after {
    filter: invert(1) brightness(2);
}
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-docker video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-docker::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay */
    z-index: 2;
}

.hero-modern .container {
    position: relative;
    z-index: 3;
}

/* Magnetic Hover Effect (Basic) */
.magnetic-btn {
    display: inline-block;
    transition: transform 0.3s ease-out;
}

/* Premium Gradients */
.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--landing-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Dividers */
.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: auto;
}

/* Pricing Card Upgrade */
.pricing-card-modern {
    transition: all 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
}

.pricing-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card-modern.popular {
    border: 2px solid var(--landing-accent);
}

/* Mesh Gradient Background */
.mesh-gradient-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--landing-bg-dark);
}

.mesh-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    animation: blob-float 20s infinite alternate;
}

.blob-1 { background: var(--mesh-purple); top: -10%; left: -10%; }
.blob-2 { background: var(--mesh-blue); bottom: -10%; right: -10%; animation-delay: -5s; }
.blob-3 { background: var(--mesh-teal); top: 40%; left: 30%; width: 400px; height: 400px; animation-delay: -10s; }

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
    padding: 20px 0;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    background: var(--landing-glass);
    border: 1px solid var(--landing-glass-border);
    backdrop-filter: blur(12px);
    padding: 30px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.bento-item.col-span-2 { grid-column: span 2; }
.bento-item.row-span-2 { grid-row: span 2; }

@media (max-width: 992px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento-item.col-span-2 { grid-column: span 1; }
}

/* Magnetic Button */
.magnetic-wrap {
    display: inline-block;
    position: relative;
}

.btn-premium {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium-gold {
    background: var(--landing-accent);
    color: #000;
}

.btn-premium-gold:hover {
    box-shadow: 0 0 25px var(--landing-accent-glow);
    transform: scale(1.05);
}

/* Marquee Utility */
.marquee-container {
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    user-select: none;
}

.marquee-content {
    display: flex;
    animation: marquee-scroll 40s linear infinite;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-content.reverse {
    animation-direction: reverse;
}

/* 3D Floating Animation */
.floating-3d {
    animation: float-3d 6s ease-in-out infinite;
}

@keyframes float-3d {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Neon Slab Pricing */
.neon-slab {
    background: var(--landing-glass);
    border: 1px solid var(--landing-glass-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.neon-slab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--landing-accent), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.neon-slab:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.neon-slab:hover::before {
    opacity: 1;
}

.neon-slab.popular {
    border-color: var(--landing-accent);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}

.neon-slab.popular::before {
    opacity: 1;
}

.slab-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
}

.marquee-content.reverse {
    animation-direction: reverse;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Refined Glass Card V2 */
.glass-card-v2 {
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    position: relative;
    backdrop-filter: blur(16px);
}

.glass-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    background-size: 200% 200%;
    transition: background-position 0.6s ease;
    border-radius: inherit;
    pointer-events: none;
}

.glass-card-v2:hover::before {
    background-position: 100% 100%;
}
