/* ================================================
   1337 MEDIA BV - V2 Ultimate Premium Design
   Aurora Effects, 3D Elements, Advanced Animations
   ================================================ */

/* CSS Variables - Enhanced Design Tokens */
:root {
    /* Dark Theme Colors */
    --bg-primary: #030308;
    --bg-secondary: #0a0a12;
    --bg-tertiary: #12121c;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.05);

    /* Accent Colors */
    --accent-primary: #60E6C5;
    --accent-secondary: #5B8DEF;
    --accent-purple: #A855F7;
    --accent-pink: #EC4899;
    --accent-orange: #F97316;
    --accent-gold: #FBBF24;
    --accent-green: #22C55E;
    --accent-cyan: #06B6D4;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #60E6C5 0%, #5B8DEF 50%, #A855F7 100%);
    --gradient-secondary: linear-gradient(135deg, #A855F7 0%, #EC4899 50%, #F97316 100%);
    --gradient-glow: linear-gradient(135deg, rgba(96, 230, 197, 0.2) 0%, rgba(91, 141, 239, 0.2) 100%);
    --gradient-aurora: linear-gradient(135deg, rgba(96, 230, 197, 0.4), rgba(91, 141, 239, 0.3), rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.2));

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.75);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --text-muted: rgba(255, 255, 255, 0.35);

    /* Border */
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(96, 230, 197, 0.3);
    --border-glow: rgba(96, 230, 197, 0.5);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    --text-8xl: 6rem;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(96, 230, 197, 0.2);
    --shadow-glow-intense: 0 0 100px rgba(96, 230, 197, 0.3);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-cursor: 500;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    cursor: default;
}

/* Custom Selection */
::selection {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-secondary), var(--accent-purple));
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ================================================
   AURORA BACKGROUND
   ================================================ */
.aurora-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.aurora {
    position: absolute;
    width: 150%;
    height: 150%;
    filter: blur(100px);
    opacity: 0.5;
    animation: auroraMove 20s ease-in-out infinite;
}

.aurora-1 {
    top: -50%;
    left: -25%;
    background: radial-gradient(ellipse 80% 50% at 20% 40%, rgba(96, 230, 197, 0.4) 0%, transparent 60%);
    animation-delay: 0s;
}

.aurora-2 {
    top: -30%;
    right: -25%;
    background: radial-gradient(ellipse 70% 60% at 80% 30%, rgba(91, 141, 239, 0.35) 0%, transparent 60%);
    animation-delay: -7s;
    animation-duration: 25s;
}

.aurora-3 {
    bottom: -40%;
    left: 10%;
    background: radial-gradient(ellipse 60% 50% at 40% 80%, rgba(168, 85, 247, 0.3) 0%, transparent 60%);
    animation-delay: -14s;
    animation-duration: 30s;
}

@keyframes auroraMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(5%, 5%) rotate(3deg) scale(1.05);
    }
    50% {
        transform: translate(-3%, 8%) rotate(-2deg) scale(0.98);
    }
    75% {
        transform: translate(8%, -3%) rotate(4deg) scale(1.02);
    }
}

/* ================================================
   CUSTOM CURSOR V2
   ================================================ */
.cursor-inner {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: var(--z-cursor);
    transition: width 0.2s, height 0.2s, background 0.2s, opacity 0.3s;
    mix-blend-mode: difference;
}

.cursor-outer {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: var(--z-cursor);
    transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
    mix-blend-mode: difference;
}

.cursor-outer.hover {
    width: 70px;
    height: 70px;
    border-color: var(--accent-primary);
    background: rgba(96, 230, 197, 0.1);
}

.cursor-inner.hover {
    width: 0;
    height: 0;
}

/* ================================================
   SCROLL PROGRESS V2
   ================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    z-index: var(--z-fixed);
}

.scroll-progress-bar,
#scrollProgress {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    box-shadow: 0 0 20px var(--accent-primary);
    transition: width 0.1s ease-out;
}

/* ================================================
   NAVIGATION V2
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(3, 3, 8, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-md) 0;
}

.nav-blur {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.navbar.scrolled .nav-blur {
    opacity: 1;
}

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

/* Logo V2 */
.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    filter: drop-shadow(0 0 10px rgba(96, 230, 197, 0.5));
}

.logo-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
}

.logo-text .gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .accent {
    color: var(--text-secondary);
    font-weight: 400;
}

.logo-main {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.logo-sub {
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: var(--space-xs);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-link {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-sm) 0;
    transition: color var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.language-switcher {
    display: flex;
    gap: var(--space-xs);
    padding: var(--space-xs);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
}

.lang-btn {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--text-tertiary);
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: var(--bg-primary);
}

.nav-cta {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--bg-primary);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    text-decoration: none;
    overflow: hidden;
    transition: all var(--transition-base);
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.nav-cta:hover::before {
    transform: translateX(100%);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-cta svg {
    transition: transform var(--transition-fast);
}

.nav-cta:hover svg {
    transform: translateX(4px);
}

/* Glow Button Variant */
.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn .btn-text {
    position: relative;
    z-index: 2;
}

.glow-btn .btn-icon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.glow-btn .btn-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    filter: blur(8px);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.glow-btn:hover .btn-glow {
    opacity: 0.6;
}

/* Language Switch Alternative */
.lang-switch {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.lang-divider {
    color: var(--text-muted);
    font-size: var(--text-xs);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger span,
.hamburger .ham-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger.active span:nth-child(1),
.hamburger.active .ham-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active .ham-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3),
.hamburger.active .ham-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 3, 8, 0.98);
    backdrop-filter: blur(20px);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay .nav-link {
    font-size: var(--text-2xl);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
}

.mobile-menu-overlay.active .nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu-overlay.active .nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu-overlay.active .nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .nav-link:nth-child(5) { transition-delay: 0.3s; }

/* ================================================
   HERO SECTION V2
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-5xl) var(--space-xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-canvas-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(96, 230, 197, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 230, 197, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
    pointer-events: none;
}

.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: -15%;
    left: -10%;
    animation: orbFloat1 20s ease-in-out infinite;
}

.hero-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    top: 20%;
    right: -10%;
    animation: orbFloat2 25s ease-in-out infinite;
}

.hero-orb.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-purple);
    bottom: 10%;
    left: 25%;
    animation: orbFloat3 18s ease-in-out infinite;
}

.hero-orb.orb-4 {
    width: 250px;
    height: 250px;
    background: var(--accent-pink);
    top: 50%;
    left: 5%;
    animation: orbFloat4 22s ease-in-out infinite;
}

.hero-orb.orb-5 {
    width: 200px;
    height: 200px;
    background: var(--accent-orange);
    bottom: 20%;
    right: 15%;
    animation: orbFloat1 24s ease-in-out infinite reverse;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(96, 230, 197, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 230, 197, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 30%, transparent 70%);
}

.floating-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -20%;
    left: -10%;
    animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-secondary);
    top: 30%;
    right: -15%;
    animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    bottom: -10%;
    left: 30%;
    animation: orbFloat3 18s ease-in-out infinite;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: var(--accent-pink);
    top: 60%;
    left: 10%;
    animation: orbFloat4 22s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 50px) scale(1.1); }
    66% { transform: translate(-40px, 80px) scale(0.95); }
}

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

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

@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-80px, 40px) scale(0.85); }
    66% { transform: translate(60px, -30px) scale(1.1); }
}

/* Hero Marquee */
.hero-marquee {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    overflow: hidden;
    opacity: 0.08;
    pointer-events: none;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-text {
    font-family: var(--font-display);
    font-size: clamp(80px, 15vw, 200px);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-primary);
    padding: 0 var(--space-3xl);
    text-transform: uppercase;
}

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

/* Hero Content */
.hero-content {
    position: relative;
    text-align: center;
    max-width: 1000px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--accent-primary);
    background: rgba(96, 230, 197, 0.1);
    border: 1px solid rgba(96, 230, 197, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-2xl);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(96, 230, 197, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(96, 230, 197, 0.1); }
}

.badge-icon {
    display: flex;
    color: var(--accent-gold);
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

.badge-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    filter: blur(10px);
    transition: opacity var(--transition-base);
}

.hero-badge:hover .badge-glow {
    opacity: 0.3;
}

.badge-text {
    position: relative;
}

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

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 2px currentColor); }
    50% { filter: drop-shadow(0 0 8px currentColor); }
}

/* Magnetic attribute for elements */
[data-magnetic] {
    transition: transform var(--transition-fast);
}

/* Hero Title with Word Reveal */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 10vw, var(--text-8xl));
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
    overflow: hidden;
}

/* Word wrapper for animation */
.word-wrap {
    display: inline-block;
    overflow: hidden;
    margin-right: 0.25em;
}

/* Words in hero title - animated reveal */
.word,
.reveal-word {
    display: inline-block;
}

/* Only apply animation once via .reveal-word */
.word.reveal-word {
    opacity: 1;
    transform: none;
    animation: wordReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-fill-mode: both;
}

@keyframes wordReveal {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation delays for title lines */
.title-line-1 .word-wrap:nth-child(1) .word { animation-delay: 0.1s; }
.title-line-1 .word-wrap:nth-child(2) .word { animation-delay: 0.2s; }
.title-line-1 .word-wrap:nth-child(3) .word { animation-delay: 0.3s; }
.title-line-2 .word-wrap:nth-child(1) .word { animation-delay: 0.4s; }
.title-line-2 .word-wrap:nth-child(2) .word { animation-delay: 0.5s; }
.title-line-2 .word-wrap:nth-child(3) .word { animation-delay: 0.6s; }

/* Hero Typed Container */
.hero-typed-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-3xl);
    min-height: 2em;
}

.typed-prefix {
    color: var(--text-tertiary);
}

.typed-text {
    color: var(--text-primary);
    font-weight: 500;
}

.typed-cursor {
    color: var(--accent-primary);
    animation: cursorBlink 1s ease-in-out infinite;
}

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

/* Stat Icon */
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(96, 230, 197, 0.1);
    border-radius: var(--radius-lg);
    color: var(--accent-primary);
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-3xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Hero Stats V2 */
.hero-stats {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.stat-card {
    position: relative;
    padding: var(--space-xl) var(--space-2xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
    transition: all var(--transition-base);
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
}

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

.stat-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.stat-card:hover .stat-glow {
    opacity: 1;
    box-shadow: 0 0 30px var(--accent-primary);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--text-primary);
}

.stat-plus {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    margin-top: var(--space-xs);
}

/* Stat Divider */
.stat-divider {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.divider-line {
    width: 30px;
    height: 1px;
    background: var(--border-subtle);
}

.divider-dot,
.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* Hero CTA */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* Buttons V2 */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: all var(--transition-base);
}

.btn-primary {
    color: var(--bg-primary);
    background: var(--gradient-primary);
    border: none;
}

.btn-primary .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
}

.btn-primary:hover .btn-bg {
    animation: btnShine 0.6s ease;
}

@keyframes btnShine {
    to { transform: translateX(100%); }
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-intense);
}

.btn-secondary {
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--border-light);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-secondary:hover {
    border-color: transparent;
    transform: translateY(-3px);
}

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

.btn-secondary svg,
.btn-primary svg {
    transition: transform var(--transition-fast);
}

.btn-secondary:hover svg,
.btn-primary:hover svg {
    transform: translateX(4px);
}

/* Scroll Indicator V2 */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-3xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--text-tertiary);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.scroll-indicator:hover {
    color: var(--accent-primary);
}

.mouse,
.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid currentColor;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.wheel,
.scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: currentColor;
    border-radius: var(--radius-full);
    animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes wheelScroll {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

.scroll-text {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, currentColor, transparent);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
}

/* CTA Buttons */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-2xl);
    background: var(--gradient-primary);
    color: var(--bg-primary);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.cta-primary .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
}

.cta-primary:hover .btn-bg {
    animation: btnShine 0.6s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-intense);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-base);
}

.cta-secondary:hover {
    color: var(--accent-primary);
}

.cta-secondary .btn-arrow {
    transition: transform var(--transition-fast);
}

.cta-secondary:hover .btn-arrow {
    transform: translate(3px, -3px);
}

/* Marquee */
.marquee-item {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-tertiary);
    white-space: nowrap;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ================================================
   SECTIONS - COMMON V2
   ================================================ */
section {
    position: relative;
    padding: var(--space-5xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-4xl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    margin-bottom: var(--space-lg);
    padding: var(--space-xs) var(--space-md);
    background: rgba(96, 230, 197, 0.1);
    border-radius: var(--radius-full);
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: tagPulse 2s ease-in-out infinite;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-animated {
    background: linear-gradient(
        135deg,
        #60E6C5 0%,
        #5B8DEF 25%,
        #A855F7 50%,
        #5B8DEF 75%,
        #60E6C5 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s linear infinite;
}

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

.section-intro {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Section Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-primary);
    margin-bottom: var(--space-lg);
}

.label-line {
    width: 30px;
    height: 1px;
    background: var(--accent-primary);
}

.label-text {
    white-space: nowrap;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Background Effects */
.section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.bg-gradient-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: 10%;
    left: -10%;
}

.bg-gradient-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: 10%;
    right: -10%;
}

/* About Subtitle */
.about-subtitle {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.about-subtitle h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--text-primary);
}

/* Card Decoration */
.card-decoration {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    gap: var(--space-xs);
}

.deco-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-primary);
    opacity: 0.3;
}

.deco-circle:nth-child(2) {
    background: var(--accent-secondary);
    animation-delay: 0.2s;
}

.deco-circle:nth-child(3) {
    background: var(--accent-purple);
    animation-delay: 0.4s;
}

/* Gradient Icon */
.gradient-icon {
    background: rgba(96, 230, 197, 0.1);
    color: var(--accent-primary);
}

/* ================================================
   ABOUT / FEATURES SECTION V2
   ================================================ */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* Feature Grid V2 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    position: relative;
    padding: var(--space-2xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
    overflow: hidden;
}

.feature-card.feature-lg,
.feature-card.feature-card-lg {
    grid-column: span 2;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
}

/* Feature Card Glow Effect */
.card-border-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover .card-border-glow {
    opacity: 1;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(96, 230, 197, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

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

/* Decorative circles */
.card-decor {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    filter: blur(40px);
    pointer-events: none;
}

.decor-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -30px;
}

.decor-2 {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: -20px;
}

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

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(96, 230, 197, 0.1);
    border-radius: var(--radius-xl);
    color: var(--accent-primary);
    margin-bottom: var(--space-lg);
    transition: all var(--transition-base);
}

.feature-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(96, 230, 197, 0.3);
}

.card-icon.icon-blue {
    background: rgba(91, 141, 239, 0.1);
    color: var(--accent-secondary);
}

.card-icon.icon-purple {
    background: rgba(168, 85, 247, 0.1);
    color: var(--accent-purple);
}

.card-icon.icon-orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--accent-orange);
}

.card-icon.icon-gold {
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-gold);
}

.card-icon.icon-green {
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
}

.card-icon.icon-pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-pink);
}

.card-icon.icon-cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-cyan);
}

.feature-card h4 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.feature-card p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ================================================
   BRANDS SECTION V2
   ================================================ */
.brands {
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
}

.brands-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.gradient-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.gradient-blur-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -30%;
    right: -15%;
}

.gradient-blur-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-secondary);
    bottom: -20%;
    left: -10%;
}

.brands .container {
    position: relative;
    z-index: 1;
}

.brands-showcase,
.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
}

/* Brands Background */
.brands-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
}

.brands-gradient-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: -20%;
    right: -10%;
}

.brands-gradient-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-secondary);
    bottom: -15%;
    left: -10%;
}

.brands-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.05;
}

.brand-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: var(--accent-primary);
}

.brand-line:nth-child(1) { left: 25%; }
.brand-line:nth-child(2) { left: 50%; }
.brand-line:nth-child(3) { left: 75%; }

/* Brand Card V2 */
.brand-card {
    text-decoration: none;
    display: block;
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.brand-card-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    z-index: 0;
}

.brand-card-gradient {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.brand-card:hover .brand-card-gradient {
    opacity: 0.05;
}

.brand-card-border {
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    transition: border-color var(--transition-base);
    pointer-events: none;
}

.brand-card:hover .brand-card-border {
    border-color: var(--border-accent);
}

.brand-card-content {
    position: relative;
    z-index: 1;
    padding: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.brand-logo-container {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-xl);
}

.brand-logo {
    max-height: 55px;
    width: auto;
    min-width: 120px;
    object-fit: contain;
    transition: transform var(--transition-base);
}

/* Vitaa logo specifiek groter maken */
.brand-card:nth-child(3) .brand-logo {
    min-width: 160px;
    max-height: 60px;
}

.brand-card:hover .brand-logo {
    transform: scale(1.05);
}

.brand-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.brand-card:hover .brand-shine {
    left: 100%;
}

.brand-card:hover {
    transform: translateY(-8px);
}

.brand-card-inner {
    position: relative;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: all var(--transition-base);
    overflow: hidden;
}

/* Animated gradient border */
.card-animated-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary), var(--accent-purple), var(--accent-primary));
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.brand-card:hover .card-animated-border {
    opacity: 1;
    animation: borderRotate 3s linear infinite;
}

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

/* Shine effect */
.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.brand-card:hover .card-shine {
    left: 100%;
}

.brand-card:hover .brand-card-inner {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.brand-logo-wrapper {
    position: relative;
    height: 90px;
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card-inner .brand-logo {
    max-width: 200px;
    max-height: 90px;
    object-fit: contain;
    transition: all var(--transition-base);
}

.brand-card-inner:hover .brand-logo {
    transform: scale(1.05);
}


.brand-info {
    position: relative;
}

.brand-info h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.brand-info p {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: 1.6;
}

.brand-arrow {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-tertiary);
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all var(--transition-base);
}

.brand-card:hover .brand-arrow {
    opacity: 1;
    transform: translate(0, 0);
    color: var(--accent-primary);
    background: rgba(96, 230, 197, 0.1);
}

/* Metrics Bar V2 */
.metrics-bar {
    display: flex;
    justify-content: center;
    gap: var(--space-5xl);
    padding: var(--space-3xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.metrics-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

/* ================================================
   METRICS SECTION - PROMINENT STATS
   ================================================ */
.metrics-section {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
    background: linear-gradient(135deg,
        rgba(96, 230, 197, 0.08) 0%,
        rgba(91, 141, 239, 0.12) 50%,
        rgba(168, 85, 247, 0.08) 100%);
}

.metrics-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.metrics-gradient-1 {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(96, 230, 197, 0.15) 0%, transparent 70%);
    animation: metricsFloat 15s ease-in-out infinite;
}

.metrics-gradient-2 {
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    animation: metricsFloat 18s ease-in-out infinite reverse;
}

.metrics-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(96, 230, 197, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(91, 141, 239, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.2) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    animation: particlesDrift 30s linear infinite;
}

@keyframes metricsFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes particlesDrift {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: 100px 100px, -150px 150px, 80px -80px; }
}

.metrics-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.metric-block {
    text-align: center;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.metric-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.metric-block:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(96, 230, 197, 0.2);
    box-shadow: 0 20px 60px rgba(96, 230, 197, 0.1);
}

.metric-block:hover::before {
    transform: scaleX(1);
}

.metric-icon-large {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-xl);
    background: linear-gradient(135deg, rgba(96, 230, 197, 0.15) 0%, rgba(91, 141, 239, 0.15) 100%);
    border-radius: 50%;
    color: var(--accent-primary);
}

.icon-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(96, 230, 197, 0.2);
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
}

.icon-ring-2 {
    inset: -16px;
    border-color: rgba(91, 141, 239, 0.15);
    animation-delay: -1.5s;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.metric-value-large {
    margin-bottom: var(--space-sm);
}

.metric-number-large {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.metric-label-large {
    display: block;
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.02em;
}

.metric-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-top: var(--space-md);
}

.metric-bar-fill {
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-block.revealed .metric-bar-fill {
    width: var(--fill-width, 0%);
}

/* Responsive metrics */
@media (max-width: 992px) {
    .metrics-content {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }

    .metric-number-large {
        font-size: var(--text-5xl);
    }

    .metric-icon-large {
        width: 60px;
        height: 60px;
    }

    .metric-icon-large svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 768px) {
    .metrics-section {
        padding: var(--space-4xl) 0;
    }

    .metrics-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        max-width: 400px;
        margin: 0 auto;
    }

    .metric-block {
        padding: var(--space-xl);
    }

    .metric-number-large {
        font-size: var(--text-5xl);
    }
}

/* ================================================
   AI SECTION V2
   ================================================ */
.ai-section {
    position: relative;
    background: linear-gradient(180deg,
        var(--bg-primary) 0%,
        rgba(96, 230, 197, 0.04) 50%,
        var(--bg-primary) 100%);
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 230, 197, 0.2), transparent);
}

.ai-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

#aiCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.ai-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--bg-secondary) 70%);
    pointer-events: none;
}

.ai-section .container {
    position: relative;
    z-index: 1;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-4xl);
}

/* AI Card V2 */
.ai-card {
    position: relative;
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
    overflow: hidden;
}

.ai-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.ai-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

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

.ai-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
}

.ai-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(96, 230, 197, 0.1);
    border-radius: var(--radius-xl);
    color: var(--accent-primary);
    transition: all var(--transition-base);
}

.ai-card:hover .ai-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(96, 230, 197, 0.3);
}

.ai-card-number,
.ai-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.ai-card-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    filter: blur(40px);
    transition: opacity var(--transition-base);
}

.ai-card:hover .ai-card-glow {
    opacity: 0.1;
}

.ai-card-border {
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    pointer-events: none;
    transition: border-color var(--transition-base);
}

.ai-card:hover .ai-card-border {
    border-color: var(--border-accent);
}

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

.ai-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.ai-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Tech Stack V2 */
.tech-stack {
    text-align: center;
    padding: var(--space-3xl);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.tech-stack::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(96, 230, 197, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.tech-stack h4 {
    position: relative;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
}

.tech-stack-header {
    margin-bottom: var(--space-xl);
}

.tech-label {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
}

.tech-pills {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.tech-pill:hover {
    background: rgba(96, 230, 197, 0.1);
    border-color: var(--border-accent);
    color: var(--accent-primary);
}

.pill-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
}

.tech-items {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.tech-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.tech-item:hover {
    background: rgba(96, 230, 197, 0.1);
    border-color: var(--border-accent);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tech-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

/* ================================================
   PARTNERSHIP SECTION V2
   ================================================ */
.partnership {
    background: linear-gradient(180deg,
        var(--bg-secondary) 0%,
        rgba(91, 141, 239, 0.06) 30%,
        rgba(168, 85, 247, 0.08) 70%,
        var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.partnership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(91, 141, 239, 0.3), rgba(168, 85, 247, 0.3), transparent);
}

.partnership::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), rgba(91, 141, 239, 0.3), transparent);
}

.partnership-wrapper,
.partnership-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.partnership-content {
    position: relative;
}

.partnership-content .section-tag {
    margin-bottom: var(--space-md);
}

.partnership-content .section-title {
    text-align: left;
    margin-bottom: var(--space-xl);
}

.partnership-intro,
.partnership-text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.benefits-list {
    list-style: none;
    margin-bottom: var(--space-2xl);
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    font-size: var(--text-base);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-fast);
}

.benefits-list li:hover {
    padding-left: var(--space-md);
    color: var(--text-primary);
}

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

.benefit-check,
.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(96, 230, 197, 0.1);
    border-radius: 50%;
    color: var(--accent-primary);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.benefits-list li:hover .benefit-check,
.benefits-list li:hover .benefit-icon {
    background: rgba(96, 230, 197, 0.2);
    transform: scale(1.1);
}

/* Partnership Visual V2 - 3D Cube */
.partnership-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 450px;
}

/* Visual Orbs */
.visual-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
}

.visual-orb-1 {
    width: 200px;
    height: 200px;
    background: var(--accent-primary);
    top: -20%;
    left: -10%;
    animation: orbFloat1 15s ease-in-out infinite;
}

.visual-orb-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-secondary);
    bottom: -10%;
    right: -10%;
    animation: orbFloat2 18s ease-in-out infinite;
}

/* Glass Morphism Card */
.glass-morphism,
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
}

.visual-card {
    position: relative;
    padding: var(--space-2xl);
    text-align: center;
    overflow: hidden;
}

/* DNA Helix Animation */
.dna-helix {
    position: relative;
    height: 150px;
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.dna-strand {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: dnaRotate 8s ease-in-out infinite;
}

.dna-strand-2 {
    animation: dnaRotate 8s ease-in-out infinite reverse;
    animation-delay: -4s;
}

.dna-particle {
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-primary);
    animation: dnaPulse 2s ease-in-out infinite;
}

.dna-strand .dna-particle:nth-child(2) {
    background: var(--accent-secondary);
    box-shadow: 0 0 15px var(--accent-secondary);
    animation-delay: 0.3s;
}

.dna-strand .dna-particle:nth-child(3) {
    background: var(--accent-purple);
    box-shadow: 0 0 15px var(--accent-purple);
    animation-delay: 0.6s;
}

.dna-strand .dna-particle:nth-child(4) {
    background: var(--accent-primary);
    box-shadow: 0 0 15px var(--accent-primary);
    animation-delay: 0.9s;
}

.dna-strand .dna-particle:nth-child(5) {
    background: var(--accent-secondary);
    box-shadow: 0 0 15px var(--accent-secondary);
    animation-delay: 1.2s;
}

.dna-strand .dna-particle:nth-child(6) {
    background: var(--accent-purple);
    box-shadow: 0 0 15px var(--accent-purple);
    animation-delay: 1.5s;
}

.dna-connections {
    display: flex;
    flex-direction: column;
    gap: 45px;
    padding: 15px 0;
}

.dna-connection {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    opacity: 0.6;
    animation: dnaConnectionPulse 2s ease-in-out infinite;
}

.dna-connection:nth-child(2) {
    animation-delay: 0.7s;
}

.dna-connection:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes dnaRotate {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

@keyframes dnaPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}

@keyframes dnaConnectionPulse {
    0%, 100% { opacity: 0.4; width: 40px; }
    50% { opacity: 0.8; width: 50px; }
}

.visual-card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gradient-primary);
    filter: blur(1px);
    box-shadow: 0 0 30px var(--accent-primary);
}

/* Visual Rings */
.visual-rings {
    position: absolute;
    inset: -50px;
    pointer-events: none;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    opacity: 0.5;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
    width: 130%;
    height: 130%;
    animation: ringPulse 4s ease-in-out infinite 1s;
}

.ring-3 {
    width: 160%;
    height: 160%;
    animation: ringPulse 4s ease-in-out infinite 2s;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.1; transform: translate(-50%, -50%) scale(1.05); }
}

/* 3D Visual Card */
.visual-3d {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-xl);
    perspective: 800px;
}

.cube {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: cubeRotate 20s linear infinite;
}

@keyframes cubeRotate {
    0% { transform: rotateX(-20deg) rotateY(0deg); }
    100% { transform: rotateX(-20deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 230, 197, 0.08);
    border: 1px solid rgba(96, 230, 197, 0.3);
    backdrop-filter: blur(10px);
}

.cube-front { transform: translateZ(60px); }
.cube-back { transform: rotateY(180deg) translateZ(60px); }
.cube-right { transform: rotateY(90deg) translateZ(60px); }
.cube-left { transform: rotateY(-90deg) translateZ(60px); }
.cube-top { transform: rotateX(90deg) translateZ(60px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(60px); }

/* Visual Stats below cube */
.visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--border-subtle);
}

.visual-stat {
    text-align: center;
}

.visual-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.visual-stat-label {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

/* Alternative visual stat names */
.visual-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.visual-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-tertiary);
}

/* ================================================
   CONTACT SECTION V2
   ================================================ */
.contact {
    position: relative;
    background: linear-gradient(180deg,
        var(--bg-secondary) 0%,
        rgba(96, 230, 197, 0.05) 40%,
        rgba(91, 141, 239, 0.06) 80%,
        var(--bg-tertiary) 100%);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 230, 197, 0.25), transparent);
}

.contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-gradient {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(96, 230, 197, 0.15) 0%, transparent 60%);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Card V2 - Redesigned */
.contact-card {
    position: relative;
    display: flex;
    align-items: stretch;
    border-radius: var(--radius-2xl);
    text-decoration: none;
    transition: all var(--transition-base);
    overflow: hidden;
}

.contact-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
}

.contact-card:hover .contact-card-bg {
    background: linear-gradient(135deg, rgba(96, 230, 197, 0.08) 0%, rgba(91, 141, 239, 0.06) 100%);
    border-color: var(--border-accent);
    box-shadow: 0 20px 60px rgba(96, 230, 197, 0.1);
}

.contact-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.contact-card:hover .contact-card-shine {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-8px);
}

.contact-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-2xl);
    width: 100%;
}

/* Icon Wrapper with Pulse */
.contact-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.contact-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(96, 230, 197, 0.15) 0%, rgba(96, 230, 197, 0.05) 100%);
    border: 1px solid rgba(96, 230, 197, 0.2);
    border-radius: var(--radius-xl);
    color: var(--accent-primary);
    transition: all var(--transition-base);
    z-index: 1;
}

.contact-icon-secondary {
    background: linear-gradient(135deg, rgba(91, 141, 239, 0.15) 0%, rgba(91, 141, 239, 0.05) 100%);
    border-color: rgba(91, 141, 239, 0.2);
    color: var(--accent-secondary);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(96, 230, 197, 0.4);
}

.contact-card:hover .contact-icon-secondary {
    box-shadow: 0 0 30px rgba(91, 141, 239, 0.4);
}

.icon-pulse {
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(96, 230, 197, 0.3);
    border-radius: var(--radius-xl);
    animation: iconPulseAnim 2s ease-in-out infinite;
}

.icon-pulse-secondary {
    border-color: rgba(91, 141, 239, 0.3);
}

@keyframes iconPulseAnim {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0; }
}

/* Contact Text */
.contact-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact-label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-value {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--text-primary);
}

/* Contact Arrow */
.contact-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    color: var(--text-tertiary);
    transition: all var(--transition-base);
}

.contact-card:hover .contact-arrow {
    background: var(--accent-primary);
    color: var(--bg-primary);
    transform: translate(4px, -4px);
}

/* Brand Links in Contact Card */
.brand-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-xs);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.brand-link:hover {
    background: rgba(91, 141, 239, 0.15);
    border-color: rgba(91, 141, 239, 0.3);
    color: var(--accent-secondary);
    transform: translateY(-2px);
}

.brand-link svg {
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all var(--transition-fast);
}

.brand-link:hover svg {
    opacity: 1;
    transform: translate(0, 0);
}

.contact-info {
    position: relative;
    flex-grow: 1;
    z-index: 1;
}

.contact-info h4 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.contact-info span {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

.contact-arrow {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all var(--transition-fast);
}

.contact-card:hover .contact-arrow {
    color: var(--accent-primary);
    transform: translate(4px, -4px);
}

/* Contact Cards Container */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

/* Contact Brands Card */
.contact-brands-card {
    flex-direction: column;
    align-items: flex-start;
}

.brand-links-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
}

.brand-links-list a {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.brand-links-list a:hover {
    color: var(--accent-secondary);
}

/* Contact Grid Lines */
.contact-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(96, 230, 197, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 230, 197, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.contact-card-content {
    position: relative;
    flex-grow: 1;
}

.contact-card-content h4 {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.contact-card-content span {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

.contact-card-arrow {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    transition: all var(--transition-fast);
}

.contact-card:hover .contact-card-arrow {
    color: var(--accent-primary);
    transform: translate(4px, -4px);
}

/* Contact Brands Card */
.contact-brands {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.contact-brands .contact-card-icon {
    margin-bottom: var(--space-md);
}

.brand-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.brand-links a {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
    padding-left: var(--space-md);
}

.brand-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
}

.brand-links a:hover {
    color: var(--accent-primary);
    padding-left: var(--space-lg);
}

.brand-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ================================================
   FOOTER V2
   ================================================ */
.footer {
    background: var(--bg-primary);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid var(--border-subtle);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

.footer-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(96, 230, 197, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content,
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    font-size: var(--text-base);
    color: var(--text-tertiary);
    max-width: 320px;
    line-height: 1.7;
}

.footer-links h5 {
    font-family: var(--font-display);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: var(--space-sm);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ================================================
   REVEAL ANIMATIONS V2
   ================================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.reveal-up[data-delay="100"] { transition-delay: 0.1s; }
.reveal-up[data-delay="200"] { transition-delay: 0.2s; }
.reveal-up[data-delay="300"] { transition-delay: 0.3s; }
.reveal-up[data-delay="400"] { transition-delay: 0.4s; }
.reveal-up[data-delay="500"] { transition-delay: 0.5s; }

/* ================================================
   RESPONSIVE DESIGN V2
   ================================================ */
@media (max-width: 1200px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card.feature-lg,
    .feature-card.feature-card-lg {
        grid-column: span 2;
    }
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .brands-showcase .brand-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

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

    .partnership-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .partnership-content .section-title {
        text-align: center;
    }

    .partnership-content {
        text-align: center;
    }

    .benefits-list li {
        justify-content: center;
    }

    .partnership-content .btn {
        margin: 0 auto;
    }

    .cube-container {
        width: 150px;
        height: 150px;
    }

    .cube-face {
        width: 150px;
        height: 150px;
        font-size: var(--text-3xl);
    }

    .cube-front { transform: translateZ(75px); }
    .cube-back { transform: rotateY(180deg) translateZ(75px); }
    .cube-right { transform: rotateY(90deg) translateZ(75px); }
    .cube-left { transform: rotateY(-90deg) translateZ(75px); }
    .cube-top { transform: rotateX(90deg) translateZ(75px); }
    .cube-bottom { transform: rotateX(-90deg) translateZ(75px); }
}

@media (max-width: 768px) {
    :root {
        --space-5xl: 5rem;
        --space-4xl: 4rem;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    /* Navigation Mobile */
    .nav-menu {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero {
        padding: var(--space-5xl) var(--space-lg);
    }

    .hero-marquee {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-card {
        width: 100%;
    }

    .stat-divider {
        display: none;
    }

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

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

    .scroll-indicator {
        display: none;
    }

    /* Feature Grid */
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card.feature-lg,
    .feature-card.feature-card-lg {
        grid-column: span 1;
    }

    /* Brands */
    .brands-showcase {
        grid-template-columns: 1fr;
    }

    .brands-showcase .brand-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .metrics-bar {
        flex-direction: column;
        gap: var(--space-xl);
    }

    /* AI Grid */
    .ai-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    /* Hide cursor on mobile */
    .cursor,
    .cursor-inner,
    .cursor-outer {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: var(--text-xs);
        padding: var(--space-xs) var(--space-md);
    }

    .feature-card {
        padding: var(--space-lg);
    }

    .ai-card {
        padding: var(--space-lg);
    }

    .brand-card-inner {
        padding: var(--space-lg);
    }

    .contact-card {
        padding: var(--space-lg);
        flex-direction: column;
        text-align: center;
    }

    .contact-card-arrow {
        display: none;
    }
}

/* ================================================
   REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .reveal-up {
        opacity: 1;
        transform: none;
    }

    .aurora,
    .orb,
    .cube-container {
        animation: none !important;
    }
}

/* Focus States */
:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 4px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-bg,
    .scroll-indicator,
    .cursor,
    .cursor-inner,
    .cursor-outer,
    .scroll-progress,
    .aurora-container {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section-title,
    .gradient-text {
        -webkit-text-fill-color: black;
        color: black;
    }
}
