/* ========================================
   CYBER HOLOGRAPHIC TECH STYLE
   Enhanced Dark Tech Design System
   ======================================== */

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Deep Black */
    --bg-primary: #000000;
    --bg-secondary: #030303;
    --bg-tertiary: #0a0a0a;
    --bg-card: #0d0d0d;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #8a8a8a;
    --text-muted: #4a4a4a;

    /* Accent Colors - Neon Palette */
    --accent-cyan: #00d4ff;
    --accent-cyan-bright: #00ffff;
    --accent-purple: #8b5cf6;
    --accent-purple-bright: #a855f7;
    --accent-green: #39ff14;
    --accent-pink: #ff006e;

    /* Glow Intensities */
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.5),
                  0 0 40px rgba(0, 212, 255, 0.3),
                  0 0 60px rgba(0, 212, 255, 0.1);
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.5),
                   0 0 40px rgba(139, 92, 246, 0.3);
    --glow-green: 0 0 20px rgba(57, 255, 20, 0.4);

    /* Border Colors */
    --border-primary: rgba(0, 212, 255, 0.3);
    --border-secondary: rgba(139, 92, 246, 0.2);
    --border-glow: rgba(0, 212, 255, 0.6);

    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: default;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    box-shadow: var(--glow-cyan);
}

.custom-cursor.hover {
    transform: scale(2);
    background: rgba(0, 212, 255, 0.1);
}

/* Scanline Overlay */
.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    opacity: 0.3;
}

/* Hexagonal Grid Background */
.hex-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    opacity: 0.05;
    background-image:
        linear-gradient(30deg, var(--accent-cyan) 12%, transparent 12.5%, transparent 87%, var(--accent-cyan) 87.5%, var(--accent-cyan)),
        linear-gradient(150deg, var(--accent-cyan) 12%, transparent 12.5%, transparent 87%, var(--accent-cyan) 87.5%, var(--accent-cyan)),
        linear-gradient(30deg, var(--accent-cyan) 12%, transparent 12.5%, transparent 87%, var(--accent-cyan) 87.5%, var(--accent-cyan)),
        linear-gradient(150deg, var(--accent-cyan) 12%, transparent 12.5%, transparent 87%, var(--accent-cyan) 87.5%, var(--accent-cyan)),
        linear-gradient(60deg, rgba(139, 92, 246, 0.3) 25%, transparent 25.5%, transparent 75%, rgba(139, 92, 246, 0.3) 75%, rgba(139, 92, 246, 0.3)),
        linear-gradient(60deg, rgba(139, 92, 246, 0.3) 25%, transparent 25.5%, transparent 75%, rgba(139, 92, 246, 0.3) 75%, rgba(139, 92, 246, 0.3));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    animation: hex-grid-move 20s linear infinite;
}

@keyframes hex-grid-move {
    0% { background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px; }
    100% { background-position: 80px 140px, 80px 140px, 120px 210px, 120px 210px, 80px 140px, 120px 210px; }
}

/* Mouse Spotlight Effect */
.mouse-spotlight {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(0, 212, 255, 0.08) 0%,
        rgba(139, 92, 246, 0.04) 30%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    z-index: -4;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* Enhanced Matrix Canvas */
.matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: 0.2;
    filter: hue-rotate(180deg) saturate(2);
}

/* Background Container */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

/* Enhanced Grid Lines with Pulse */
.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-pulse 4s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

/* Enhanced Floating Nodes */
.floating-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-nodes::before,
.floating-nodes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.floating-nodes::before {
    width: 500px;
    height: 500px;
    top: 10%;
    left: 15%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation-delay: 0s;
    filter: blur(40px);
}

.floating-nodes::after {
    width: 600px;
    height: 600px;
    bottom: 5%;
    right: 10%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    animation-delay: 5s;
    filter: blur(40px);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-60px) scale(1.2);
        opacity: 1;
    }
}

/* Radial Waves with Enhanced Effect */
.radial-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
}

.radial-waves::before,
.radial-waves::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    animation: wave-expand 6s ease-out infinite;
    box-shadow: var(--glow-cyan);
}

.radial-waves::before {
    animation-delay: 0s;
}

.radial-waves::after {
    animation-delay: 3s;
}

@keyframes wave-expand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 800px;
        height: 800px;
        opacity: 0;
    }
}

/* Gradient Overlay */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
}

/* ========================================
   GLITCH TEXT EFFECT
   ======================================== */

.glitch {
    position: relative;
    animation: glitch-skew 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    20% { transform: skew(-2deg); }
    40% { transform: skew(2deg); }
    60% { transform: skew(-1deg); }
    80% { transform: skew(1deg); }
    100% { transform: skew(0deg); }
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-pink);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-cyan);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(13px, 9999px, 81px, 0); }
    5% { clip: rect(89px, 9999px, 96px, 0); }
    10% { clip: rect(2px, 9999px, 23px, 0); }
    15% { clip: rect(67px, 9999px, 18px, 0); }
    20% { clip: rect(31px, 9999px, 93px, 0); }
    25% { clip: rect(58px, 9999px, 16px, 0); }
    30% { clip: rect(42px, 9999px, 66px, 0); }
    35% { clip: rect(25px, 9999px, 11px, 0); }
    40% { clip: rect(93px, 9999px, 44px, 0); }
    45% { clip: rect(7px, 9999px, 63px, 0); }
    50% { clip: rect(34px, 9999px, 86px, 0); }
    55% { clip: rect(71px, 9999px, 3px, 0); }
    60% { clip: rect(49px, 9999px, 92px, 0); }
    65% { clip: rect(17px, 9999px, 57px, 0); }
    70% { clip: rect(82px, 9999px, 28px, 0); }
    75% { clip: rect(6px, 9999px, 74px, 0); }
    80% { clip: rect(54px, 9999px, 39px, 0); }
    85% { clip: rect(22px, 9999px, 95px, 0); }
    90% { clip: rect(78px, 9999px, 14px, 0); }
    95% { clip: rect(36px, 9999px, 68px, 0); }
    100% { clip: rect(61px, 9999px, 47px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    5% { clip: rect(52px, 9999px, 74px, 0); }
    10% { clip: rect(79px, 9999px, 85px, 0); }
    15% { clip: rect(75px, 9999px, 5px, 0); }
    20% { clip: rect(67px, 9999px, 61px, 0); }
    25% { clip: rect(14px, 9999px, 79px, 0); }
    30% { clip: rect(1px, 9999px, 66px, 0); }
    35% { clip: rect(86px, 9999px, 30px, 0); }
    40% { clip: rect(23px, 9999px, 98px, 0); }
    45% { clip: rect(45px, 9999px, 73px, 0); }
    50% { clip: rect(53px, 9999px, 86px, 0); }
    55% { clip: rect(9px, 9999px, 5px, 0); }
    60% { clip: rect(84px, 9999px, 43px, 0); }
    65% { clip: rect(28px, 9999px, 77px, 0); }
    70% { clip: rect(61px, 9999px, 15px, 0); }
    75% { clip: rect(7px, 9999px, 63px, 0); }
    80% { clip: rect(46px, 9999px, 89px, 0); }
    85% { clip: rect(31px, 9999px, 28px, 0); }
    90% { clip: rect(87px, 9999px, 55px, 0); }
    95% { clip: rect(19px, 9999px, 72px, 0); }
    100% { clip: rect(68px, 9999px, 92px, 0); }
}

/* ========================================
   NAVBAR - Enhanced
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid var(--border-primary);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--text-primary);
    text-shadow: var(--glow-cyan);
}

/* Nav Links with Glow Effect */
.nav-links {
    display: flex;
    gap: 50px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transition: width 0.3s ease;
    box-shadow: var(--glow-cyan);
}

.nav-link:hover {
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
}

.nav-link:hover::before {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 30px;
    background: transparent;
    border: 2px solid var(--border-primary);
    border-radius: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transition: all 0.3s;
    box-shadow: 0 0 5px var(--accent-cyan);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* ========================================
   HERO SECTION - Enhanced
   ======================================== */

.hero {
    min-height: 100vh;
    padding: 140px 60px 100px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-logo-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(0, 212, 255, 0.6));
    animation: hero-float 5s ease-in-out infinite;
}

@keyframes hero-float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

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

.hero-content {
    margin-bottom: 100px;
}

.company-name {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--accent-cyan);
    letter-spacing: 10px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: var(--glow-cyan);
    animation: fadeInUp 0.8s ease-out;
}

.hero-tagline {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    color: var(--accent-purple);
    letter-spacing: 4px;
    margin-bottom: 35px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: var(--glow-purple);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 40px;
    letter-spacing: -3px;
    text-transform: uppercase;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title .highlight {
    color: transparent;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: none;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.7;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    line-height: 1.7;
    max-width: 700px;
    animation: fadeInUp 1.4s ease-out;
}

/* Enhanced Hero Metrics */
.hero-metrics {
    display: flex;
    gap: 100px;
    margin-bottom: 60px;
    animation: fadeInUp 1.6s ease-out;
}

.metric {
    text-align: left;
    position: relative;
}

.metric::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
    box-shadow: var(--glow-cyan);
}

.metric-value {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    text-shadow: var(--glow-cyan);
    letter-spacing: 2px;
}

.metric-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Enhanced CTA Buttons */
.hero-cta {
    display: flex;
    gap: 30px;
    animation: fadeInUp 1.8s ease-out;
}

.btn-primary,
.btn-secondary,
.btn-large {
    font-family: 'Orbitron', monospace;
    padding: 18px 45px;
    border: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--bg-primary);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    box-shadow: var(--glow-cyan);
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-primary);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-3px);
}

/* ========================================
   DATA VISUALIZATION - Enhanced
   ======================================== */

.data-visualization {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.data-visualization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-cyan));
    animation: border-flow 3s linear infinite;
}

@keyframes border-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.viz-title {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    color: var(--accent-cyan);
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.viz-chart {
    height: 220px;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 1px solid var(--border-secondary);
    position: relative;
    overflow: hidden;
}

.viz-stream {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.stream-line {
    height: 5px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.stream-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-purple), transparent);
    animation: stream 4s linear infinite;
    box-shadow: var(--glow-cyan);
}

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

.viz-nodes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.node {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 2px solid var(--bg-tertiary);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
}

.node.active {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.node.active::before {
    width: 200%;
    height: 200%;
}

/* ========================================
   SECTIONS - Enhanced
   ======================================== */

section {
    padding: 140px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 100px;
}

.section-tag {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    color: var(--accent-purple);
    letter-spacing: 4px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--border-secondary);
    border-radius: 5px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    text-transform: uppercase;
}

/* ========================================
   PLATFORM CARDS - Holographic 3D Effect
   ======================================== */

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.platform-card {
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.9), rgba(10, 10, 10, 0.9));
    border: 1px solid var(--border-primary);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

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

.platform-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(0, 212, 255, 0.1) 90deg,
        transparent 180deg,
        rgba(139, 92, 246, 0.1) 270deg,
        transparent 360deg
    );
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

.platform-card:hover::after {
    opacity: 1;
}

.platform-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: var(--accent-cyan);
    box-shadow:
        0 20px 60px rgba(0, 212, 255, 0.15),
        var(--glow-cyan);
}

.platform-card > * {
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 15px;
    border: 1px solid var(--border-secondary);
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(0, 212, 255, 0.3) 90deg,
        transparent 180deg
    );
    animation: rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.platform-card:hover .card-icon::before {
    opacity: 1;
}

.icon-svg {
    width: 100%;
    height: 100%;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.platform-card:hover .icon-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.6));
}

.platform-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-align: center;
}

.platform-card p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-secondary);
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-size: 1rem;
}

/* ========================================
   SOLUTIONS - Enhanced List
   ======================================== */

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border-primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.1);
}

.solution-item {
    display: flex;
    align-items: center;
    padding: 50px;
    background: var(--bg-card);
    transition: all 0.4s;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.solution-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-purple));
    transform: scaleY(0);
    transition: transform 0.3s;
}

.solution-item:hover::before {
    transform: scaleY(1);
}

.solution-item:hover {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.05), transparent);
    transform: translateX(10px);
}

.solution-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    min-width: 70px;
    text-shadow: none;
    position: relative;
}

.solution-number::after {
    content: attr(data-number);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    background-clip: text;
    filter: blur(25px);
    opacity: 0.6;
}

.solution-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.solution-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ========================================
   USE CASES - Enhanced
   ======================================== */

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.case-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 15px;
    padding: 70px;
    position: relative;
    overflow: hidden;
}

.case-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.05), transparent 70%);
}

.case-metrics {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.case-metric {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    border: 1px solid var(--border-secondary);
    backdrop-filter: blur(10px);
}

.case-value {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 12px;
    text-shadow: var(--glow-cyan);
}

.case-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.case-tag {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(139, 92, 246, 0.15));
    color: var(--accent-cyan);
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border: 1px solid var(--border-primary);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
}

.case-content h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.case-content p {
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.case-features {
    list-style: none;
}

.case-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 1rem;
    padding-left: 30px;
    position: relative;
}

.case-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: var(--glow-green);
}

/* ========================================
   ABOUT SECTION - Enhanced
   ======================================== */

.about-section {
    padding: 140px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    background: linear-gradient(135deg, var(--bg-card), var(--bg-tertiary));
    border: 1px solid var(--border-primary);
    border-radius: 15px;
    padding: 70px;
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05), transparent 70%);
    filter: blur(60px);
}

.about-text {
    position: relative;
    z-index: 1;
}

.about-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 35px;
    color: var(--accent-cyan);
    font-weight: 700;
    text-shadow: var(--glow-cyan);
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.company-mission {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid var(--border-primary);
    backdrop-filter: blur(10px);
}

.mission-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.mission-item:last-child {
    margin-bottom: 0;
}

.mission-label {
    color: var(--accent-purple);
    font-weight: 700;
    min-width: 100px;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-text {
    color: var(--text-primary);
    flex: 1;
}

.company-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    border: 1px solid var(--border-secondary);
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    background: rgba(0, 212, 255, 0.05);
}

.highlight-icon {
    margin-bottom: 25px;
    color: var(--accent-cyan);
}

.highlight-icon svg {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
    transition: all 0.3s;
}

.highlight-item:hover .highlight-icon svg {
    filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.6));
    transform: scale(1.1);
}

.highlight-text h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.highlight-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* ========================================
   CONTACT SECTION - Enhanced
   ======================================== */

.contact-section {
    text-align: center;
    padding: 140px 60px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.contact-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.contact-section p {
    color: var(--text-secondary);
    margin-bottom: 70px;
    font-size: 1.1rem;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 70px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    color: var(--accent-cyan);
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
}

.btn-large {
    padding: 22px 70px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 1rem;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

/* ========================================
   FOOTER - Enhanced & Simplified
   ======================================== */

.footer {
    padding: 80px 60px 40px;
    border-top: 1px solid var(--border-primary);
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6));
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-cyan));
    animation: border-flow 3s linear infinite;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
}

/* Brand Section */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
}

.footer-logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Links Section */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h4 {
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
}

.footer-column a {
    display: inline-block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: var(--accent-cyan);
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--border-secondary);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 8px 0;
}

.company-names {
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.8;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }

    section,
    .hero {
        padding: 100px 30px 80px;
    }

    .data-visualization {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .case-study {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .company-highlights {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .contact-info {
        flex-wrap: wrap;
        gap: 40px;
    }

    .case-visual {
        padding: 50px;
    }

    .about-content {
        padding: 50px;
    }

    .hero-metrics {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    section,
    .hero {
        padding: 120px 20px 80px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .hero-content {
        margin-bottom: 60px;
    }

    .company-name {
        font-size: 0.75rem;
        letter-spacing: 6px;
    }

    .hero-tagline {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .metric::before {
        display: none;
    }

    .metric-value {
        font-size: 3rem;
    }

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

    .btn-primary,
    .btn-secondary,
    .btn-large {
        width: 100%;
        text-align: center;
    }

    .data-visualization {
        padding: 20px;
        margin: 0 -20px;
        border-radius: 0;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .platform-card {
        padding: 35px 30px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .solution-item {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 35px 25px;
    }

    .solution-number {
        font-size: 2rem;
    }

    .case-study {
        gap: 40px;
    }

    .case-visual {
        padding: 40px 25px;
    }

    .case-value {
        font-size: 2.8rem;
    }

    .case-content h3 {
        font-size: 1.6rem;
    }

    .about-content {
        padding: 35px 25px;
    }

    .about-text h3 {
        font-size: 1.6rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .company-mission {
        padding: 30px 25px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .mission-item {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .mission-label {
        margin-bottom: 10px;
        min-width: auto;
    }

    .company-highlights {
        margin-top: 40px;
    }

    .highlight-item {
        padding: 30px 25px;
    }

    .highlight-icon svg {
        width: 60px;
        height: 60px;
    }

    .contact-info {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .contact-item {
        font-size: 0.9rem;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .contact-section {
        padding: 100px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .metric-value,
    .case-value {
        font-size: 2.5rem;
    }

    .platform-card h3 {
        font-size: 1.2rem;
    }

    .solution-content h3 {
        font-size: 1.2rem;
    }

    .case-content h3 {
        font-size: 1.4rem;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ========================================
   NEON-STYLE COMPONENTS
   ======================================== */

/* Real-time Data Chart Section */
.neon-analytics-section {
    padding: 100px 60px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-primary);
    border-bottom: 1px solid var(--border-primary);
    position: relative;
    overflow: hidden;
}

.neon-analytics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-cyan));
    animation: border-flow 3s linear infinite;
}

.analytics-container {
    max-width: 1400px;
    margin: 0 auto;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.analytics-title-group h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.analytics-title-group p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.analytics-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-cyan);
    text-shadow: var(--glow-cyan);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Chart Container */
.chart-wrapper {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-primary);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.chart-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.03), transparent 70%);
    pointer-events: none;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.chart-title {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.chart-legend {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.active {
    background: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.legend-dot.idle {
    background: var(--accent-purple);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.legend-dot.capacity {
    background: var(--text-muted);
}

/* Canvas for Chart */
.neon-chart-canvas {
    width: 100%;
    height: 350px;
    position: relative;
    z-index: 1;
}

/* Chart Info Bar */
.chart-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-secondary);
    position: relative;
    z-index: 1;
}

.chart-info-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.chart-live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    color: var(--accent-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* ========================================
   CODE EXAMPLE BLOCK - Terminal Style
   ======================================== */

.code-showcase-section {
    padding: 100px 60px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

.code-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
}

.code-showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.code-showcase-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.code-showcase-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.code-block-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.code-example-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.code-example-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.code-window-header {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-secondary);
    gap: 8px;
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-dot.red {
    background: #ff5f57;
}

.window-dot.yellow {
    background: #ffbd2e;
}

.window-dot.green {
    background: #28c940;
}

.window-title {
    margin-left: auto;
    margin-right: auto;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.code-content {
    padding: 25px;
    background: #0a0a0a;
    overflow-x: auto;
}

.code-content pre {
    margin: 0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #e0e0e0;
}

.code-content code {
    font-family: inherit;
}

.code-content .comment {
    color: #6a9955;
}

.code-content .keyword {
    color: #569cd6;
}

.code-content .string {
    color: #ce9178;
}

.code-content .function {
    color: #dcdcaa;
}

.code-content .number {
    color: #b5cea8;
}

.code-content .variable {
    color: #9cdcfe;
}

.code-content .command {
    color: var(--accent-green);
    font-weight: 600;
}

.code-description {
    padding: 20px 25px;
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-secondary);
}

.code-description h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--accent-cyan);
    font-weight: 600;
}

.code-description p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Copy Button */
.copy-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.copy-button:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.05);
}

.copy-button.copied {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--bg-primary);
}

/* Code Prompt Style */
.terminal-prompt {
    color: var(--accent-green);
    font-weight: 600;
}

.terminal-path {
    color: var(--accent-cyan);
}

.terminal-symbol {
    color: var(--accent-purple);
}

/* ========================================
   RESPONSIVE - New Components
   ======================================== */

@media (max-width: 1024px) {
    .analytics-header {
        flex-direction: column;
    }

    .analytics-stats {
        gap: 40px;
    }

    .code-block-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .neon-analytics-section,
    .code-showcase-section {
        padding: 80px 20px;
    }

    .analytics-title-group h2 {
        font-size: 2rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .analytics-stats {
        gap: 30px;
    }

    .chart-wrapper {
        padding: 25px 20px;
    }

    .neon-chart-canvas {
        height: 250px;
    }

    .code-showcase-header h2 {
        font-size: 1.8rem;
    }

    .code-window-header {
        padding: 12px 15px;
    }

    .code-content {
        padding: 20px 15px;
    }

    .code-content pre {
        font-size: 0.8rem;
    }

    .chart-legend {
        justify-content: center;
    }
}

/* Disable custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
}
