/* ================================
   TPS TG GuardGram - SOFTWARE SALES LANDING PAGE (ULTRA PREMIUM)
   Style: SaaS / AI / Cyber / High Conversion / Sales-Oriented
   Font: Kanit (Thai Support)
================================ */

/* ================================
   IRON-MAN LEVEL AI DASHBOARD UI
   Billion-Dollar Palantir Style
   =============================== */

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    /* Palantir Color System - Deep Black */
    --bg-main: #0A0E17;
    --bg-panel: rgba(16, 22, 35, 0.9);
    --bg-glass: rgba(16, 22, 35, 0.7);
    --bg-glass-light: rgba(16, 22, 35, 0.85);
    
    /* Palantir Color System - 3 สีหลัก */
    --neon-cyan: #4CC9FF;
    --neon-purple: #7C4DFF;
    --neon-red: #FF1744;
    
    /* Text Colors - Palantir (สว่างขึ้น) */
    --text-main: #F0F5FF;
    --text-muted: #8B9DB0;
    --text-light: #C8D5E8;
    --white: #ffffff;
    --text-dim: #8B9DB0;
    
    /* Borders & Effects - Enterprise AI */
    --border: rgba(255, 255, 255, 0.1);
    --border-strong: rgba(76, 201, 255, 0.2);
    --border-glow: rgba(76, 201, 255, 0.2);
    --border-blue: rgba(76, 201, 255, 0.15);
    --border-ai: rgba(76, 201, 255, 0.1);
    
    /* Shadows & Glows - Premium */
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 40px 120px rgba(0, 0, 0, 0.7);
    --shadow-deep: 0 20px 60px rgba(0,0,0,0.7);
    --glow: 0 0 40px rgba(76, 201, 255, 0.4);
    --glow-strong: 0 0 80px rgba(123, 97, 255, 0.5);
    --glow-blue: 0 0 50px rgba(76, 201, 255, 0.5);
    
    /* Spacing - Enterprise */
    --radius: 4px;
    --radius-sm: 4px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kanit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Anuphan', 'Kanit', sans-serif;
    background: radial-gradient(1200px 800px at 20% 10%, #0A0E17 0%, #050810 60%);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.2px;
    perspective: 1000px;
    perspective-origin: center center;
}

/* Particles Canvas - Firefly Effect */
#particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: transparent;
}

/* Ensure particles don't interfere with lightbox */
.lightbox ~ #particles {
    z-index: 0;
}

/* Enterprise Cyber Grid Background */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    transform: perspective(1000px) rotateX(60deg) translateZ(-200px);
    transform-style: preserve-3d;
    animation: gridMove3D 20s linear infinite;
}

@keyframes gridMove3D {
    0% {
        transform: perspective(1000px) rotateX(60deg) translateZ(-200px) translate(0, 0);
    }
    100% {
        transform: perspective(1000px) rotateX(60deg) translateZ(-200px) translate(70px, 70px);
    }
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 184, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: pulseGlow 8s ease-in-out infinite;
    transform: translateZ(0);
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* ================================
   3D Background Shapes
================================ */
.bg-3d-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    perspective: 2000px;
    perspective-origin: center center;
    overflow: hidden;
}

.bg-3d-fireflies {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.25;
    pointer-events: none;
}

.bg-3d-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float3D 20s ease-in-out infinite;
    transform-style: preserve-3d;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.6) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    transform: translateZ(-500px) rotateY(0deg);
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 184, 255, 0.5) 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation-delay: -3s;
    transform: translateZ(-300px) rotateY(45deg);
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 233, 255, 0.4) 0%, transparent 70%);
    bottom: 20%;
    left: 20%;
    animation-delay: -6s;
    transform: translateZ(-400px) rotateY(-30deg);
}

.shape-4 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
    top: 30%;
    right: 30%;
    animation-delay: -9s;
    transform: translateZ(-600px) rotateY(60deg);
}

.shape-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    bottom: 10%;
    right: 20%;
    animation-delay: -12s;
    transform: translateZ(-350px) rotateY(-45deg);
}

.shape-6 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(0, 184, 255, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: -15s;
    transform: translateZ(-450px) rotateY(90deg);
}

@keyframes float3D {
    0%, 100% {
        transform: translateZ(var(--z, -400px)) translateY(0) translateX(0) rotateY(var(--ry, 0deg)) rotateX(var(--rx, 0deg));
    }
    25% {
        transform: translateZ(var(--z, -400px)) translateY(-30px) translateX(20px) rotateY(calc(var(--ry, 0deg) + 10deg)) rotateX(calc(var(--rx, 0deg) + 5deg));
    }
    50% {
        transform: translateZ(var(--z, -400px)) translateY(-20px) translateX(-15px) rotateY(calc(var(--ry, 0deg) - 10deg)) rotateX(calc(var(--rx, 0deg) - 5deg));
    }
    75% {
        transform: translateZ(var(--z, -400px)) translateY(-40px) translateX(10px) rotateY(calc(var(--ry, 0deg) + 5deg)) rotateX(calc(var(--rx, 0deg) + 10deg));
    }
}

.shape-1 {
    --z: -500px;
    --ry: 0deg;
    --rx: 10deg;
}

.shape-2 {
    --z: -300px;
    --ry: 45deg;
    --rx: -15deg;
}

.shape-3 {
    --z: -400px;
    --ry: -30deg;
    --rx: 20deg;
}

.shape-4 {
    --z: -600px;
    --ry: 60deg;
    --rx: -10deg;
}

.shape-5 {
    --z: -350px;
    --ry: -45deg;
    --rx: 15deg;
}

.shape-6 {
    --z: -450px;
    --ry: 90deg;
    --rx: -20deg;
}

/* 3D Grid Pattern */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    transform: perspective(1000px) rotateX(60deg) translateZ(-200px);
    transform-style: preserve-3d;
    animation: gridMove3D 20s linear infinite;
}

@keyframes gridMove3D {
    0% {
        transform: perspective(1000px) rotateX(60deg) translateZ(-200px) translate(0, 0) rotateY(0deg);
    }
    50% {
        transform: perspective(1000px) rotateX(60deg) translateZ(-200px) translate(35px, 35px) rotateY(5deg);
    }
    100% {
        transform: perspective(1000px) rotateX(60deg) translateZ(-200px) translate(70px, 70px) rotateY(0deg);
    }
}

/* 3D Parallax Effect */
body {
    transform-style: preserve-3d;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    transform: translateZ(0);
}

/* ================================
   NAVBAR - SALES STYLE
================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: linear-gradient(
        180deg,
        rgba(10, 20, 35, 0.9),
        rgba(10, 20, 35, 0.75)
    );
    border-bottom: 1px solid rgba(0, 200, 255, 0.18);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.navbar::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00e5ff, transparent);
    opacity: 0.3;
}

.navbar.scrolled {
    background: rgba(5, 10, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 1.25rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand .logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.3));
}

.nav-brand .logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.6));
}

.nav-brand h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #00E5FF !important;
    background: linear-gradient(90deg, 
        #00E5FF 0%,      /* TPS - Cyan */
        #00E5FF 20%,     /* TG start - Cyan */
        #7C4DFF 40%,     /* TG end - Purple */
        #7C4DFF 50%,     /* Guard start - Purple */
        #00BFA5 70%,     /* Guard end - Teal */
        #00BFA5 80%,     /* Gram start - Teal */
        #00FFA6 100%     /* Gram end - Green */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    margin: 0;
    letter-spacing: -0.02em;
    font-feature-settings: "liga" 1, "kern" 1;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3))
            drop-shadow(0 0 20px rgba(124, 77, 255, 0.2));
}

/* Force text visibility - ensure text is always visible */
.nav-brand h1 {
    position: relative;
    display: inline-block;
}

@supports not (-webkit-background-clip: text) {
    .nav-brand h1 {
        color: #00E5FF !important;
        -webkit-text-fill-color: #00E5FF !important;
        background: none !important;
    }
}

/* Force text visibility - fallback for all browsers */
.nav-brand h1 {
    -webkit-text-fill-color: transparent;
}

/* Ensure text is visible when gradient doesn't work */
.nav-brand h1::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #00E5FF;
    -webkit-text-fill-color: #00E5FF !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.nav-brand h1:hover {
    background: linear-gradient(90deg, 
        #00E5FF 0%,
        #4CC9FF 15%,
        #7C4DFF 35%,
        #9C7AFF 50%,
        #7C4DFF 65%,
        #00BFA5 80%,
        #00FFA6 90%,
        #00FFC6 100%
    );
    background-size: 200% 100%;
    animation: brandHoverGradient 3s ease infinite;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.8))
            drop-shadow(0 0 40px rgba(124, 77, 255, 0.6))
            drop-shadow(0 0 60px rgba(0, 255, 166, 0.4));
}

@keyframes brandHoverGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.nav-brand h1::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, 
        rgba(0, 229, 255, 0.1) 0%,
        rgba(124, 77, 255, 0.1) 50%,
        rgba(0, 255, 166, 0.1) 100%
    );
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.nav-brand h1:hover::before {
    opacity: 1;
}

.nav-brand h1::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        #00E5FF 20%,
        #7C4DFF 50%,
        #00FFA6 80%,
        transparent 100%
    );
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.8),
                0 0 30px rgba(124, 77, 255, 0.6);
    transform-origin: center;
}

.nav-brand h1:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    letter-spacing: 0.01em;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.08), rgba(108, 99, 255, 0.08));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-menu a:hover {
    color: var(--text-main);
    transform: translateY(-1px);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a.active {
    color: var(--text-main);
    background: linear-gradient(135deg, rgba(0, 194, 255, 0.12), rgba(108, 99, 255, 0.12));
    box-shadow: 
        0 0 0 1px rgba(0, 194, 255, 0.2),
        0 4px 12px rgba(0, 194, 255, 0.1);
}

.nav-menu a.active::before {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-main);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ================================
   HERO SECTION - SALES FOCUSED
================================ */
.hero {
    padding: 120px 8vw 140px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(76, 201, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(123, 97, 255, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(255, 78, 205, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-glass);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neon-cyan);
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
    animation: fadeInUp 0.6s ease;
}

.hero-badge .material-icons {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: #00c8ff !important;
    background: linear-gradient(90deg, #00c8ff, #7c5cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 6px rgba(0, 200, 255, 0.25),
        0 0 16px rgba(0, 200, 255, 0.15);
    filter: none !important;
    position: relative;
    animation: fadeInUp 0.8s ease;
    z-index: 1;
}

@supports not (-webkit-background-clip: text) {
    .hero-title {
        color: #00c8ff !important;
        -webkit-text-fill-color: #00c8ff !important;
        background: none !important;
    }
}

/* Glow Layer AI - แยก layer หลัง text */
.hero-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #00c8ff;
    filter: blur(12px);
    opacity: 0.25;
    z-index: -1;
    white-space: pre-line;
    pointer-events: none;
}

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: var(--text-light);
    line-height: 1.7;
    animation: fadeInUp 1s ease;
    max-width: 90%;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
    padding: 2rem 0;
    animation: fadeInUp 1.2s ease;
    contain: layout style;
    align-items: start;
}

.stat-item {
    text-align: left;
    contain: layout style;
    position: relative;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00c2ff !important;
    background: linear-gradient(120deg, #00c2ff, #00ffa6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 6px rgba(0, 194, 255, 0.3)) drop-shadow(0 0 3px rgba(0, 255, 166, 0.2));
    transition: filter 0.3s ease;
    display: inline-block;
    min-width: 120px;
    text-align: left;
    contain: layout style paint;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    will-change: contents;
}

@supports not (-webkit-background-clip: text) {
    .stat-number {
        color: #00c2ff !important;
        -webkit-text-fill-color: #00c2ff !important;
        background: none !important;
    }
}

/* Counter animation */
.stat-number.animated {
    animation: numberPulse 0.5s ease;
}

@keyframes numberPulse {
    0%, 100% {
        filter: drop-shadow(0 0 6px rgba(0, 194, 255, 0.3)) drop-shadow(0 0 3px rgba(0, 255, 166, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(0, 194, 255, 0.6)) drop-shadow(0 0 6px rgba(0, 255, 166, 0.4));
    }
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-buttons .btn .material-icons {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover .material-icons {
    transform: translateX(4px);
}

.hero-image {
    position: relative;
    z-index: 1;
}

/* AI Dashboard Mockup - Enterprise Grade */
.dashboard-mockup {
    position: relative;
    background: var(--bg-panel);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: var(--radius);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1.5rem;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
    transform: perspective(1200px) rotateX(6deg) rotateY(-8deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.dashboard-mockup:hover {
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg) scale(1.03);
    box-shadow: 0 0 80px rgba(124, 77, 255, 0.4);
}

.dashboard-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
    margin-bottom: 1.125rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .dashboard-row {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .dashboard-panel {
        min-height: 80px;
        padding: 0.875rem;
    }
    
    .dashboard-panel h4 {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .dashboard-panel strong {
        font-size: 1.5rem;
        white-space: nowrap;
        overflow: visible;
    }
}

.dashboard-panel {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
    position: relative;
    overflow: visible;
    transition: all 0.3s ease;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(0, 229, 255, 0.3), transparent);
    animation: scan 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-panel:hover::before {
    opacity: 1;
}

.dashboard-panel:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
}

@keyframes scan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.dashboard-panel h4 {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    opacity: 0.8;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dashboard-panel strong {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neon-cyan);
    display: block;
    line-height: 1.2;
    text-shadow:
        0 1px 2px rgba(0,0,0,0.6),
        0 0 3px rgba(0,194,255,0.15),
        0 0 8px rgba(0,194,255,0.06);
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    max-width: 100%;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.dashboard-preview {
    margin-top: 1.125rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.dashboard-mockup:hover .dashboard-img {
    opacity: 1;
}

/* ================================
   BUTTONS - HIGH CONVERSION
================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    min-height: 52px;
    transform: translateY(0);
    white-space: nowrap;
    line-height: 1.2;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: var(--bg-main);
    border: none;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.25);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.35);
}

.btn-secondary {
    background: rgba(20, 35, 60, 0.5);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--text-main);
    border: 1px solid rgba(0, 180, 255, 0.25);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

.btn-secondary:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.25);
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow), var(--glow);
}

/* ================================
   SECTION TITLES
================================ */
.section-title {
    text-align: center;
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 4rem;
    position: relative;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #00c8ff !important;
    background: linear-gradient(135deg, #00c8ff, #7c5cff, #00ffa6, #00c8ff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: none !important;
    animation: titleGradient 4s ease infinite;
    text-shadow: 0 0 30px rgba(0, 200, 255, 0.3);
    padding: 0 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    z-index: 100;
    isolation: isolate;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
}

@supports not (-webkit-background-clip: text) {
    .section-title {
        color: #00c8ff !important;
        -webkit-text-fill-color: #00c8ff !important;
        background: none !important;
    }
}

.section-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: titleShine 3s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.3;
}

@keyframes titleShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.section-title:hover {
    transform: scale(1.02);
    text-shadow: 0 0 40px rgba(0, 200, 255, 0.6),
                 0 0 80px rgba(124, 92, 255, 0.4),
                 0 0 120px rgba(0, 200, 255, 0.3);
    filter: none !important;
}

@keyframes titleGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00c8ff, #7c5cff);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(0, 200, 255, 0.5),
                0 0 24px rgba(124, 92, 255, 0.3),
                0 0 40px rgba(0, 200, 255, 0.15);
    animation: underlinePulse 2s ease-in-out infinite;
    z-index: 1;
}

/* Ensure text is always visible - override any conflicting styles */
.section-title {
    color: #00c8ff !important;
}

/* Force text to be visible even with gradient */
.section-title:hover {
    -webkit-text-fill-color: transparent !important;
    color: #00c8ff !important;
}

@keyframes underlinePulse {
    0%, 100% {
        width: 80px;
        opacity: 1;
    }
    50% {
        width: 120px;
        opacity: 0.8;
    }
}


@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.3;
        width: 120px;
    }
    50% {
        opacity: 0.6;
        width: 150px;
    }
}

/* General h2 and h3 styles for sections */
section h2:not(.section-title),
section h3:not(.section-title) {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

section h2:not(.section-title) {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--neon-cyan) !important;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-green), var(--neon-cyan));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 4s ease infinite;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.4));
    letter-spacing: -0.02em;
    line-height: 1.2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    position: relative;
    z-index: 10;
    isolation: isolate;
}

@supports not (-webkit-background-clip: text) {
    section h2:not(.section-title) {
        color: var(--neon-cyan) !important;
        -webkit-text-fill-color: var(--neon-cyan) !important;
        background: none !important;
    }
}

section h2:not(.section-title)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: titleShine 3s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
}

section h2:not(.section-title):hover {
    transform: scale(1.02);
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.6),
                 0 0 60px rgba(124, 77, 255, 0.4),
                 0 0 90px rgba(0, 229, 255, 0.3);
    filter: none !important;
}

section h2:not(.section-title)::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-green));
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.6),
                0 0 24px rgba(124, 77, 255, 0.4);
    animation: underlinePulse 2s ease-in-out infinite;
    z-index: 2;
}

section h3:not(.section-title):not(.feature-card h3):not(.contact-item h3):not(.pricing-header h3):not(.additional-features h3):not(.tab-summary-header h3):not(.god-panel h3) {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--neon-cyan) !important;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-green));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 4s ease infinite;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.3));
    letter-spacing: -0.01em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    position: relative;
    z-index: 10;
    isolation: isolate;
}

@supports not (-webkit-background-clip: text) {
    section h3:not(.section-title):not(.feature-card h3):not(.contact-item h3):not(.pricing-header h3):not(.additional-features h3):not(.tab-summary-header h3):not(.god-panel h3) {
        color: var(--neon-cyan) !important;
        -webkit-text-fill-color: var(--neon-cyan) !important;
        background: none !important;
    }
}

section h3:not(.section-title):not(.feature-card h3):not(.contact-item h3):not(.pricing-header h3):not(.additional-features h3):not(.tab-summary-header h3):not(.god-panel h3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: titleShine 3.5s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
}

section h3:not(.section-title):not(.feature-card h3):not(.contact-item h3):not(.pricing-header h3):not(.additional-features h3):not(.tab-summary-header h3):not(.god-panel h3):hover {
    transform: scale(1.02);
    text-shadow: 0 0 25px rgba(0, 229, 255, 0.5),
                 0 0 50px rgba(124, 77, 255, 0.3),
                 0 0 75px rgba(0, 229, 255, 0.2);
    filter: none !important;
}

section h3:not(.section-title):not(.feature-card h3):not(.contact-item h3):not(.pricing-header h3):not(.additional-features h3):not(.tab-summary-header h3):not(.god-panel h3)::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-green));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.6),
                0 0 20px rgba(124, 77, 255, 0.4);
    animation: underlinePulse 2s ease-in-out infinite;
    z-index: 2;
}

/* ================================
   GOD MODE AI DASHBOARD SECTION
   PALANTIR-LEVEL AI COMMAND CENTER
================================ */
.god-dashboard-section {
    padding: 140px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* ===== GLOBAL GRID (PALANTIR STYLE) ===== */
.god-dashboard-section .ai-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,229,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,0.025) 1px, transparent 1px);
    background-size: 70px 70px;
    z-index: 0;
    animation: gridMovePalantir 50s linear infinite;
    pointer-events: none;
}

@keyframes gridMovePalantir {
    from { background-position: 0 0, 0 0; }
    to { background-position: 700px 700px, 700px 700px; }
}

/* ===== TOP BAR (PALANTIR STYLE) ===== */
.palantir-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 26px;
    background: linear-gradient(180deg, rgba(0,0,0,0.8), transparent);
    border-bottom: 1px solid var(--border-ai);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.palantir-brand {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--ai-cyan) !important;
    background: linear-gradient(120deg, var(--ai-cyan), var(--ai-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    position: relative;
    z-index: 1;
}

@supports not (-webkit-background-clip: text) {
    .palantir-brand {
        color: var(--ai-cyan) !important;
        -webkit-text-fill-color: var(--ai-cyan) !important;
        background: none !important;
    }
}

.palantir-status {
    font-size: 12px;
    color: var(--ai-green);
    letter-spacing: 2px;
    margin: 0;
}

/* ===== PALANTIR LAYOUT ===== */
.palantir-dashboard {
    display: grid;
    grid-template-columns: 280px 1fr 340px;
    gap: 20px;
    padding: 24px;
}

@media (max-width: 1200px) {
    .palantir-dashboard {
        grid-template-columns: 240px 1fr 300px;
    }
}

@media (max-width: 968px) {
    .palantir-dashboard {
        grid-template-columns: 1fr;
    }
}

/* ===== SIDE NAV (PALANTIR STYLE) ===== */
.palantir-sidebar {
    background: var(--bg-panel);
    border-radius: 20px;
    border: 1px solid var(--border-ai);
    padding: 20px;
    box-shadow: var(--shadow-deep);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.palantir-nav-item {
    padding: 12px 14px;
    border-radius: 12px;
    margin-bottom: 8px;
    cursor: pointer;
    color: var(--text-dim);
    transition: 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.palantir-nav-item:hover,
.palantir-nav-item.active {
    background: linear-gradient(120deg, rgba(0,229,255,0.15), rgba(124,77,255,0.15));
    color: var(--text-main);
    box-shadow: 0 0 20px rgba(0,229,255,0.25);
}

/* ===== CORE PANELS (PALANTIR STYLE) ===== */
.palantir-panel {
    background: var(--bg-panel);
    border-radius: 20px;
    border: 1px solid var(--border-ai);
    padding: 18px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-deep), inset 0 0 40px rgba(0,229,255,0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.palantir-panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(120deg, transparent 40%, rgba(0,229,255,0.12), transparent 60%);
    opacity: 0.4;
    animation: scanLinePalantir 8s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes scanLinePalantir {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.palantir-panel > * {
    position: relative;
    z-index: 1;
}

/* ===== METRICS (PALANTIR STYLE) ===== */
.palantir-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.palantir-metric {
    background: var(--bg-glass);
    border-radius: 14px;
    padding: 14px;
    border: 1px solid var(--border-ai);
    box-shadow: inset 0 0 20px rgba(0,229,255,0.08);
}

.palantir-metric h3 {
    font-size: 12px;
    color: var(--text-dim);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.palantir-metric .value {
    font-size: 30px;
    font-weight: 900;
    color: var(--ai-cyan) !important;
    background: linear-gradient(120deg, var(--ai-cyan), var(--ai-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    position: relative;
    z-index: 1;
}

.palantir-metric .value.danger {
    color: var(--ai-red) !important;
    background: linear-gradient(120deg, var(--ai-red), var(--ai-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@supports not (-webkit-background-clip: text) {
    .palantir-metric .value.danger {
        color: var(--ai-red);
        -webkit-text-fill-color: var(--ai-red);
        background: none;
    }
}

@supports not (-webkit-background-clip: text) {
    .palantir-metric .value {
        color: var(--ai-cyan);
        -webkit-text-fill-color: var(--ai-cyan);
        background: none;
    }
    .palantir-metric .value.danger {
        color: var(--ai-red);
        -webkit-text-fill-color: var(--ai-red);
        background: none;
    }
}

/* ===== TERMINAL (PALANTIR STYLE) ===== */
.palantir-terminal {
    background: #02040a;
    border-radius: 14px;
    border: 1px solid var(--border-ai);
    padding: 14px;
    font-family: "JetBrains Mono", "Courier New", monospace;
    font-size: 12px;
    color: var(--ai-green);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
    height: 240px;
    overflow-y: auto;
    line-height: 1.6;
}

.palantir-terminal::-webkit-scrollbar {
    width: 6px;
}

.palantir-terminal::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
}

.palantir-terminal::-webkit-scrollbar-thumb {
    background: rgba(0,229,255,0.3);
    border-radius: 3px;
}

.palantir-terminal::-webkit-scrollbar-thumb:hover {
    background: rgba(0,229,255,0.5);
}

/* ===== RIGHT PANEL (PALANTIR STYLE) ===== */
.palantir-radar {
    width: 100%;
    height: 260px;
    border-radius: 50%;
    border: 2px solid var(--border-ai);
    background: radial-gradient(circle, rgba(0,229,255,0.15), transparent 60%),
                repeating-radial-gradient(circle, rgba(0,229,255,0.08) 0 2px, transparent 2px 18px);
    position: relative;
    overflow: hidden;
}

.palantir-radar::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background: var(--ai-cyan);
    top: 50%;
    left: 50%;
    transform-origin: left center;
    animation: radarSpin 4s linear infinite;
    box-shadow: 0 0 10px rgba(0,229,255,0.8);
}

@keyframes radarSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== BUTTONS (PALANTIR STYLE) ===== */
.palantir-btn {
    padding: 10px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-ai);
    background: linear-gradient(120deg, rgba(0,229,255,0.15), rgba(124,77,255,0.15));
    color: var(--text-main);
    cursor: pointer;
    transition: 0.3s ease;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
    margin-bottom: 8px;
}

.palantir-btn:hover {
    background: linear-gradient(120deg, var(--ai-cyan), var(--ai-purple));
    color: #000;
    box-shadow: 0 0 12px rgba(0,194,255,0.4);
}

.palantir-panel h2 {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.dashboard-particles,
.section-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    display: block !important;
}

.god-dashboard {
    display: flex;
    min-height: 700px;
    background: var(--bg-panel);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 0 80px rgba(76, 201, 255, 0.25);
    overflow: hidden;
}

/* God Sidebar */
.god-sidebar {
    width: 260px;
    background: linear-gradient(180deg, var(--bg-main), rgba(10, 20, 36, 0.9));
    border-right: 1px solid rgba(76, 201, 255, 0.2);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.god-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.05) 50%, transparent 100%),
        radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
    animation: sidebarScan 4s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes sidebarScan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.god-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
    animation: sidebarGrid 20s linear infinite;
}

@keyframes sidebarGrid {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 20px 20px;
    }
}

.brand {
    font-size: 1.375rem;
    font-weight: 800;
    color: #00E5FF !important;
    background: linear-gradient(135deg, 
        #00E5FF 0%,      /* Cyan */
        #4CC9FF 25%,     /* Bright Cyan */
        #7C4DFF 50%,     /* Purple */
        #9C7AFF 75%,     /* Light Purple */
        #00FFA6 100%     /* Green */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    animation: brandGradient 3s ease infinite;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.4)) 
            drop-shadow(0 0 16px rgba(124, 77, 255, 0.3))
            drop-shadow(0 0 24px rgba(0, 255, 166, 0.2));
    cursor: pointer;
    transition: all 0.3s ease;
}

@supports not (-webkit-background-clip: text) {
    .brand {
        color: #00E5FF !important;
        -webkit-text-fill-color: #00E5FF !important;
        background: none !important;
    }
}

.brand:hover {
    animation: brandGradient 1.5s ease infinite, brandHover 0.6s ease;
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.6)) 
            drop-shadow(0 0 24px rgba(124, 77, 255, 0.5))
            drop-shadow(0 0 36px rgba(0, 255, 166, 0.4));
    transform: scale(1.05);
}

@keyframes brandHover {
    0%, 100% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes brandGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.brand::before {
    content: 'TPS AI CORE';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #00E5FF 0%,
        #7C4DFF 50%,
        #00FFA6 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(12px);
    opacity: 0.5;
    z-index: -1;
    animation: brandGlow 2s ease-in-out infinite alternate;
}

@keyframes brandGlow {
    0% {
        opacity: 0.3;
        filter: blur(12px);
    }
    100% {
        opacity: 0.6;
        filter: blur(16px);
    }
}

.god-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.god-nav a {
    display: block;
    padding: 0.75rem 1rem;
    margin: 0.25rem 0;
    border-radius: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    z-index: 11;
    user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid transparent;
}

.god-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        #00E5FF 0%,
        #4CC9FF 25%,
        #7C4DFF 50%,
        #9C7AFF 75%,
        #00FFA6 100%
    );
    background-size: 100% 200%;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
    animation: navBarGlow 2s ease infinite;
}

@keyframes navBarGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 229, 255, 0.9), 0 0 40px rgba(124, 77, 255, 0.5);
    }
}

.god-nav a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 229, 255, 0.15) 0%,
        rgba(124, 77, 255, 0.1) 50%,
        rgba(0, 255, 166, 0.08) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
    z-index: -1;
}

.god-nav a:hover {
    color: var(--neon-cyan);
    transform: translateX(6px) scale(1.02);
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 
        0 0 20px rgba(0, 229, 255, 0.3),
        inset 0 0 20px rgba(0, 229, 255, 0.05);
    text-shadow: 
        0 0 8px rgba(0, 229, 255, 0.6),
        0 0 16px rgba(0, 229, 255, 0.3);
}

.god-nav a:hover::before {
    transform: scaleY(1);
    width: 5px;
    animation: navBarGlow 2s ease infinite, navBarPulse 1.5s ease infinite;
}

@keyframes navBarPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.god-nav a:hover::after {
    opacity: 1;
    background: linear-gradient(135deg, 
        rgba(0, 229, 255, 0.2) 0%,
        rgba(124, 77, 255, 0.15) 50%,
        rgba(0, 255, 166, 0.1) 100%
    );
}

.god-nav a.active {
    background: linear-gradient(135deg, 
        rgba(0, 229, 255, 0.2) 0%,
        rgba(124, 77, 255, 0.15) 50%,
        rgba(0, 255, 166, 0.1) 100%
    );
    color: var(--neon-cyan);
    box-shadow: 
        0 0 30px rgba(0, 229, 255, 0.5),
        0 0 60px rgba(124, 77, 255, 0.3),
        inset 0 0 30px rgba(0, 229, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateX(6px) scale(1.02);
    text-shadow:
        0 0 10px rgba(0, 229, 255, 0.8),
        0 0 20px rgba(0, 229, 255, 0.5),
        0 0 30px rgba(124, 77, 255, 0.3);
    border: 1px solid rgba(0, 229, 255, 0.4);
    animation: tabActivate 0.5s cubic-bezier(0.4, 0, 0.2, 1), activePulse 2s ease-in-out infinite;
    position: relative;
}

@keyframes tabActivate {
    0% {
        transform: translateX(0) scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: translateX(8px) scale(1.05);
    }
    100% {
        transform: translateX(6px) scale(1.02);
        opacity: 1;
    }
}

@keyframes activePulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(0, 229, 255, 0.5),
            0 0 60px rgba(124, 77, 255, 0.3),
            inset 0 0 30px rgba(0, 229, 255, 0.15);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(0, 229, 255, 0.7),
            0 0 80px rgba(124, 77, 255, 0.5),
            inset 0 0 40px rgba(0, 229, 255, 0.2);
    }
}

.god-nav a.active::before {
    transform: scaleY(1);
    width: 5px;
    box-shadow: 
        0 0 20px rgba(0, 229, 255, 0.8),
        0 0 40px rgba(124, 77, 255, 0.5);
    animation: activeBarGlow 2s ease infinite, activeBarScan 3s linear infinite;
    z-index: 1;
}

@keyframes activeBarGlow {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(0, 229, 255, 0.8),
            0 0 40px rgba(124, 77, 255, 0.5);
        opacity: 1;
    }
    50% {
        box-shadow: 
            0 0 30px rgba(0, 229, 255, 1),
            0 0 60px rgba(124, 77, 255, 0.8);
        opacity: 0.9;
    }
}

@keyframes activeBarScan {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 200%;
    }
}

.god-nav a.active::after {
    opacity: 1;
    background: linear-gradient(135deg, 
        rgba(0, 229, 255, 0.25) 0%,
        rgba(124, 77, 255, 0.2) 50%,
        rgba(0, 255, 166, 0.15) 100%
    );
    animation: activeBgPulse 3s ease infinite;
}

@keyframes activeBgPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* God Main */
.god-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(10, 20, 40, 0.4);
}

/* God Topbar */
.god-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.75rem;
    background: rgba(10, 20, 40, 0.6);
    border-bottom: 1px solid rgba(76, 201, 255, 0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    flex-shrink: 0;
}

.ai-state {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-muted);
}

.ai-state .online {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.6);
    margin-left: 0.5rem;
}

.ai-state .pulse {
    animation: pulse 1.4s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.ai-info {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.ai-info .danger {
    color: var(--neon-red);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 23, 68, 0.5);
}

/* AI Status Cards - Glassmorphism + Neon Edge */
.ai-status-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 1.5rem;
    padding-bottom: 1rem;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
    will-change: opacity, transform;
}

.status-card {
    background: rgba(11, 15, 26, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    will-change: opacity, transform;
    min-height: 90px;
}

/* Status card entrance animation */
.status-card.card-animated {
    animation: cardSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.status-card:hover::before {
    opacity: 1;
}

.status-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 229, 255, 0.4);
}

.status-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-main);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    flex-shrink: 0;
}

.status-icon .material-icons {
    font-size: 1.5rem;
}

.status-content {
    flex: 1;
}

.status-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--neon-cyan) !important;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    position: relative;
    z-index: 1;
}

@supports not (-webkit-background-clip: text) {
    .status-value {
        color: var(--neon-cyan) !important;
        -webkit-text-fill-color: var(--neon-cyan) !important;
        background: none !important;
    }
}

/* God Grid */
.god-grid {
    flex: 1;
    padding: 1.5rem;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

.god-grid::-webkit-scrollbar {
    width: 8px;
}

.god-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

.god-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.3);
    border-radius: 4px;
}

.god-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 229, 255, 0.5);
}

.dashboard-view {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, minmax(200px, auto));
    gap: 1.25rem;
    opacity: 1;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                display 0.4s ease;
    width: 100%;
    min-height: 100%;
    transform: translateY(0);
    will-change: opacity, transform;
    align-items: start;
}

.dashboard-view[style*="display: none"] {
    opacity: 0;
    transform: translateY(10px);
}

/* Dashboard view entrance animation */
.dashboard-view.entering {
    animation: dashboardFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.dashboard-view.leaving {
    animation: dashboardFadeOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes dashboardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes dashboardFadeOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.98);
    }
}

/* God Panel - Iron Man HUD Style */
.god-panel {
    position: relative;
    background: rgba(16, 22, 35, 0.9);
    border: 1px solid rgba(76, 201, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.25rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    will-change: opacity, transform;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    height: 100%;
}

/* Panel entrance animation */
.god-panel.panel-animated {
    animation: panelSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes panelSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95) rotateX(5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

.god-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.god-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.god-panel:hover::before {
    opacity: 1;
}

.god-panel:hover::after {
    opacity: 1;
}

.god-panel:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 90px rgba(124, 77, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.4);
}

.god-panel h3 {
    margin: 0 0 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--neon-cyan) !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid rgba(76, 201, 255, 0.15);
    padding-bottom: 0.75rem;
    text-shadow: 
        0 0 6px rgba(0, 200, 255, 0.25),
        0 0 16px rgba(0, 200, 255, 0.15),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    filter: none !important;
    flex-shrink: 0;
    /* Ensure text is always visible - override any gradient text effects */
    -webkit-text-fill-color: var(--neon-cyan) !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    position: relative;
    z-index: 1;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
    /* Additional visibility */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.panel h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ai-blue);
    letter-spacing: -0.01em;
}

/* Network Panel - Bot Network Graph (Palantir Style) */
.network-panel {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 400px;
}

#network {
    width: 100%;
    height: calc(100% - 2rem);
    display: block;
    border-radius: 12px;
}

#network-view {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
}

.network-graph-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.network-overlay-stats {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 10;
}

.network-stat-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(11, 15, 26, 0.95);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    min-width: 180px;
}

.network-stat-card:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.2);
    transform: translateX(-4px);
}

.network-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(124, 77, 255, 0.2));
    border-radius: 8px;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.network-stat-icon .material-icons {
    font-size: 1.25rem;
    color: var(--neon-cyan);
}

.network-stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.network-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.network-stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
    font-family: 'JetBrains Mono', monospace;
}

.network-legend {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(11, 15, 26, 0.95);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px currentColor;
}

.legend-color.active {
    background: var(--neon-cyan);
    color: var(--neon-cyan);
}

.legend-color.standby {
    background: #ffa726;
    color: #ffa726;
}

.legend-color.connection {
    background: rgba(0, 229, 255, 0.4);
    color: rgba(0, 229, 255, 0.4);
    width: 2px;
    height: 12px;
    border-radius: 0;
}

.legend-text {
    font-size: 0.75rem;
    color: var(--text-main);
    opacity: 0.8;
}

/* Analytics Panel - Threat Analytics */
.analytics-panel {
    grid-column: 2;
    grid-row: 1;
    min-height: 250px;
}

.analytics-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.analytics-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.analytics-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.analytics-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.analytics-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    animation: analyticsPulse 2s ease-in-out infinite;
    transition: width 0.5s ease;
}

@keyframes analyticsPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.analytics-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-align: right;
}

/* Insight Panel - AI Insight */
.insight-panel {
    grid-column: 3;
    grid-row: 1;
    min-height: 250px;
    max-height: 400px;
    overflow-y: auto;
    /* Center content */
    align-items: center;
    text-align: center;
}

.insight-list {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    max-height: 200px;
    overflow-y: auto;
    /* Center items */
    align-items: center;
    width: 100%;
}

.insight-list::-webkit-scrollbar {
    width: 4px;
}

.insight-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.insight-list::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.3);
    border-radius: 2px;
}

.insight-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 229, 255, 0.5);
}

.insight-item {
    display: flex;
    gap: 0.625rem;
    padding: 0.625rem;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(124, 77, 255, 0.05));
    border-radius: 8px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-left: 3px solid var(--neon-cyan);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2),
                0 0 15px rgba(0, 229, 255, 0.1);
    /* Center content */
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.insight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.insight-item:hover::before {
    left: 100%;
}

.insight-item:hover {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(124, 77, 255, 0.1));
    border-color: rgba(0, 229, 255, 0.4);
    border-left-color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
                0 0 25px rgba(0, 229, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.insight-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.25), rgba(124, 77, 255, 0.2));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    flex-shrink: 0;
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.insight-item:hover .insight-icon {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.35), rgba(124, 77, 255, 0.3));
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.insight-icon .material-icons {
    font-size: 1.25rem;
    filter: drop-shadow(0 0 8px rgba(0, 229, 255, 0.6));
}

.insight-content {
    flex: 1;
    /* Center text */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.insight-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    color: var(--text-main);
    line-height: 1.3;
    margin-bottom: 0.125rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    transition: color 0.3s ease;
    text-align: center;
    width: 100%;
}

.insight-item:hover .insight-text {
    color: var(--text-light);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.insight-time {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.insight-item:hover .insight-time {
    opacity: 1;
    color: var(--neon-cyan);
}

/* Timeline Panel - AI Timeline (Iron Man HUD) */
.timeline-panel {
    grid-column: 2 / 4;
    grid-row: 2;
    min-height: 250px;
    max-height: 400px;
    overflow-y: auto;
    /* Center content */
    align-items: center;
    text-align: center;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    max-height: 200px;
    overflow-y: auto;
    /* Center items */
    align-items: center;
    width: 100%;
}

.timeline-container::-webkit-scrollbar {
    width: 4px;
}

.timeline-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.timeline-container::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.3);
    border-radius: 2px;
}

.timeline-container::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 229, 255, 0.5);
}

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.625rem;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(124, 77, 255, 0.05));
    border-radius: 8px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-left: 3px solid var(--neon-cyan);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2),
                0 0 15px rgba(0, 229, 255, 0.1);
    /* Center content */
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    /* Ensure all children are centered */
    text-align: center;
    /* Make sure the entire item group is centered */
    flex-wrap: nowrap;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.8),
                0 0 25px rgba(0, 229, 255, 0.5);
    border: 2px solid rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.timeline-item:hover::after {
    left: 100%;
}

.timeline-item:hover {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(124, 77, 255, 0.1));
    border-color: rgba(0, 229, 255, 0.4);
    border-left-color: var(--neon-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3),
                0 0 25px rgba(0, 229, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.timeline-item:hover::before {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 1),
                0 0 35px rgba(0, 229, 255, 0.7);
}


.timeline-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid;
    box-shadow: 0 0 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.timeline-icon.warning {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.25), rgba(255, 87, 34, 0.2));
    color: var(--neon-red);
    border-color: rgba(255, 23, 68, 0.4);
    box-shadow: 0 0 15px rgba(255, 23, 68, 0.4);
}

.timeline-icon.bot {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.25), rgba(124, 77, 255, 0.2));
    color: var(--neon-cyan);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}

.timeline-icon.success {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.25), rgba(0, 255, 166, 0.2));
    color: var(--neon-green);
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 25px;
}

.timeline-item:hover .timeline-icon.warning {
    box-shadow: 0 0 25px rgba(255, 23, 68, 0.7);
}

.timeline-item:hover .timeline-icon.bot {
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.7);
}

.timeline-item:hover .timeline-icon.success {
    box-shadow: 0 0 25px rgba(0, 230, 118, 0.7);
}

.timeline-icon .material-icons {
    font-size: 1.125rem;
    filter: drop-shadow(0 0 8px currentColor);
}

.timeline-content {
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    color: var(--text-main);
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    transition: all 0.3s ease;
    /* Center text */
    text-align: center;
    display: block;
    margin: 0 auto;
    /* Ensure text is centered within its container */
    min-width: 0;
}

.timeline-item:hover .timeline-content {
    color: var(--text-light);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.timeline-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    opacity: 0.9;
    font-weight: 600;
    min-width: 75px;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    transition: all 0.3s ease;
    text-align: center;
}

.timeline-item:hover .timeline-time {
    opacity: 1;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.8);
}



/* Radar Panel - Removed (replaced by other panels) */
.radar-panel {
    display: none;
}

/* Metrics Panel */
.metrics-panel {
    min-height: 250px;
    max-height: 500px;
    overflow-y: auto;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.625rem 0;
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(76, 201, 255, 0.1);
}

.metric:last-child {
    border-bottom: none;
}

.metric span {
    flex: 1;
    color: var(--text-light);
    font-weight: 500;
}

.metric b {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 1.125rem;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

/* Logs Panel */
.logs-panel {
    min-height: 300px;
    max-height: 600px;
    overflow-y: auto;
}

/* Stream Panel */
.stream-panel {
    min-height: 300px;
    max-height: 500px;
    overflow-y: auto;
}

.log-stream {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    height: 100%;
    max-height: 600px;
    overflow-y: auto;
    color: var(--neon-green);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.log-entry {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(0, 255, 100, 0.03);
    border-left: 2px solid rgba(0, 255, 100, 0.2);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    animation: logFadeIn 0.3s ease-out;
    font-family: 'JetBrains Mono', monospace;
}

.log-entry:hover {
    background: rgba(0, 255, 100, 0.08);
    border-left-color: var(--neon-green);
}

.log-timestamp {
    font-size: 0.7rem;
    color: rgba(0, 255, 100, 0.6);
    min-width: 100px;
    font-weight: 600;
}

.log-level {
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 80px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.log-level.info {
    color: var(--neon-cyan);
}

.log-level.success {
    color: var(--neon-green);
}

.log-level.warning {
    color: #ffa726;
}

.log-level.error {
    color: #ef5350;
}

.log-message {
    flex: 1;
    font-size: 0.75rem;
    color: var(--text-main);
    line-height: 1.5;
}

@keyframes logFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.log-stream::-webkit-scrollbar {
    width: 6px;
}

.log-stream::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.log-stream::-webkit-scrollbar-thumb {
    background: rgba(76, 201, 255, 0.3);
    border-radius: 3px;
}

.log-stream::-webkit-scrollbar-thumb:hover {
    background: rgba(76, 201, 255, 0.5);
}

/* Removed - using .log-entry instead */

@keyframes logFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* ================================
   DATA INGESTION STREAM (Palantir Apollo Style)
================================ */
.data-stream-container {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    height: 300px;
    overflow-y: auto;
    color: var(--neon-cyan);
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem;
    border-radius: 8px;
    position: relative;
    border: 1px solid rgba(76, 201, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.stream-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 229, 255, 0.05);
    border-left: 3px solid var(--neon-cyan);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    animation: streamFadeIn 0.3s ease-out;
}

.stream-item:hover {
    background: rgba(0, 229, 255, 0.1);
    border-left-color: var(--neon-purple);
    transform: translateX(4px);
}

.stream-time {
    font-size: 0.65rem;
    color: rgba(0, 229, 255, 0.6);
    font-weight: 600;
    min-width: 70px;
    font-family: 'JetBrains Mono', monospace;
}

.stream-icon {
    font-size: 1.25rem;
    color: var(--neon-cyan);
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.stream-item:hover .stream-icon {
    opacity: 1;
    color: var(--neon-purple);
}

.stream-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stream-text {
    font-size: 0.8rem;
    color: var(--text-main);
    line-height: 1.4;
}

.stream-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
    opacity: 0.7;
    font-family: 'JetBrains Mono', monospace;
}

.stream-network-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 229, 255, 0.1);
}

.stream-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: var(--radius-sm);
}

.stream-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.stream-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    font-family: 'JetBrains Mono', monospace;
}

.stream-line {
    white-space: nowrap;
    margin-bottom: 4px;
    opacity: 0.8;
    animation: streamFadeIn 0.2s ease-out;
    line-height: 1.6;
}

.stream-line .timestamp {
    color: rgba(255, 255, 255, 0.3);
}

.stream-line .hex {
    color: var(--neon-purple);
}

.stream-line .status {
    color: #00FF00;
    font-weight: bold;
}

.stream-line .method {
    color: #FFD700;
}

@keyframes streamFadeIn {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }
    to {
        opacity: 0.8;
        transform: translateX(0);
    }
}

/* Bots Panel */
.bots-panel {
    min-height: 250px;
    max-height: 500px;
    overflow-y: auto;
}

.bot-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 400px;
    overflow-y: auto;
}

.bot-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem;
    margin: 0.5rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: all 0.3s ease;
}

.bot-list li:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.4);
    transform: translateX(4px);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.bot-list::-webkit-scrollbar {
    width: 4px;
}

.bot-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.bot-list::-webkit-scrollbar-thumb {
    background: rgba(0, 229, 255, 0.3);
    border-radius: 2px;
}

.bot-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 229, 255, 0.5);
}

.bot-name {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.875rem;
}

.status-active {
    color: var(--neon-green);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 230, 118, 0.1);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.2);
}

.status-standby {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    background: rgba(143, 163, 199, 0.1);
    border-radius: 4px;
}

/* ================================
   SCREENSHOTS SECTION
================================ */
.screenshots {
    padding: 140px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {
    .screenshots-grid {
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.screenshot-item {
    position: relative;
}

.screenshot-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 229, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(11, 15, 26, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem;
    cursor: pointer;
}

.screenshot-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.screenshot-overlay .material-icons {
    font-size: 3rem;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.8);
}

.screenshot-wrapper:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-item {
    position: relative;
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: calc(var(--radius) - 4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.screenshot-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 229, 255, 0.3);
    border-color: rgba(0, 229, 255, 0.4);
}

.screenshot-wrapper:hover .screenshot-img {
    transform: scale(1.02);
}

.screenshot-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.screenshot-wrapper:hover::before {
    opacity: 1;
}

/* ================================
   LIGHTBOX MODAL - SIMPLIFIED & FIXED
================================ */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: auto;
}

#lightbox.active {
    scroll-behavior: auto;
}

#lightbox.active:focus {
    outline: none;
}

#lightbox.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
}

#lightbox.active #lightbox-img,
#lightbox.active .lightbox-image {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    filter: none !important;
    -webkit-filter: none !important;
    background: transparent !important;
    background-color: transparent !important;
    mix-blend-mode: normal !important;
    position: relative !important;
    z-index: 1000003 !important;
    transform: none !important;
    -webkit-transform: none !important;
}

/* Remove any pseudo-elements that might overlay the image */
#lightbox.active #lightbox-img::before,
#lightbox.active #lightbox-img::after,
#lightbox.active .lightbox-image::before,
#lightbox.active .lightbox-image::after {
    display: none !important;
    content: none !important;
}

#lightbox.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000000;
    background: transparent !important;
    background-color: transparent !important;
    pointer-events: none;
    margin: 0 auto;
    padding: 0;
    flex-shrink: 0;
}

.lightbox-content img {
    pointer-events: auto;
    position: relative;
    z-index: 1000001;
    margin: 0 auto;
    display: block;
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(11, 15, 26, 0.95);
    border: 2px solid rgba(0, 229, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--neon-cyan);
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 1000001;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
}

.lightbox-close:hover {
    background: rgba(0, 229, 255, 0.2);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.6);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-close .material-icons {
    font-size: 28px;
}

#lightbox-img,
.lightbox-image {
    max-width: 100% !important;
    max-height: 85vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 12px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(0, 194, 255, 0.4);
    border: 3px solid rgba(0, 194, 255, 0.5);
    background: transparent !important;
    background-color: transparent !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: lightboxFadeIn 0.4s ease;
    filter: brightness(1) contrast(1) saturate(1) !important;
    -webkit-filter: brightness(1) contrast(1) saturate(1) !important;
    mix-blend-mode: normal !important;
    image-rendering: auto !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative !important;
    z-index: 1000002 !important;
}

/* Override any global img styles - Maximum specificity */
#lightbox.lightbox.active #lightbox-img,
#lightbox.lightbox.active .lightbox-image,
#lightbox.active #lightbox-img,
#lightbox.active .lightbox-image,
#lightbox #lightbox-img,
#lightbox .lightbox-image {
    filter: none !important;
    -webkit-filter: none !important;
    background: transparent !important;
    background-color: transparent !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    mix-blend-mode: normal !important;
    position: relative !important;
    z-index: 1000003 !important;
    transform: none !important;
    -webkit-transform: none !important;
    image-rendering: auto !important;
}

/* Ensure lightbox content doesn't block image */
#lightbox.active .lightbox-content {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Remove any overlays */
#lightbox.active .lightbox-content::before,
#lightbox.active .lightbox-content::after {
    display: none !important;
    content: none !important;
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: var(--text-main);
    font-size: 1.125rem;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: rgba(11, 15, 26, 0.9);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 229, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 90%;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Prevent body scroll when lightbox is open */
body.lightbox-open {
    overflow: hidden !important;
}

/* ================================
   ALL TABS OVERVIEW SECTION
================================ */
.all-tabs-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: linear-gradient(180deg, 
        rgba(11, 15, 26, 0.95) 0%,
        rgba(11, 15, 26, 0.98) 50%,
        rgba(11, 15, 26, 0.95) 100%
    );
    border-top: 1px solid rgba(76, 201, 255, 0.1);
    border-bottom: 1px solid rgba(76, 201, 255, 0.1);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.all-tabs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tab-summary-card {
    background: rgba(16, 22, 35, 0.9);
    border: 1px solid rgba(76, 201, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tab-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--neon-cyan) 0%,
        var(--neon-purple) 50%,
        var(--neon-cyan) 100%
    );
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    animation: gradientShift 3s ease infinite;
}

.tab-summary-card:hover::before {
    transform: scaleX(1);
}

.tab-summary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(0, 229, 255, 0.2);
    border-color: rgba(76, 201, 255, 0.3);
}

.tab-summary-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(76, 201, 255, 0.1);
    position: relative;
}

.tab-summary-header .material-icons {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-main);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.5),
                0 4px 12px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-summary-header .material-icons::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.3), rgba(124, 77, 255, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-summary-card:hover .tab-summary-header .material-icons {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 35px rgba(0, 229, 255, 0.7),
                0 6px 20px rgba(0, 0, 0, 0.4);
}

.tab-summary-card:hover .tab-summary-header .material-icons::before {
    opacity: 1;
}

.tab-summary-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan) !important;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 100 !important;
    isolation: isolate;
    overflow: visible;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3),
                 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Additional visibility */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@supports not (-webkit-background-clip: text) {
    .tab-summary-header h3 {
        color: var(--neon-cyan) !important;
        -webkit-text-fill-color: var(--neon-cyan) !important;
        background: none !important;
        background-clip: unset !important;
        -webkit-background-clip: unset !important;
    }
}

.tab-summary-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.summary-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.summary-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.tab-summary-card:hover .summary-stat {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-2px);
}

.summary-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.summary-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.summary-insights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
}

.summary-insight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(124, 77, 255, 0.05);
    border-left: 3px solid var(--neon-purple);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.summary-insight-item .material-icons {
    font-size: 1.125rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 229, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.tab-summary-card:hover .summary-insight-item {
    background: rgba(124, 77, 255, 0.1);
    border-left-color: var(--neon-cyan);
    transform: translateX(4px);
}

.tab-summary-card:hover .summary-insight-item .material-icons {
    background: rgba(0, 229, 255, 0.3);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
    transform: scale(1.1);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ================================
   FEATURES SECTION
================================ */
.features {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid rgba(76, 201, 255, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
    align-items: stretch;
}

.feature-card {
    background: rgba(16, 22, 35, 0.9);
    border: 1px solid rgba(76, 201, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(76, 201, 255, 0.25);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    border-radius: 12px;
    color: var(--bg-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 25%, var(--primary-light) 50%, var(--primary) 75%, var(--primary2) 100%);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: iconRotate 3s linear infinite;
}

.feature-card:hover .feature-icon::before {
    opacity: 0.3;
}

.feature-icon .material-icons {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4);
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: var(--text-main) !important;
    letter-spacing: -0.01em;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    -webkit-text-fill-color: var(--text-main) !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
    flex: 1;
}

.feature-card p .material-icons {
    font-size: 1rem;
    vertical-align: middle;
    color: var(--neon-cyan);
    margin: 0 0.25rem;
    opacity: 0.8;
}

.feature-card ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    flex: 1;
}

.feature-card ul li {
    padding: 0.625rem 0;
    color: var(--text-light);
    border-bottom: 1px solid rgba(76, 201, 255, 0.08);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    font-weight: 400;
    gap: 0.625rem;
    line-height: 1.5;
}

.feature-card ul li:last-child {
    border-bottom: none;
}

.feature-card ul li:hover {
    color: var(--neon-cyan);
    padding-left: 0.25rem;
}

.feature-card:hover ul li {
    color: var(--text-light);
}

.feature-card ul li .material-icons {
    color: var(--neon-cyan);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    transition: transform 0.3s ease;
}

.feature-card ul li:hover .material-icons {
    transform: scale(1.1);
}

.feature-note {
    background: rgba(0, 217, 255, 0.1);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-top: 1.25rem;
    border-left: 3px solid var(--neon-cyan);
    font-size: 0.9rem;
    line-height: 1.6;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    color: var(--text-light);
}

.feature-note .material-icons {
    color: var(--neon-cyan);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.keywords-actions {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(76, 201, 255, 0.15);
}

.keywords-action {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.625rem;
    padding: 0.5rem 0.75rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.keywords-action:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.2);
    color: var(--text-light);
    transform: translateX(4px);
}

.keywords-action:last-child {
    margin-bottom: 0;
}

.keywords-action .material-icons {
    color: var(--neon-cyan);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.keywords-action:last-child {
    margin-bottom: 0;
}

.keywords-action .material-icons {
    color: var(--primary);
    font-size: 1.125rem;
    flex-shrink: 0;
    vertical-align: middle;
}

.additional-features {
    background: rgba(16, 22, 35, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: var(--radius);
    margin-top: 4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(76, 201, 255, 0.15);
    position: relative;
    overflow: hidden;
    /* Ensure content is centered */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.additional-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    opacity: 0.6;
}

.additional-features h3 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin: 0 auto 2.5rem auto !important;
    /* Always use visible color first */
    color: var(--neon-cyan) !important;
    -webkit-text-fill-color: var(--neon-cyan) !important;
    letter-spacing: -0.02em !important;
    text-align: center !important;
    position: relative !important;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.5),
                 0 0 40px rgba(0, 229, 255, 0.3),
                 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    padding: 0 1rem !important;
    z-index: 100 !important;
    isolation: isolate !important;
    overflow: visible !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    /* Center alignment - let parent flexbox handle centering */
    width: auto !important;
    max-width: 100% !important;
    /* Additional visibility properties */
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    /* Ensure text is not hidden by any parent elements */
    transform: none !important;
    /* Force text to be visible */
    min-height: auto !important;
    height: auto !important;
    /* Remove any filters that might hide text */
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.4)) !important;
    /* Ensure it's centered by parent flexbox */
    align-self: center !important;
}

/* Apply gradient only if supported, with fallback */
@supports (-webkit-background-clip: text) and (background-clip: text) {
    .additional-features h3 {
        background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-green)) !important;
        background-size: 200% 200% !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
        animation: titleGradient 3s ease infinite !important;
    }
}

@supports not (-webkit-background-clip: text) {
    .additional-features h3 {
        color: var(--neon-cyan) !important;
        -webkit-text-fill-color: var(--neon-cyan) !important;
        background: none !important;
        background-clip: unset !important;
        -webkit-background-clip: unset !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        text-shadow: 0 0 20px rgba(0, 229, 255, 0.5),
                     0 0 40px rgba(0, 229, 255, 0.3),
                     2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    }
}

/* Force visibility - override any conflicting rules with higher specificity */
section .additional-features h3,
.additional-features h3 {
    /* Ensure text color is always visible as fallback */
    color: var(--neon-cyan) !important;
    -webkit-text-fill-color: var(--neon-cyan) !important;
    /* Make sure text is not hidden */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    /* Prevent any transforms that might hide text */
    transform: none !important;
    /* Ensure text rendering */
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    /* Force text to be visible */
    min-height: auto !important;
    height: auto !important;
    /* Center alignment - use auto width for centering */
    width: auto !important;
    max-width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    /* Ensure content is not clipped */
    clip: auto !important;
    clip-path: none !important;
    /* Strong text shadow for visibility */
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.5),
                 0 0 40px rgba(0, 229, 255, 0.3),
                 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    /* Center with flexbox */
    align-self: center !important;
}

.additional-features h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-green));
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.6),
                0 0 24px rgba(124, 77, 255, 0.4);
    animation: underlinePulse 2s ease-in-out infinite;
}

.control-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.control-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(16, 22, 35, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 0 1px rgba(76, 201, 255, 0.1);
    border: 1px solid rgba(76, 201, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.control-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.control-item:hover::before {
    transform: scaleX(1);
}

.control-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 
                0 0 30px rgba(0, 229, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(76, 201, 255, 0.4);
    background: rgba(16, 22, 35, 0.9);
}

.control-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 14px;
    color: var(--bg-main);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4),
                0 4px 12px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.control-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.3), rgba(124, 77, 255, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.control-icon .material-icons {
    font-size: 2rem;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.control-item:hover .control-icon {
    transform: translateY(-4px) scale(1.1) rotate(5deg);
    box-shadow: 0 0 35px rgba(0, 229, 255, 0.6),
                0 8px 20px rgba(0, 0, 0, 0.4);
}

.control-item:hover .control-icon::before {
    opacity: 1;
}

.control-item span:last-child {
    font-size: 1.0625rem;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.6;
    flex: 1;
    transition: color 0.3s ease;
}

.control-item:hover span:last-child {
    color: var(--text-light);
}

/* ================================
   PRICING SECTION - SALES FOCUSED
================================ */
.pricing {
    padding: 120px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-top: 1px solid rgba(76, 201, 255, 0.1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: stretch;
    justify-items: stretch;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
        align-items: stretch;
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
        align-items: stretch;
    }
}

@media (min-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
        align-items: stretch;
    }
}

@media (min-width: 1400px) {
    .pricing-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.75rem;
        align-items: stretch;
    }
    
    .pricing-card.featured {
        grid-column: 5;
        grid-row: 1;
        align-self: stretch;
    }
}

.pricing-card {
    background: rgba(16, 22, 35, 0.9);
    border: 1px solid rgba(76, 201, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pricing-card.featured {
    padding: 2.5rem;
}

.pricing-card:not(.featured) {
    z-index: 1;
}

.pricing-card:not(.featured):hover {
    z-index: 3;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:not(.featured):hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(0, 229, 255, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(76, 201, 255, 0.4);
    background: rgba(16, 22, 35, 0.95);
}

.pricing-card.featured {
    border-color: rgba(0, 229, 255, 0.4);
    border-width: 2px;
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 
                0 0 0 2px rgba(0, 217, 255, 0.3), 
                0 0 50px rgba(0, 217, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: rgba(16, 22, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    z-index: 2;
}


.pricing-card.featured::before {
    background: linear-gradient(90deg, 
        #00E5FF 0%,
        #4CC9FF 25%,
        #7C4DFF 50%,
        #9C7AFF 75%,
        #00FFA6 100%
    );
    background-size: 200% 100%;
    height: 6px;
    transform: scaleX(1);
    animation: featuredGlow 3s ease infinite, featuredShine 4s linear infinite;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.8),
                0 0 40px rgba(124, 77, 255, 0.6);
}

@keyframes featuredShine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes featuredGlow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.8);
    }
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    border-radius: var(--radius);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5), 
                0 0 0 2px rgba(0, 217, 255, 0.5), 
                0 0 60px rgba(0, 217, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 229, 255, 0.6);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00E5FF, #7C4DFF, #00FFA6);
    color: #0A0E17;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.6), 
                0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 15;
    border: 2px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.pricing-card.featured:hover .badge {
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.8), 
                0 6px 20px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateX(-50%) translateY(-2px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.pricing-header h3 {
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--text-main) !important;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.5),
                 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    /* Ensure text is always visible - override any gradient text effects */
    -webkit-text-fill-color: var(--text-main) !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    position: relative;
    z-index: 1;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
    /* Additional visibility */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pricing-card.featured .pricing-header h3 {
    font-size: 2rem;
    color: #00E5FF !important;
    background: linear-gradient(135deg, #00E5FF, #7C4DFF, #00FFA6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.6));
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

@supports not (-webkit-background-clip: text) {
    .pricing-card.featured .pricing-header h3 {
        color: #00E5FF !important;
        -webkit-text-fill-color: #00E5FF !important;
        background: none !important;
    }
}


.pricing-card.featured .pricing-header {
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #00E5FF, #7C4DFF, #00FFA6);
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00c2ff !important;
    background: linear-gradient(120deg, #00c2ff, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin: 0.75rem 0 0.5rem;
    letter-spacing: 0;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.6)) drop-shadow(0 0 10px rgba(124, 77, 255, 0.4));
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    width: 100%;
    min-width: fit-content;
    white-space: nowrap;
    overflow: visible;
    position: relative;
    z-index: 1;
}

@supports not (-webkit-background-clip: text) {
    .price {
        color: #00c2ff !important;
        -webkit-text-fill-color: #00c2ff !important;
        background: none !important;
    }
}

.pricing-card.featured .price {
    color: #00E5FF !important;
    background: linear-gradient(135deg, #00E5FF, #7C4DFF, #00FFA6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 25px rgba(0, 229, 255, 0.7)) 
            drop-shadow(0 0 12px rgba(124, 77, 255, 0.5));
    font-size: 2.75rem;
    line-height: 1.1;
    letter-spacing: 0;
    width: 100%;
    min-width: fit-content;
    white-space: nowrap;
    overflow: visible;
    position: relative;
    z-index: 1;
}

@supports not (-webkit-background-clip: text) {
    .pricing-card.featured .price {
        color: #00E5FF !important;
        -webkit-text-fill-color: #00E5FF !important;
        background: none !important;
    }
}


.price span {
    font-size: 1.25rem;
    font-weight: 500;
}

.price-note {
    color: var(--text-light);
    margin-top: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.5;
    text-align: center;
}

.price-note:first-of-type {
    margin-top: 1rem;
}

.price-note + .price-note {
    margin-top: 0.5rem;
}

.price-note .material-icons {
    color: var(--neon-cyan);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.pricing-card.featured .price-note {
    color: var(--text-light);
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 500;
    padding: 0.625rem 1rem;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.25);
    margin: 0.5rem auto;
    width: fit-content;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2),
                0 0 15px rgba(0, 229, 255, 0.2);
}

.pricing-card.featured .price-note:hover {
    background: rgba(0, 229, 255, 0.18);
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 229, 255, 0.3);
    transform: translateY(-2px);
}

.pricing-card.featured .price-note .material-icons {
    color: var(--neon-cyan);
    font-size: 1.125rem;
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.6));
    position: relative;
    z-index: 1;
}

.price-average {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.85;
    line-height: 1.4;
}

.price-savings {
    color: var(--neon-green);
    margin-top: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.375rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.15), rgba(0, 230, 118, 0.08));
    border-radius: 10px;
    border: 1px solid rgba(0, 230, 118, 0.3);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.5;
    transition: all 0.3s ease;
    text-align: center;
    word-break: keep-all;
}

.price-savings::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 230, 118, 0.2), transparent);
    transition: left 0.5s ease;
}

.price-savings:hover::before {
    left: 100%;
}

.price-savings:hover {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.2), rgba(0, 230, 118, 0.12));
    border-color: rgba(0, 230, 118, 0.4);
    box-shadow: 0 0 25px rgba(0, 230, 118, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.price-discount {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 0 10px rgba(0, 230, 118, 0.6),
                 0 0 20px rgba(0, 230, 118, 0.4);
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.2), rgba(0, 230, 118, 0.1));
    padding: 0.125rem 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(0, 230, 118, 0.3);
    display: inline-block;
    line-height: 1.2;
    margin-left: 0.25rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(76, 201, 255, 0.08);
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    font-weight: 400;
}

.pricing-features li:hover {
    color: var(--neon-cyan);
    padding-left: 0.5rem;
}

.pricing-features li .material-icons {
    color: var(--neon-green);
    font-size: 1.125rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    transition: transform 0.3s ease;
}

.pricing-features li:hover .material-icons {
    transform: scale(1.2) rotate(5deg);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card:hover .pricing-features li {
    color: var(--text-light);
}

/* Featured Card Pricing Features */
.pricing-card.featured .pricing-features {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.pricing-card.featured .pricing-features li {
    padding: 1rem;
    background: rgba(0, 229, 255, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured .pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.pricing-card.featured .pricing-features li:hover {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 229, 255, 0.25);
    color: var(--text-light);
    padding-left: 1.25rem;
}

.pricing-card.featured .pricing-features li:hover::before {
    transform: scaleY(1);
}

.pricing-card.featured .pricing-features li .material-icons {
    color: var(--neon-green);
    font-size: 1.25rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 230, 118, 0.15);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0;
}

.pricing-card.featured .pricing-features li:hover .material-icons {
    background: rgba(0, 230, 118, 0.25);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.5);
    color: var(--neon-green);
}

.pricing-card.featured .pricing-features li:last-child {
    margin-bottom: 0;
}

/* Lifetime Features Header */
.lifetime-features-header {
    margin: 2rem 0;
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    background: rgba(0, 229, 255, 0.05);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.lifetime-features-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00E5FF, #7C4DFF, #00FFA6);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}


.lifetime-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #00E5FF !important;
    background: linear-gradient(135deg, #00E5FF, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: -0.01em;
    filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

@supports not (-webkit-background-clip: text) {
    .lifetime-title {
        color: #00E5FF !important;
        -webkit-text-fill-color: #00E5FF !important;
        background: none !important;
    }
}

.lifetime-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.lifetime-subtitle:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    transform: translateY(-2px);
}

.lifetime-subtitle .material-icons {
    color: var(--neon-cyan);
    font-size: 1.25rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
    transition: all 0.3s ease;
}

.lifetime-subtitle:hover .material-icons {
    background: rgba(0, 229, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

/* Featured card button alignment */
.pricing-card.featured .btn {
    margin-top: auto;
}

.pricing-card .btn {
    margin-top: auto;
    align-self: stretch;
    width: 100%;
    justify-content: center;
}

.lifetime-benefits {
    background: linear-gradient(135deg, 
        rgba(16, 22, 35, 0.95) 0%,
        rgba(10, 20, 40, 0.95) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3.5rem;
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4),
                0 0 0 2px rgba(0, 229, 255, 0.2),
                0 0 40px rgba(0, 229, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 229, 255, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.lifetime-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-green));
    background-size: 200% 100%;
    animation: lifetimeShine 3s linear infinite;
}

@keyframes lifetimeShine {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.lifetime-benefits::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    border-radius: var(--radius);
}

.lifetime-benefits h3 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    color: var(--neon-cyan) !important;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-green));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--neon-cyan) !important;
    background-clip: text;
    letter-spacing: -0.02em;
    text-align: center;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(0, 229, 255, 0.5));
    animation: titleGradient 3s ease infinite;
    padding: 0 1rem;
    z-index: 100;
    isolation: isolate;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
    /* Force text visibility - use solid color instead of transparent */
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.8),
                 0 0 40px rgba(0, 229, 255, 0.4),
                 0 0 60px rgba(0, 229, 255, 0.2);
}

@supports not (-webkit-background-clip: text) {
    .lifetime-benefits h3 {
        color: var(--neon-cyan) !important;
        -webkit-text-fill-color: var(--neon-cyan) !important;
        background: none !important;
    }
}

.lifetime-benefits h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-green));
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.6),
                0 0 30px rgba(124, 77, 255, 0.4);
    animation: underlinePulse 2s ease-in-out infinite;
    z-index: 1;
}

/* Ensure text is always visible for lifetime-benefits h3 */
.lifetime-benefits h3 {
    color: var(--neon-cyan) !important;
}

.lifetime-benefits ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.lifetime-benefits ul li {
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(76, 201, 255, 0.15);
    border-radius: 12px;
    margin-bottom: 1rem;
    background: rgba(16, 22, 35, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    overflow: hidden;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.7;
}

.lifetime-benefits ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.lifetime-benefits ul li:hover {
    background: rgba(16, 22, 35, 0.6);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(0, 229, 255, 0.2);
    border-color: rgba(76, 201, 255, 0.3);
}

.lifetime-benefits ul li:hover::before {
    transform: scaleY(1);
}

.lifetime-benefits ul li:hover {
    color: var(--text-light);
}

.lifetime-benefits ul li:last-child {
    border-bottom: none;
}

.lifetime-benefits ul li .material-icons {
    color: var(--neon-cyan);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 229, 255, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.lifetime-benefits ul li:hover .material-icons {
    background: rgba(0, 229, 255, 0.25);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
}

/* ================================
   TEST SECTION
================================ */
.test-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(0, 217, 255, 0.08) 0%, 
        rgba(0, 184, 255, 0.12) 50%,
        rgba(124, 77, 255, 0.08) 100%
    );
    color: var(--text-main);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
}

.test-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(124, 77, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 166, 0.08) 0%, transparent 60%);
    opacity: 0.7;
    pointer-events: none;
    animation: testSectionBg 8s ease-in-out infinite;
}

@keyframes testSectionBg {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.test-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    animation: testGridMove 20s linear infinite;
}

@keyframes testGridMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 50px 50px;
    }
}

.test-card {
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(16, 22, 35, 0.95) 0%,
        rgba(10, 20, 40, 0.95) 100%
    );
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 4rem 3rem;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(0, 229, 255, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.3s ease;
}

.test-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        #00E5FF 0%,
        #4CC9FF 25%,
        #7C4DFF 50%,
        #9C7AFF 75%,
        #00FFA6 100%
    );
    background-size: 200% 100%;
    animation: testCardGlow 3s ease infinite;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
}

@keyframes testCardGlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.test-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    animation: testCardRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes testCardRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.test-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 
                0 0 40px rgba(0, 229, 255, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.test-card h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    color: #00E5FF !important;
    background: linear-gradient(135deg, 
        #00E5FF 0%,
        #4CC9FF 25%,
        #7C4DFF 50%,
        #9C7AFF 75%,
        #00FFA6 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00E5FF !important;
    background-clip: text;
    background-size: 200% 200%;
    animation: testTitleGradient 4s ease infinite;
    filter: drop-shadow(0 0 10px rgba(0, 194, 255, 0.4))
            drop-shadow(0 0 20px rgba(124, 77, 255, 0.3));
    position: relative;
    z-index: 100;
    isolation: isolate;
    line-height: 1.2;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center;
    padding: 0 1rem;
    /* Force text visibility - use solid color instead of transparent */
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.8),
                 0 0 40px rgba(0, 229, 255, 0.4),
                 0 0 60px rgba(0, 229, 255, 0.2);
}

@supports not (-webkit-background-clip: text) {
    .test-card h2 {
        color: #00E5FF !important;
        -webkit-text-fill-color: #00E5FF !important;
        background: none !important;
        text-shadow: 0 0 20px rgba(0, 229, 255, 0.8),
                     0 0 40px rgba(0, 229, 255, 0.4),
                     0 0 60px rgba(0, 229, 255, 0.2);
    }
}

/* Force text visibility - remove transparent fill to ensure text shows */
.test-card h2 {
    /* Remove transparent fill - use solid color */
    -webkit-text-fill-color: #00E5FF !important;
    color: #00E5FF !important;
    /* Keep gradient background but don't clip to text */
    background: linear-gradient(135deg, 
        #00E5FF 0%,
        #4CC9FF 25%,
        #7C4DFF 50%,
        #9C7AFF 75%,
        #00FFA6 100%
    );
    /* Don't clip background to text */
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    /* Strong text-shadow for visibility */
    text-shadow: 0 0 30px rgba(0, 229, 255, 1),
                 0 0 60px rgba(0, 229, 255, 0.6),
                 0 0 90px rgba(0, 229, 255, 0.3),
                 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes testTitleGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.test-card h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00E5FF, #7C4DFF, #00FFA6);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5),
                0 0 30px rgba(124, 77, 255, 0.4);
    animation: testUnderline 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes testUnderline {
    0%, 100% {
        width: 100px;
        opacity: 1;
    }
    50% {
        width: 150px;
        opacity: 0.8;
    }
}

.test-card p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    color: var(--text-light);
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.test-card p .material-icons {
    color: var(--neon-cyan);
    font-size: 1.5rem;
    vertical-align: middle;
    margin: 0 0.5rem;
    animation: arrowPulse 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(5px);
        opacity: 0.7;
    }
}

.test-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    display: inline-block;
    margin-left: 0.5rem;
}

.test-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(124, 77, 255, 0.2));
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.test-link:hover {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    border-color: rgba(0, 229, 255, 0.4);
}

.test-link:hover::before {
    opacity: 1;
}

.test-card .btn {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
    font-size: 1.125rem;
    padding: 18px 40px;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3),
                0 0 60px rgba(124, 77, 255, 0.2);
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(0, 229, 255, 0.3),
                    0 0 60px rgba(124, 77, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 229, 255, 0.5),
                    0 0 80px rgba(124, 77, 255, 0.4);
    }
}

.test-card .btn:hover {
    animation: none;
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.6),
                0 0 100px rgba(124, 77, 255, 0.5),
                0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px) scale(1.02);
}

/* ================================
   SUMMARY SECTION
================================ */
.summary {
    padding: 100px 0;
    background: transparent;
    text-align: center;
    position: relative;
    z-index: 1;
}

.summary-text {
    font-size: 1.625rem;
    font-weight: 400;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* ================================
   CONTACT SECTION
================================ */
.contact {
    padding: 140px 0;
    background: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-item {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    text-align: center;
    min-width: 350px;
    border: 1px solid var(--border-strong);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 217, 255, 0.2), 0 0 40px rgba(0, 217, 255, 0.3);
    border-color: rgba(0, 217, 255, 0.4);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
    border-radius: var(--radius-sm);
    color: var(--bg-dark);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow), var(--glow);
    transition: var(--transition);
}

.contact-icon .material-icons {
    font-size: 2.5rem;
}

.contact-item:hover .contact-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg), var(--glow-strong);
}

.contact-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #F0F5FF !important;
    letter-spacing: -0.02em;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3),
                 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Ensure text is always visible - override any gradient text effects */
    -webkit-text-fill-color: #F0F5FF !important;
    background: none !important;
    background-clip: unset !important;
    -webkit-background-clip: unset !important;
    position: relative;
    z-index: 1;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
    /* Force text to be visible with strong color */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Additional visibility */
    font-family: 'Kanit', sans-serif;
    line-height: 1.4;
}

.contact-item h3 .material-icons {
    font-size: 1.5rem;
    vertical-align: middle;
    margin: 0 0.25rem;
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 242, 255, 0.15);
    border-radius: var(--radius-sm);
    display: inline-block;
    font-family: 'Kanit', sans-serif;
    letter-spacing: 0.05em;
    word-break: break-all;
    max-width: 100%;
    border: 1px solid var(--border-strong);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

.contact-note {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: 'Kanit', sans-serif;
    margin-left: 0.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary2) 100%);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow), var(--glow);
    letter-spacing: 0.02em;
    margin-top: 1rem;
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--glow-strong);
    filter: brightness(1.1);
}

.line-icon .material-icons,
.telegram-icon .material-icons {
    font-size: 1.25rem;
    vertical-align: middle;
}

/* ================================
   FOOTER
================================ */
.footer {
    background: var(--bg-darker);
    color: var(--text-muted);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-strong);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.footer p {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ================================
   ANIMATIONS
================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(2, 4, 10, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0.75rem 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.75rem 2rem;
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        background: var(--text-main);
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-image {
        order: -1;
        margin-bottom: 1rem;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        letter-spacing: -0.3px;
    }
    
    .hero-title::after {
        filter: blur(12px);
        opacity: 0.3;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 100%;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 0;
    }

    .stat-item {
        text-align: center;
        padding: 1rem 0.75rem;
        background: rgba(0, 229, 255, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(0, 229, 255, 0.1);
    }

    .stat-number {
        font-size: 1.875rem;
        min-width: 90px;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 0.8125rem;
        margin-top: 0.5rem;
        line-height: 1.4;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .dashboard-mockup {
        transform: none;
    }

    .dashboard-mockup:hover {
        transform: scale(1.01);
    }

    .dashboard-row {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .section-title::after,

    .features {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.25rem;
    }

    .feature-icon .material-icons {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .feature-card p .material-icons {
        font-size: 0.9rem;
        margin: 0 0.2rem;
    }

    .feature-card ul {
        margin-top: 0.875rem;
    }

    .feature-card ul li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
        gap: 0.5rem;
    }

    .feature-card ul li .material-icons {
        font-size: 1rem;
    }

    .feature-note {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
        margin-top: 1rem;
    }

    .feature-note .material-icons {
        font-size: 1rem;
    }

    .keywords-actions {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .keywords-action {
        font-size: 0.8rem;
        padding: 0.5rem 0.625rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
    }

    .keywords-action .material-icons {
        font-size: 1rem;
    }

    /* God Dashboard Mobile */
    .god-dashboard-section {
        padding: 60px 0;
    }

    .god-dashboard {
        flex-direction: column;
        min-height: auto;
    }

    /* Network Graph Mobile */
    .network-graph-container {
        min-height: 300px;
    }

    .network-overlay-stats {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .network-stat-card {
        min-width: auto;
        flex: 1;
        min-width: 140px;
    }

    .network-stat-value {
        font-size: 1rem;
    }

    .network-legend {
        position: relative;
        bottom: auto;
        left: auto;
        flex-wrap: wrap;
        margin-top: 1rem;
    }



    /* All Tabs Overview Section */
    .all-tabs-section {
        padding: 80px 0;
    }

    .section-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .all-tabs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .tab-summary-card {
        padding: 1.75rem;
    }

    .tab-summary-header .material-icons {
        font-size: 2.25rem;
    }

    .tab-summary-header h3 {
        font-size: 1.375rem;
    }

    .summary-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .god-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(76, 201, 255, 0.15);
        padding: 1rem;
    }

    .god-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .god-nav a {
        flex: 1;
        min-width: calc(50% - 0.25rem);
        text-align: center;
        font-size: 0.75rem;
        padding: 0.625rem 0.5rem;
    }

    .god-topbar {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        padding: 0.75rem 1rem;
    }

    .ai-state,
    .ai-info {
        font-size: 0.75rem;
    }

    .ai-status-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1rem;
    }

    .status-card {
        padding: 1rem;
    }

    .status-icon {
        width: 40px;
        height: 40px;
    }

    .status-icon .material-icons {
        font-size: 1.25rem;
    }

    .status-value {
        font-size: 1.5rem;
    }

    .status-label {
        font-size: 0.7rem;
    }

    .god-grid {
        padding: 1rem;
    }

    .dashboard-view {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }

    .god-panel {
        grid-column: 1 !important;
        grid-row: auto !important;
        min-height: auto;
    }

    .network-panel {
        min-height: 250px;
    }

    .network-panel canvas {
        height: 200px !important;
    }

    .insight-panel,
    .timeline-panel {
        max-height: 300px;
    }

    .timeline-panel {
        grid-column: 1 !important;
    }

    .additional-features {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .additional-features h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .control-buttons {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .control-item {
        padding: 1.5rem;
        gap: 1.25rem;
        flex-direction: row;
        text-align: left;
    }

    .control-icon {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
    }

    .control-icon .material-icons {
        font-size: 1.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        line-height: 1;
    }

    .control-item span:last-child {
        font-size: 1rem;
        line-height: 1.6;
    }

    .pricing {
        padding: 80px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: stretch;
    }

    .pricing-card {
        padding: 1.75rem;
        max-width: 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
        padding: 2rem;
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .pricing-header h3 {
        font-size: 1.5rem;
    }

    .pricing-card.featured .pricing-header h3 {
        font-size: 1.75rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .pricing-card.featured .price {
        font-size: 2.75rem;
    }

    .lifetime-benefits {
        padding: 2rem;
    }

    .test-section {
        padding: 60px 0;
    }

    .test-card {
        padding: 2.5rem 2rem;
    }

    .test-card h2 {
        font-size: 2rem;
    }

    .test-card p {
        font-size: 1.1rem;
    }

    .summary {
        padding: 60px 0;
    }

    .summary-text {
        font-size: 1.25rem;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-item {
        min-width: auto;
        width: 100%;
        padding: 2rem;
    }

    .contact-info {
        flex-direction: column;
    }

    .screenshots {
        padding: 60px 0;
    }

    .screenshots-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .navbar {
        padding: 0.875rem 0;
        position: fixed !important;
        top: 0 !important;
        z-index: 99999 !important;
    }

    .nav-brand .logo {
        height: 32px;
    }

    .nav-brand h1 {
        font-size: 1.125rem;
    }

    .nav-brand {
        gap: 0.5rem;
    }

    .nav-menu {
        top: 60px;
        padding: 1.5rem 0;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 0.625rem 1.5rem;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-wrapper {
        gap: 1.5rem;
        flex-direction: column;
    }

    .hero-image {
        margin-bottom: 0.5rem;
    }

    .program-screenshot {
        border-radius: var(--radius-sm);
        border-width: 2px;
    }

    .hero-title {
        font-size: 1.625rem;
        margin-bottom: 1rem;
        line-height: 1.3;
        letter-spacing: -0.2px;
    }
    
    .hero-title::after {
        filter: blur(10px);
        opacity: 0.25;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
        max-width: 100%;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
        min-width: 90px;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.875rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
        min-height: 48px;
        border-radius: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
        box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
    }

    .btn-outline {
        border-width: 2px;
    }

    .dashboard-mockup {
        padding: 1rem;
    }

    .dashboard-row {
        gap: 0.75rem;
    }

    .dashboard-panel {
        padding: 0.875rem;
        min-height: 75px;
    }

    .dashboard-panel h4 {
        font-size: 0.7rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .dashboard-panel strong {
        font-size: 1.25rem;
        line-height: 1.2;
        white-space: nowrap;
        overflow: visible;
    }

    .screenshots {
        padding: 50px 0;
    }

    .screenshots-grid {
        gap: 1.5rem;
    }

    .screenshot-wrapper {
        border-radius: var(--radius-sm);
        padding: 0.75rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        line-height: 1.3;
        word-break: break-word;
    }

    .section-title::after {
        width: 40px;
        height: 2px;
        bottom: -8px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }


    .features {
        padding: 60px 0;
    }

    .features-grid {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .feature-card {
        padding: 1.5rem 1.25rem;
        border-radius: var(--radius-sm);
        min-height: auto;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        width: 56px;
        height: 56px;
    }

    .feature-icon .material-icons {
        font-size: 1.75rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.625rem;
    }

    .feature-card p {
        font-size: 0.875rem;
        margin-bottom: 0.875rem;
        line-height: 1.5;
    }

    .feature-card p .material-icons {
        font-size: 0.85rem;
        margin: 0 0.15rem;
    }

    .feature-card ul {
        margin-top: 0.75rem;
    }

    .feature-card ul li {
        font-size: 0.8rem;
        padding: 0.5rem 0;
        gap: 0.5rem;
        line-height: 1.4;
    }

    .feature-card ul li .material-icons {
        font-size: 0.95rem;
    }

    .feature-note {
        padding: 0.75rem 0.875rem;
        font-size: 0.8rem;
        margin-top: 0.875rem;
        line-height: 1.5;
    }

    .feature-note .material-icons {
        font-size: 0.95rem;
    }

    .keywords-actions {
        margin-top: 0.875rem;
        padding-top: 0.875rem;
    }

    .keywords-action {
        font-size: 0.75rem;
        padding: 0.5rem 0.625rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
        line-height: 1.4;
    }

    .keywords-action .material-icons {
        font-size: 0.95rem;
    }

    /* God Dashboard Small Mobile */
    .god-dashboard-section {
        padding: 50px 0;
    }

    .god-sidebar {
        padding: 0.875rem;
    }

    /* All Tabs Overview Section */
    .all-tabs-section {
        padding: 60px 0;
    }

    .all-tabs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tab-summary-card {
        padding: 1.5rem;
    }

    .tab-summary-header {
        margin-bottom: 1.25rem;
        padding-bottom: 0.875rem;
    }

    .tab-summary-header .material-icons {
        font-size: 2rem;
    }

    .tab-summary-header h3 {
        font-size: 1.25rem;
    }

    .summary-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .summary-stat {
        padding: 0.875rem;
    }

    .summary-stat .stat-value {
        font-size: 1.25rem;
    }

    .summary-insight-item {
        padding: 0.625rem;
        font-size: 0.875rem;
    }

    .brand {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }

    .god-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(76, 201, 255, 0.15);
        padding: 1rem;
    }

    .god-nav {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .god-nav a {
        font-size: 0.8125rem;
        padding: 0.625rem 0.75rem;
        flex: 1;
        min-width: calc(50% - 0.25rem);
        text-align: center;
    }

    .god-topbar {
        padding: 0.75rem 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .ai-state,
    .ai-info {
        font-size: 0.75rem;
        flex: 1;
        min-width: 0;
    }

    .ai-status-cards {
        grid-template-columns: 1fr;
        gap: 0.625rem;
        padding: 0.875rem;
    }

    .status-card {
        padding: 0.875rem;
    }

    .status-icon {
        width: 36px;
        height: 36px;
    }

    .status-icon .material-icons {
        font-size: 1.125rem;
    }

    .status-value {
        font-size: 1.25rem;
    }

    .status-label {
        font-size: 0.65rem;
    }

    .god-grid {
        padding: 1rem;
        gap: 1rem;
    }

    .god-panel {
        padding: 1rem;
        border-radius: 12px;
    }

    .god-panel h3 {
        font-size: 1.125rem;
        margin-bottom: 0.875rem;
        font-weight: 700;
        line-height: 1.3;
    }

    .network-panel {
        min-height: 200px;
    }

    .network-panel canvas {
        height: 150px !important;
    }

    .insight-panel,
    .timeline-panel {
        grid-column: 1 !important;
        grid-row: auto !important;
        min-height: auto;
        max-height: none;
        margin-bottom: 1rem;
    }

    .insight-list,
    .timeline-container {
        max-height: 300px;
        gap: 0.5rem;
    }

    .insight-item,
    .timeline-item {
        padding: 0.75rem;
        gap: 0.5rem;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: center;
    }

    .insight-icon,
    .timeline-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .insight-icon .material-icons,
    .timeline-icon .material-icons {
        font-size: 1rem;
    }

    .insight-text,
    .timeline-content {
        font-size: 0.75rem;
        line-height: 1.4;
        flex: 1;
        min-width: 0;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .insight-time,
    .timeline-time {
        font-size: 0.7rem;
        min-width: 60px;
        flex-shrink: 0;
    }

    .insight-content {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .additional-features {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        margin-top: 2rem;
    }

    .additional-features h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }

    .control-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .control-item {
        padding: 1rem;
        gap: 0.875rem;
        flex-direction: row;
        text-align: left;
        border-radius: 10px;
        align-items: center;
    }

    .control-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .control-icon .material-icons {
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        line-height: 1;
    }

    .control-item span:last-child {
        font-size: 0.875rem;
        line-height: 1.5;
        flex: 1;
        word-break: break-word;
    }

    /* Insight and Timeline Panels for Mobile */
    .insight-panel,
    .timeline-panel {
        padding: 0.875rem;
        margin-bottom: 1rem;
    }

    .insight-panel h3,
    .timeline-panel h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .insight-list,
    .timeline-container {
        max-height: 250px;
        gap: 0.375rem;
        padding: 0.25rem 0;
    }

    .insight-item,
    .timeline-item {
        padding: 0.625rem;
        gap: 0.5rem;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: center;
        border-radius: 6px;
    }

    .insight-icon,
    .timeline-icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .insight-icon .material-icons,
    .timeline-icon .material-icons {
        font-size: 0.875rem;
    }

    .insight-text,
    .timeline-content {
        font-size: 0.7rem;
        line-height: 1.3;
        flex: 1;
        min-width: 0;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .insight-time,
    .timeline-time {
        font-size: 0.65rem;
        min-width: 55px;
        flex-shrink: 0;
    }

    .insight-content {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 0.125rem;
    }

    .pricing {
        padding: 60px 0;
    }

    .pricing-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .pricing-card {
        padding: 1.25rem;
        border-radius: 12px;
        max-width: 100%;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        grid-column: 1 !important;
        grid-row: auto !important;
        margin-bottom: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .pricing-card.featured {
        padding: 1.5rem;
        order: -1;
        transform: scale(1);
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 2 !important;
        grid-column: 1 !important;
        grid-row: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }

    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }

    .pricing-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .pricing-header {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .pricing-header h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        line-height: 1.3;
        word-break: break-word;
    }

    .pricing-card.featured .pricing-header h3 {
        font-size: 1.375rem;
    }

    .price {
        font-size: 2rem;
        margin: 0.5rem 0 0.25rem;
        line-height: 1.2;
        word-break: break-word;
    }

    .pricing-card.featured .price {
        font-size: 2.25rem;
    }

    .price span {
        font-size: 1.125rem;
    }

    .price-note {
        font-size: 0.875rem;
        padding: 0.5rem 0.875rem;
        margin: 0.5rem auto;
    }

    .pricing-card.featured .price-note {
        font-size: 0.875rem;
        padding: 0.5rem 0.875rem;
    }

    .price-savings {
        font-size: 0.875rem;
        padding: 0.625rem 0.875rem;
        margin-top: 0.875rem;
        white-space: normal;
        line-height: 1.5;
        gap: 0.25rem;
    }

    .price-discount {
        font-size: 0.9375rem;
        padding: 0.125rem 0.375rem;
        margin-left: 0.125rem;
    }

    .pricing-features {
        margin-bottom: 1.25rem;
        gap: 0.5rem;
        padding: 0;
    }

    .pricing-features li {
        font-size: 0.8125rem;
        padding: 0.625rem 0;
        gap: 0.5rem;
        line-height: 1.5;
        word-break: break-word;
    }

    .pricing-features li .material-icons {
        font-size: 0.9375rem;
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .badge {
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .all-tabs-section {
        padding: 60px 0;
    }

    .all-tabs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .tab-summary-card {
        padding: 1.5rem;
    }

    .tab-summary-header .material-icons {
        font-size: 2rem;
        width: 48px;
        height: 48px;
    }

    .tab-summary-header h3 {
        font-size: 1.25rem;
    }

    .lifetime-features-header {
        margin: 1rem 0;
        padding: 0;
    }

    .lifetime-title {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .lifetime-subtitle {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .lifetime-benefits {
        padding: 1.25rem;
        border-radius: 12px;
        margin: 1rem 0;
    }

    .lifetime-benefits h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .lifetime-benefits ul li {
        font-size: 0.9rem;
        padding: 0.875rem 0;
        padding-left: 1.75rem;
    }

    .lifetime-features-header {
        margin: 1.5rem 0;
        padding: 1.5rem 1rem;
    }

    .lifetime-title {
        font-size: 1.125rem;
        margin-bottom: 0.875rem;
    }

    .lifetime-subtitle {
        font-size: 0.9375rem;
        padding: 0.625rem 1rem;
        gap: 0.625rem;
        flex-wrap: wrap;
    }

    .lifetime-subtitle .material-icons {
        font-size: 1.125rem;
        width: 28px;
        height: 28px;
    }

    .pricing-card.featured .pricing-features li {
        padding: 0.625rem;
        gap: 0.5rem;
    }

    .pricing-card.featured .pricing-features li .material-icons {
        font-size: 0.9375rem;
        width: 22px;
        height: 22px;
    }

    .test-section {
        padding: 50px 0;
    }

    .test-card {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-sm);
    }

    .test-card h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .test-card p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .summary {
        padding: 50px 0;
    }

    .summary-text {
        font-size: 1.125rem;
    }

    .contact {
        padding: 50px 0;
    }

    .contact-item {
        padding: 1.75rem;
        border-radius: var(--radius-sm);
    }

    .contact-item h3 {
        font-size: 1.5rem;
    }

    .contact-icon {
        width: 72px;
        height: 72px;
    }

    .contact-icon .material-icons {
        font-size: 2rem;
    }

    .contact-details {
        margin-top: 1.25rem;
    }

    .contact-label {
        font-size: 0.9rem;
    }

    .contact-value {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.25rem;
        word-break: break-word;
    }

    .contact-link {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 100%;
    }

    .line-icon .material-icons,
    .telegram-icon .material-icons {
        font-size: 1.125rem;
    }

    .footer {
        padding: 2rem 0;
    }

    .footer p {
        font-size: 0.9rem;
    }
}

/* Material Icons Base Styles */
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    user-select: none;
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    /* Increase touch target sizes */
    .btn,
    .nav-menu a,
    .god-nav a,
    .contact-link {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent text selection on mobile for better UX */
    .btn,
    .hamburger {
        -webkit-tap-highlight-color: rgba(0, 229, 255, 0.2);
    }

    /* Improve scrolling */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* Very small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .god-nav a {
        font-size: 0.65rem;
        padding: 0.5rem 0.25rem;
    }

    .ai-status-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2.5rem;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-wrapper {
        gap: 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .god-dashboard {
        min-height: 500px;
    }

    .god-sidebar {
        width: 200px;
    }

    .god-nav {
        flex-direction: column;
    }

    .god-nav a {
        min-width: 100%;
    }
}

/* Lightbox mobile improvements */
@media (max-width: 768px) {
    #lightbox-img,
    .lightbox-image {
        max-width: 95vw !important;
        max-height: 80vh !important;
        border-width: 2px !important;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .lightbox-close .material-icons {
        font-size: 24px;
    }

    .lightbox-caption {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
        margin-top: 1rem;
    }
}

/* ================================
   IRON-MAN LEVEL AI DASHBOARD UI
   Billion-Dollar Palantir Style
   =============================== */

/* ================== AI GRID BACKGROUND ================== */
.ai-grid {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    animation: gridMove 40s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    from { background-position: 0 0, 0 0; }
    to { background-position: 600px 600px, 600px 600px; }
}

/* ================== HEADER / TITLE ================== */
.ai-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #00c8ff, #7c5cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 0 12px rgba(0, 200, 255, 0.35),
        0 0 30px rgba(124, 92, 255, 0.2);
    margin: 0;
}

.ai-subtitle {
    color: var(--text-dim);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* ================== CORE PANEL (GLASS) ================== */
.ai-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid var(--border-ai);
    box-shadow: var(--shadow-deep), inset 0 0 40px rgba(0,229,255,0.05);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.ai-panel::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(120deg, transparent 40%, rgba(0,229,255,0.15), transparent 60%);
    opacity: 0.4;
    animation: scanLine 6s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes scanLine {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.ai-panel > * {
    position: relative;
    z-index: 1;
}

/* ================== AI CARD ================== */
.ai-card {
    background: var(--bg-glass);
    border-radius: 16px;
    border: 1px solid var(--border-ai);
    padding: 16px;
    transition: 0.4s ease;
    transform-style: preserve-3d;
}

.ai-card:hover {
    transform: translateY(-10px) rotateX(4deg) rotateY(-4deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 30px rgba(0,229,255,0.25);
}

/* ================== BUTTONS ================== */
.ai-btn {
    padding: 10px 22px;
    border-radius: 12px;
    border: 1px solid var(--border-ai);
    background: linear-gradient(120deg, rgba(0,229,255,0.15), rgba(124,77,255,0.15));
    color: var(--text-main);
    cursor: pointer;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.ai-btn:hover {
    background: linear-gradient(120deg, var(--ai-cyan), var(--ai-purple));
    color: #000;
    box-shadow: 0 0 12px rgba(0,194,255,0.4);
}

/* ================== AI DATA HUD ================== */
.ai-hud {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.ai-metric {
    background: linear-gradient(180deg, rgba(0,229,255,0.08), rgba(124,77,255,0.05));
    border-radius: 14px;
    padding: 14px;
    border: 1px solid var(--border-ai);
    box-shadow: inset 0 0 20px rgba(0,229,255,0.08);
}

.ai-metric h3 {
    font-size: 12px;
    color: var(--text-dim);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-metric .value {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(120deg, var(--ai-cyan), var(--ai-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* ================== TERMINAL LOG ================== */
.ai-terminal {
    background: #02040a;
    border-radius: 12px;
    border: 1px solid var(--border-ai);
    padding: 12px;
    font-family: "JetBrains Mono", "Courier New", monospace;
    font-size: 12px;
    color: var(--ai-green);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
    overflow-y: auto;
    max-height: 300px;
}

.ai-terminal::-webkit-scrollbar {
    width: 6px;
}

.ai-terminal::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
}

.ai-terminal::-webkit-scrollbar-thumb {
    background: rgba(0,229,255,0.3);
    border-radius: 3px;
}

.ai-terminal::-webkit-scrollbar-thumb:hover {
    background: rgba(0,229,255,0.5);
}

/* ================== FLOATING AI PARTICLES ================== */
.particle {
    position: fixed;
    width: 2px;
    height: 2px;
    background: var(--ai-cyan);
    opacity: 0.4;
    animation: float 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    from { transform: translateY(100vh) translateX(0); }
    to { transform: translateY(-100vh) translateX(200px); }
}
