/* ===================================
   GLOBAL RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Dark Professional Palette */
    --bg-dark: #0a0a0a;
    --bg-section: #0f0f0f;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-blue: #4a9eff;
    --accent-green: #7fb069;
    --accent-purple: #8b5cf6;
    --border-subtle: rgba(255, 255, 255, 0.1);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===================================
   ANIMATED BACKGROUND
   =================================== */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.25;
    animation: float 25s ease-in-out infinite;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #4a9eff 0%, transparent 70%);
    top: -350px;
    left: -250px;
    animation-duration: 30s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #7fb069 0%, transparent 70%);
    bottom: -300px;
    right: -200px;
    animation-duration: 35s;
    animation-delay: 5s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: 50%;
    right: 15%;
    animation-duration: 40s;
    animation-delay: 10s;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(60px, -60px) scale(1.05);
    }
    66% {
        transform: translate(-40px, 40px) scale(0.95);
    }
}

/* ===================================
   HEADER / NAVIGATION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.logo svg {
    color: var(--accent-blue);
    filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.5));
}

.logo span {
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s ease;
    text-transform: lowercase;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--text-primary);
}

.nav a:hover::after {
    width: 100%;
}

.cta-button {
    padding: 0.75rem 1.75rem;
    background: var(--text-primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-blue);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

/* ===================================
   HERO SECTION - HALO STYLE
   =================================== */
/* ===================================
   HERO SECTION - HALO STYLE
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem 4rem;
    margin-top: 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-text-wrapper {
    animation: fadeInLeft 1s ease-out;
}

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

/* Hero Chart Container */
.hero-chart-container {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.chart-wrapper {
    position: relative;
    padding: 2.5rem;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    overflow: visible;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.chart-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(74, 158, 255, 0.2),
        rgba(74, 158, 255, 0.1)
    );
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: -1;
    filter: blur(20px);
    pointer-events: none;
}

.chart-wrapper:hover::before {
    opacity: 0.6;
}

.chart-wrapper:hover {
    background: rgba(26, 26, 26, 0.6);
    border-color: rgba(74, 158, 255, 0.5);
    box-shadow: 
        0 20px 60px rgba(74, 158, 255, 0.3),
        0 0 80px rgba(74, 158, 255, 0.1) inset;
}

.chart-header-mini {
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.chart-header-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent,
        rgba(74, 158, 255, 0.1),
        transparent
    );
    animation: shimmerWave 3s ease-in-out infinite;
}

@keyframes shimmerWave {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.chart-stats-mini {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
}

/* Stats Mini with Enhanced Animation */
.stat-mini {
    text-align: center;
    position: relative;
    padding: 0.5rem;
    transition: all 0.4s ease;
}

.stat-mini::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transition: width 0.4s ease;
}

.stat-mini:hover::after {
    width: 80%;
}

.stat-value-mini {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    transition: all 0.4s ease;
    animation: numberFloat 3s ease-in-out infinite;
}

@keyframes numberFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.stat-mini:hover .stat-value-mini {
    transform: scale(1.1);
}

.stat-value-mini.success {
    background: linear-gradient(135deg, var(--accent-green), #9fd67f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value-mini::after {
    content: ' Mln GB';
    font-size: 1rem;
    margin-left: 0.2rem;
}

.stat-value-mini.success::after {
    content: '%';
}

.stat-label-mini {
    display: block;
    color: var(--text-secondary);
    font-size: 0.75rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#heroChart {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 40px rgba(74, 158, 255, 0.3));
    transition: filter 0.6s ease;
}

#heroChart:hover {
    filter: drop-shadow(0 15px 60px rgba(74, 158, 255, 0.5));
}

.hero-data-point {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.hero-data-point:hover {
    r: 10;
    filter: drop-shadow(0 0 15px currentColor);
    animation: pointPulse 1s ease-in-out infinite;
}

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

/* Chart Line Animation */
#heroChartLine {
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(74, 158, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(74, 158, 255, 0.8));
    }
}

/* Grid Lines Animation */
.grid-lines line {
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.05;
    }
    50% {
        opacity: 0.12;
    }
}

/* Hero Animated Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: shapeFloat 15s ease-in-out infinite;
    filter: blur(40px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-blue), transparent);
    top: 10%;
    left: 5%;
    animation-duration: 20s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-purple), transparent);
    bottom: 20%;
    right: 10%;
    animation-duration: 25s;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-green), transparent);
    top: 50%;
    right: 20%;
    animation-duration: 18s;
    animation-delay: 10s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 50px;
    color: var(--accent-blue);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

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

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 600;
    line-height: 0.95;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -3px;
    text-shadow: 
        0 0 80px rgba(74, 158, 255, 0.4),
        0 0 120px rgba(74, 158, 255, 0.2);
    filter: blur(0.3px);
}

.title-dot {
    color: var(--accent-blue);
    text-shadow: 
        0 0 40px rgba(74, 158, 255, 0.8),
        0 0 80px rgba(74, 158, 255, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--text-primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent-blue);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--accent-blue);
    background: rgba(74, 158, 255, 0.1);
}

/* 3D Tech Sphere */
.floating-element {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-sphere {
    position: relative;
    width: 400px;
    height: 400px;
    transform-style: preserve-3d;
    animation: floatSphere 8s ease-in-out infinite;
}

.sphere-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(74, 158, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(74, 158, 255, 0.2),
        inset 0 0 20px rgba(74, 158, 255, 0.1);
}

.ring-1 {
    width: 400px;
    height: 400px;
    animation: rotate3d 20s linear infinite;
}

.ring-2 {
    width: 320px;
    height: 320px;
    border-color: rgba(127, 176, 105, 0.3);
    box-shadow: 
        0 0 20px rgba(127, 176, 105, 0.2),
        inset 0 0 20px rgba(127, 176, 105, 0.1);
    animation: rotate3d 15s linear infinite reverse;
}

.ring-3 {
    width: 240px;
    height: 240px;
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.2),
        inset 0 0 20px rgba(139, 92, 246, 0.1);
    animation: rotate3d 10s linear infinite;
}

.sphere-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.3) 0%, transparent 70%);
    box-shadow: 
        0 0 40px rgba(74, 158, 255, 0.6),
        0 0 80px rgba(74, 158, 255, 0.3),
        inset 0 0 40px rgba(74, 158, 255, 0.4);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes floatSphere {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    50% {
        transform: translateY(-30px) rotateX(10deg);
    }
}

@keyframes rotate3d {
    0% {
        transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg);
    }
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    animation: fadeIn 1s ease forwards 1.5s;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-blue), transparent);
    animation: scrollMove 2s ease-in-out infinite;
}

@keyframes scrollMove {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(20px);
        opacity: 1;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-section);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

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

.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.section-title-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.btn-outline {
    margin-top: var(--spacing-md);
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--accent-blue);
    background: rgba(74, 158, 255, 0.1);
    transform: translateY(-2px);
}

/* ===================================
   DEVICE SHOWCASE SECTION
   =================================== */
.device-showcase {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.devices-wrapper {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

/* Laptop Device */
.laptop-device {
    position: relative;
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

.device-screen {
    width: 550px;
    height: 350px;
    background: #1a1a1a;
    border-radius: 12px 12px 0 0;
    border: 8px solid #0a0a0a;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.screen-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.screen-logo svg {
    color: var(--accent-blue);
}

.screen-nav {
    display: flex;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.screen-hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.screen-hero h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.screen-graphic {
    flex-shrink: 0;
}

.graphic-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 176, 105, 0.2) 0%, transparent 70%);
    border: 2px solid rgba(127, 176, 105, 0.3);
    box-shadow: 
        0 0 30px rgba(127, 176, 105, 0.3),
        inset 0 0 30px rgba(127, 176, 105, 0.1);
}

.device-base {
    width: 590px;
    height: 25px;
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
    border-radius: 0 0 24px 24px;
    margin-left: -20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Smartphone Device */
.smartphone-device {
    position: relative;
    opacity: 0;
    animation: slideInRight 1s ease forwards 0.3s;
}

.device-frame {
    width: 300px;
    height: 600px;
    background: #0a0a0a;
    border-radius: 45px;
    padding: 14px;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.6),
        inset 0 0 0 2px rgba(255, 255, 255, 0.05);
    position: relative;
}

.notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 32px;
    background: #0a0a0a;
    border-radius: 0 0 22px 22px;
    z-index: 2;
}

.screen-content-mobile {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 36px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-header {
    margin-bottom: 2rem;
}

.mobile-header svg {
    color: var(--accent-blue);
}

.mobile-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mobile-hero h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.mobile-graphic {
    margin: 2rem 0;
}

.mobile-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(127, 176, 105, 0.2) 0%, transparent 70%);
    border: 2px solid rgba(127, 176, 105, 0.3);
    box-shadow: 
        0 0 40px rgba(127, 176, 105, 0.3),
        inset 0 0 40px rgba(127, 176, 105, 0.1);
}

.mobile-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-section);
    border-top: 1px solid var(--border-subtle);
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -1px;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 158, 255, 0.5);
    box-shadow: 0 20px 60px rgba(74, 158, 255, 0.2);
    background: rgba(26, 26, 26, 0.8);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-icon svg {
    color: var(--accent-blue);
}

.feature-card:hover .card-icon {
    background: rgba(74, 158, 255, 0.2);
    transform: rotate(5deg) scale(1.05);
}

.card-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.5px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.card-footer {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-subtle);
}

.card-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.card-link:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

/* ===================================
   INTERACTIVE CARDS SECTION
   =================================== */
.interactive-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
}

.interactive-card {
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: var(--spacing-md);
    min-height: 350px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.interactive-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 158, 255, 0.5);
    box-shadow: 0 20px 60px rgba(74, 158, 255, 0.15);
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-timestamp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-sm);
}

.card-timestamp svg {
    width: 14px;
    height: 14px;
}

.interactive-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.interactive-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.card-image {
    margin-top: auto;
    padding: var(--spacing-md);
    background: rgba(10, 10, 10, 0.5);
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
}

.ai-chat-preview {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(74, 158, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar svg {
    width: 16px;
    height: 16px;
    color: var(--accent-blue);
}

.message-content {
    flex: 1;
}

.message-text {
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.card-preview {
    margin-top: auto;
}

.preview-box {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.preview-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.preview-btn {
    padding: 0.5rem 1.25rem;
    background: var(--text-primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preview-btn:hover {
    background: var(--accent-blue);
    color: var(--text-primary);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: rgba(10, 10, 10, 0.9);
    border-top: 1px solid var(--border-subtle);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo {
    margin-bottom: var(--spacing-md);
}

.footer-brand .logo svg {
    filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.5));
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.footer-column h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: var(--spacing-xs);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: rgba(74, 158, 255, 0.2);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}

.social-icon svg {
    color: var(--text-secondary);
}

.social-icon:hover svg {
    color: var(--accent-blue);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-primary);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-element {
        height: 500px;
    }
    
    .tech-sphere {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 968px) {
    .header {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .nav {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(3rem, 10vw, 5rem);
    }
    
    .devices-wrapper {
        flex-direction: column;
    }
    
    .device-screen {
        width: 450px;
        height: 300px;
    }
    
    .device-base {
        width: 490px;
    }
    
    .smartphone-device {
        transform: scale(0.9);
    }
    
    .interactive-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   METRICS OVERVIEW SECTION
   =================================== */
.metrics-overview-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: var(--bg-section);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.metric-card-large {
    position: relative;
    padding: 3rem;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.metric-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.metric-card-large:hover::before {
    opacity: 1;
}

.metric-card-large.purple::before {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), transparent);
}

.metric-card-large.green::before {
    background: linear-gradient(135deg, rgba(127, 176, 105, 0.15), transparent);
}

.metric-icon-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 158, 255, 0.2);
    border-radius: 20px;
    color: var(--accent-blue);
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.metric-icon-large.purple {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
}

.metric-icon-large.green {
    background: rgba(127, 176, 105, 0.2);
    color: var(--accent-green);
}

.metric-card-large:hover .metric-icon-large {
    transform: scale(1.15) rotate(10deg);
}

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

.metric-value-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.metric-label-large {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.metric-change-large {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(127, 176, 105, 0.2);
    border: 1px solid rgba(127, 176, 105, 0.3);
    border-radius: 25px;
    color: var(--accent-green);
    font-size: 0.875rem;
    font-weight: 600;
}

.metric-change-large.positive::before {
    content: '↗ ';
}

.metric-glow-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 150px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.4), transparent);
    filter: blur(50px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.metric-glow-effect.purple {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent);
}

.metric-glow-effect.green {
    background: radial-gradient(circle, rgba(127, 176, 105, 0.4), transparent);
}

.metric-card-large:hover .metric-glow-effect {
    opacity: 1;
}

/* ===================================
   SALES ANALYTICS SECTION
   =================================== */
.sales-analytics-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.sales-analytics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.15), transparent);
    filter: blur(100px);
    pointer-events: none;
}

.analytics-header {
    text-align: center;
    margin-bottom: 4rem;
}

.analytics-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-top: 1rem;
}

.analytics-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Main Chart Card */
.analytics-main-chart {
    padding: 3rem;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.analytics-main-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.5), transparent);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.chart-title-group h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.chart-period {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.chart-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value.success {
    background: linear-gradient(135deg, var(--accent-green), #9fd67f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value::after {
    content: 'K';
    font-size: 1.25rem;
    margin-left: 0.25rem;
}

.stat-value.success::after {
    content: '%';
}

.stat-label-sm {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* Chart Container */
.chart-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
}

#salesChart {
    width: 100%;
    height: 100%;
}

/* Data Points Animation */
.data-point {
    cursor: pointer;
    transition: all 0.3s ease;
}

.data-point:hover {
    r: 10;
    filter: drop-shadow(0 0 10px currentColor);
}

.pulse-point {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        r: 8;
    }
    50% {
        opacity: 0.6;
        r: 12;
    }
}

/* Chart Legend */
.chart-legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.legend-dot.blue {
    background: var(--accent-blue);
    box-shadow: 0 0 10px var(--accent-blue);
}

.legend-dot.purple {
    background: var(--accent-purple);
    box-shadow: 0 0 10px var(--accent-purple);
}

.legend-dot.green {
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

/* Analytics Side Cards */
.analytics-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-card {
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.metric-card:hover {
    border-color: rgba(74, 158, 255, 0.5);
    box-shadow: 0 20px 60px rgba(74, 158, 255, 0.2);
    transform: translateY(-5px);
}

.metric-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 158, 255, 0.2);
    border-radius: 16px;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.metric-icon.purple {
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-purple);
}

.metric-icon.green {
    background: rgba(127, 176, 105, 0.2);
    color: var(--accent-green);
}

.metric-card:hover .metric-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.metric-change {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(127, 176, 105, 0.2);
    border: 1px solid rgba(127, 176, 105, 0.3);
    border-radius: 20px;
    color: var(--accent-green);
    font-size: 0.75rem;
    font-weight: 600;
}

.metric-change.positive::before {
    content: '↗ ';
}

/* ===================================
   WHO WE ARE SECTION
   =================================== */
.who-we-are-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: var(--bg-section);
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 50px;
    color: var(--accent-blue);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-title-xl {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-xl);
}

.stat-card {
    position: relative;
    padding: 3rem 2rem;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 100px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.3), transparent);
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-glow {
    opacity: 1;
}

/* Mission Statement */
.mission-statement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg) 0;
}

.mission-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff, var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card.card-1 {
    top: 20%;
    left: 0;
    animation: floatCard1 6s ease-in-out infinite;
}

.floating-card.card-2 {
    top: 50%;
    right: 10%;
    animation: floatCard2 7s ease-in-out infinite;
}

.floating-card.card-3 {
    bottom: 10%;
    left: 20%;
    animation: floatCard3 8s ease-in-out infinite;
}

.card-icon-lg {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 16px;
    margin-bottom: 1rem;
    color: var(--accent-blue);
}

.card-label-sm {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

/* Team Showcase */
.team-showcase {
    margin-top: var(--spacing-xl);
}

.team-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.team-member {
    position: relative;
    padding: 2.5rem 1.5rem;
    background: rgba(26, 26, 26, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.member-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.4), transparent);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member:hover .avatar-glow {
    opacity: 1;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    color: var(--accent-blue);
    position: relative;
    z-index: 1;
}

.member-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===================================
   ADVANCED ANIMATIONS
   =================================== */

/* Scroll Reveal Animation */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation */
[data-scroll-stagger] > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll-stagger].stagger-visible > *:nth-child(1) { transition-delay: 0.1s; }
[data-scroll-stagger].stagger-visible > *:nth-child(2) { transition-delay: 0.2s; }
[data-scroll-stagger].stagger-visible > *:nth-child(3) { transition-delay: 0.3s; }
[data-scroll-stagger].stagger-visible > *:nth-child(4) { transition-delay: 0.4s; }

[data-scroll-stagger].stagger-visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Magnetic Effect */
[data-magnetic] {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Tilt Effect */
[data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Parallax Card Effect */
[data-parallax-card] {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Glow on Hover */
.stat-card:hover,
.metric-card:hover,
.team-member:hover {
    box-shadow: 
        0 20px 60px rgba(74, 158, 255, 0.2),
        0 0 100px rgba(74, 158, 255, 0.1) inset;
}

/* Smooth Button Transitions */
.btn-primary,
.btn-secondary,
.btn-outline,
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-primary:hover::before,
.btn-secondary:hover::before,
.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Card Lift Effect */
.feature-card,
.interactive-card,
.team-member,
.metric-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover,
.interactive-card:hover {
    transform: translateY(-12px) scale(1.02);
}

/* Gradient Border Animation */
@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(74, 158, 255, 0.3);
    }
    50% {
        border-color: rgba(139, 92, 246, 0.5);
    }
}

.analytics-main-chart:hover {
    animation: borderGlow 3s ease-in-out infinite;
}

/* Text Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.hero-title:hover {
    background: linear-gradient(
        90deg,
        #fff 25%,
        var(--accent-blue) 50%,
        #fff 75%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Floating Animation for Cards */
@keyframes floatSlow {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.floating-card {
    animation: floatSlow 6s ease-in-out infinite;
}

.floating-card.card-1 {
    animation-delay: 0s;
}

.floating-card.card-2 {
    animation-delay: 2s;
}

.floating-card.card-3 {
    animation-delay: 4s;
}

/* Pulse Effect for Important Elements */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(74, 158, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(74, 158, 255, 0.6);
    }
}

.cta-button:hover,
.btn-primary:hover {
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Smooth Scroll Progress */
.scroll-progress {
    box-shadow: 0 0 20px var(--accent-blue);
}

/* Interactive Hover States */
.card-icon {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.feature-card:hover .card-icon,
.metric-card:hover .metric-icon {
    transform: scale(1.15) rotate(10deg);
}

/* Keyframe Animations */
@keyframes floatCard1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(3deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-15px, 25px) rotate(-3deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -15px) rotate(2deg); }
}

/* Smooth Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Chart Data Point Hover */
.data-point {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.data-point:hover {
    transform: scale(1.5);
    filter: drop-shadow(0 0 15px currentColor);
}

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

.hero-content,
.section-header {
    animation: fadeInUp 1s ease-out;
}

/* ===================================
   RESPONSIVE - WHO WE ARE
   =================================== */
@media (max-width: 968px) {
    .mission-statement {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .mission-visual {
        height: 400px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .section-title-xl {
        font-size: 3rem;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .analytics-main-chart {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .device-screen {
        width: 320px;
        height: 220px;
    }
    
    .device-base {
        width: 360px;
    }
    
    .smartphone-device {
        transform: scale(0.75);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-visual {
        display: none;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title-xl {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}