/* ========================================
   AURIS DATA - Advanced Webflow/Palantir-Style Design
   ======================================== */

:root {
    --color-black: #000000;
    --color-darker: #050505;
    --color-dark: #0a0a0a;
    --color-gray-950: #0d0d0d;
    --color-gray-900: #111111;
    --color-gray-850: #151515;
    --color-gray-800: #1a1a1a;
    --color-gray-700: #252525;
    --color-gray-600: #333333;
    --color-gray-500: #555555;
    --color-gray-400: #777777;
    --color-gray-300: #999999;
    --color-gray-200: #bbbbbb;
    --color-white: #ffffff;
    
    --color-cyan: #00d4d4;
    --color-blue: #0080ff;
    --color-orange: #ff8c00;
    --color-red: #ff4040;
    
    --gradient-brand: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue) 35%, var(--color-orange) 70%, var(--color-red) 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(0, 212, 212, 0.12) 0%, transparent 70%);
    
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;
    --space-6xl: 192px;
    
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    
    --duration-fast: 0.2s;
    --duration-medium: 0.4s;
    --duration-slow: 0.8s;
    --duration-slower: 1.2s;
}

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

html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, video { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* Background Grid */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.03;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
}

.cursor.hover .cursor-ring {
    width: 80px;
    height: 80px;
    border-color: var(--color-cyan);
    background: rgba(0, 212, 212, 0.1);
}

.cursor.clicking .cursor-dot {
    transform: translate(-50%, -50%) scale(0.5);
}

.cursor.clicking .cursor-ring {
    transform: translate(-50%, -50%) scale(0.8);
}

@media (max-width: 1024px) { .cursor { display: none; } }

/* Page Transition */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    pointer-events: none;
    overflow: hidden;
}

.page-transition-layer {
    position: absolute;
    top: -10%;
    left: -20%;
    width: 140%;
    height: 120%;
    transform: translateX(0%) skewX(-15deg);
    transform-origin: top left;
    will-change: transform;
}

.page-transition-layer:nth-child(1) {
    background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
    z-index: 1;
}

.page-transition-layer:nth-child(2) {
    background: linear-gradient(135deg, #0d0d0d 0%, #111 100%);
    z-index: 2;
}

.page-transition-layer:nth-child(3) {
    background: linear-gradient(135deg, var(--color-black) 0%, #080808 100%);
    z-index: 3;
}

.page-transition-accent {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-blue), var(--color-orange), var(--color-red));
    transform: scaleX(1);
    transform-origin: right;
    z-index: 4;
    box-shadow: 0 0 20px rgba(0, 212, 212, 0.5), 0 0 40px rgba(0, 128, 255, 0.3);
}

/* Loading Screen */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

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

.loader-logo img,
.loader-logo svg {
    width: 120px;
    height: auto;
    animation: loader-rotate 4s linear infinite;
}

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

.loader-progress {
    width: 200px;
    height: 2px;
    background: var(--color-gray-800);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gradient-brand);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.loader-text {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gray-500);
}

.loader-percentage {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-cyan);
    font-variant-numeric: tabular-nums;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 var(--space-3xl);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--duration-medium) var(--ease-out-quart);
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 1;
    transition: opacity var(--duration-medium);
    pointer-events: none;
}

.nav.scrolled {
    height: 70px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav.scrolled::before { opacity: 0; }

.nav-logo { display: flex; align-items: center; gap: var(--space-md); position: relative; z-index: 1; }
.nav-logo img { height: 150px; width: auto; transition: height var(--duration-medium) var(--ease-out-expo); }
.nav.scrolled .nav-logo img { height: 80px; }

.nav-menu { display: flex; align-items: center; gap: var(--space-3xl); position: relative; z-index: 1; }

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--color-gray-200);
    padding: var(--space-sm) 0;
    transition: color var(--duration-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-white);
    transition: width var(--duration-medium) var(--ease-out-expo);
}

.nav-link:hover { color: var(--color-white); }
.nav-link:hover::after { width: 100%; }

.nav-link svg { width: 10px; height: 10px; transition: transform var(--duration-fast); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Mega Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    min-width: 280px;
    background: var(--color-gray-950);
    border: 1px solid var(--color-gray-800);
    padding: var(--space-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.nav-dropdown-item { display: block; padding: var(--space-md); border-radius: 4px; transition: background var(--duration-fast); }
.nav-dropdown-item:hover { background: var(--color-gray-900); }
.nav-dropdown-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.nav-dropdown-item p { font-size: 12px; color: var(--color-gray-500); }

.nav-cta {
    background: var(--color-white);
    color: var(--color-black);
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: transform var(--duration-fast), box-shadow var(--duration-fast);
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-brand);
    transition: left var(--duration-medium) var(--ease-out-expo);
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(255, 255, 255, 0.15); }
.nav-cta:hover::before { left: 0; }
.nav-cta span { position: relative; z-index: 1; transition: color var(--duration-medium); }
.nav-cta:hover span { color: var(--color-white); }

.nav-cta-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}
.nav-cta-secondary:hover {
    border-color: var(--color-white);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}
.nav-cta-secondary span { color: var(--color-white); }
.nav-cta-secondary:hover span { color: var(--color-white); }
.nav-cta-secondary::before { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 6px; padding: 10px; z-index: 10; }
.nav-toggle span { width: 24px; height: 2px; background: var(--color-white); transition: all var(--duration-medium) var(--ease-out-expo); transform-origin: center; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1; }
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 100%;
    background: radial-gradient(ellipse at 50% 0%, rgba(0, 212, 212, 0.1) 0%, transparent 50%);
    z-index: 3;
    pointer-events: none;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 4px;
    height: 4px;
    background: var(--color-cyan);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    box-shadow: 0 0 10px var(--color-cyan), 0 0 20px var(--color-cyan);
}

.particle.accent {
    background: var(--color-orange);
    box-shadow: 0 0 10px var(--color-orange), 0 0 20px var(--color-orange);
}

@keyframes particle-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(30px, -20px) scale(1.2); opacity: 0.8; }
    50% { transform: translate(-20px, 30px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(20px, 20px) scale(1.1); opacity: 0.7; }
}

/* Hero Data Lines */
.hero-data-lines {
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2;
    pointer-events: none;
    opacity: 0.3;
}

.data-line {
    position: absolute;
    width: 100%;
    height: 100%;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: data-line-draw 4s ease-in-out infinite;
}

@keyframes data-line-draw {
    0% { stroke-dashoffset: 200; opacity: 0; }
    50% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: -200; opacity: 0; }
}

/* Hero Ticker */
.hero-ticker {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
    padding: var(--space-md) var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.ticker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gray-500);
}

.ticker-dot.live {
    background: #00ff88;
    animation: ticker-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px #00ff88;
}

@keyframes ticker-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.ticker-label {
    font-size: 12px;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ticker-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    font-variant-numeric: tabular-nums;
}

.ticker-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Side Decorations */
.hero-side-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.hero-side-decoration.left { left: var(--space-3xl); }
.hero-side-decoration.right { right: var(--space-3xl); }

.decoration-line {
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 212, 0.5), transparent);
}

.decoration-dot {
    width: 8px;
    height: 8px;
    border: 1px solid var(--color-cyan);
    border-radius: 50%;
    animation: decoration-pulse 3s ease-in-out infinite;
}

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

@media (max-width: 1200px) {
    .hero-side-decoration { display: none; }
    .hero-ticker { flex-wrap: wrap; justify-content: center; }
}

.hero-content { position: relative; z-index: 4; text-align: center; max-width: 1000px; padding: 0 var(--space-2xl); }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gray-300);
    margin-bottom: var(--space-2xl);
    opacity: 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-cyan);
    animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(52px, 10vw, 110px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-xl);
}

.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.1em; }
.hero-title .line-inner { display: block; transform: translateY(120%); will-change: transform; }
.hero-title .gradient-text { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-description {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 400;
    color: var(--color-gray-400);
    max-width: 650px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(40px);
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(40px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--duration-medium) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.btn-primary { background: var(--color-white); color: var(--color-black); }
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: var(--gradient-brand); transition: left var(--duration-medium) var(--ease-out-expo); }
.btn-primary:hover::before { left: 0; }
.btn-primary span { position: relative; z-index: 1; transition: color var(--duration-medium); }
.btn-primary:hover span { color: var(--color-white); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2); }

.btn-secondary { background: transparent; color: var(--color-white); border: 1px solid rgba(255, 255, 255, 0.2); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.4); transform: translateY(-3px); }

.btn-icon { width: 16px; height: 16px; transition: transform var(--duration-fast); }
.btn:hover .btn-icon { transform: translateX(4px); }

/* Magnetic Button Effect */
.magnetic {
    transition: transform 0.3s var(--ease-out-expo);
}

/* Button Glow Effect */
.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s var(--ease-out-expo);
    pointer-events: none;
}

.btn-primary:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Glitch Effect on Hover */
.glitch {
    position: relative;
}

.glitch:hover {
    animation: glitch-effect 0.3s ease;
}

@keyframes glitch-effect {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* Hero Scroll Indicator */
.hero-scroll { position: absolute; bottom: 50px; left: 50%; transform: translateX(-50%); z-index: 4; opacity: 0; }
.hero-scroll-inner { display: flex; flex-direction: column; align-items: center; gap: var(--space-md); }
.hero-scroll-text { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gray-500); }
.hero-scroll-line { width: 1px; height: 80px; background: rgba(255, 255, 255, 0.1); position: relative; overflow: hidden; }
.hero-scroll-line::before { content: ''; position: absolute; top: -30px; left: 0; width: 100%; height: 30px; background: linear-gradient(180deg, transparent, var(--color-cyan)); animation: scroll-line 2s ease-in-out infinite; }
@keyframes scroll-line { 0% { top: -30px; } 100% { top: 100%; } }

/* Sections */
.section { position: relative; padding: var(--space-6xl) var(--space-3xl); overflow: hidden; background: rgba(0, 0, 0, 0.85); }
.section-sm { padding: var(--space-5xl) var(--space-3xl); }
.section-black { background: rgba(0, 0, 0, 0.9); }
.section-darker { background: rgba(5, 5, 5, 0.88); }
.section-dark { background: rgba(10, 10, 10, 0.85); }

.container { max-width: 1400px; margin: 0 auto; width: 100%; }
.container-sm { max-width: 900px; }
.container-lg { max-width: 1600px; }

/* Section Headers */
.section-header { margin-bottom: var(--space-4xl); }
.section-header.centered { text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; }

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-cyan);
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
}

.section-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: var(--space-lg);
}

.section-title .line { display: block; overflow: hidden; padding-bottom: 0.05em; }
.section-title .line-inner { display: block; transform: translateY(100%); }

.section-description {
    font-size: 18px;
    color: var(--color-gray-400);
    line-height: 1.8;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
}

.section-header.centered .section-description { margin-left: auto; margin-right: auto; }

/* Feature Cards */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(26, 26, 26, 0.7); border: 1px solid var(--color-gray-800); }

.feature-card {
    background: rgba(0, 0, 0, 0.75);
    padding: var(--space-3xl);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-medium);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 212, 212, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-medium);
    pointer-events: none;
}

.feature-card:hover { background: var(--color-gray-950); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after { opacity: 1; }

/* Corner Accents */
.feature-card .corner-accent {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--color-cyan);
    border-style: solid;
    border-width: 0;
    opacity: 0;
    transition: opacity var(--duration-medium);
}

.feature-card:hover .corner-accent { opacity: 0.5; }
.feature-card .corner-accent.top-left { top: 0; left: 0; border-top-width: 1px; border-left-width: 1px; }
.feature-card .corner-accent.top-right { top: 0; right: 0; border-top-width: 1px; border-right-width: 1px; }
.feature-card .corner-accent.bottom-left { bottom: 0; left: 0; border-bottom-width: 1px; border-left-width: 1px; }
.feature-card .corner-accent.bottom-right { bottom: 0; right: 0; border-bottom-width: 1px; border-right-width: 1px; }

.feature-icon { width: 48px; height: 48px; margin-bottom: var(--space-xl); color: var(--color-cyan); opacity: 1; transform: translateY(0); }
.feature-card h3 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: var(--space-md); opacity: 1; transform: translateY(0); }
.feature-card p { font-size: 15px; color: var(--color-gray-400); line-height: 1.7; opacity: 1; transform: translateY(0); }

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.feature-card:hover .feature-link { opacity: 1; transform: translateY(0); }
.feature-link svg { width: 16px; height: 16px; transition: transform var(--duration-fast); }
.feature-link:hover svg { transform: translateX(4px); }

/* Stats Section */
.stats-section { position: relative; padding: var(--space-5xl) var(--space-3xl); }
.stats-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; max-width: 1200px; height: 600px; background: var(--gradient-glow); pointer-events: none; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3xl); position: relative; }

.stat-item { text-align: center; opacity: 0; transform: translateY(50px); }
.stat-number { font-size: clamp(60px, 9vw, 90px); font-weight: 600; letter-spacing: -0.04em; background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: var(--space-sm); }
.stat-label { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-gray-500); }

/* Showcase Cards */
.showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }

.showcase-card {
    position: relative;
    min-height: 550px;
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid var(--color-gray-800);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-3xl);
    transition: border-color var(--duration-medium);
    opacity: 1;
    transform: translateY(0);
}

.showcase-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%); z-index: 1; }
.showcase-card:hover { border-color: var(--color-gray-600); }

.showcase-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.4; transition: all var(--duration-slow) var(--ease-out-expo); }
.showcase-card:hover .showcase-bg { opacity: 0.6; transform: scale(1.08); }

.showcase-number { position: absolute; top: var(--space-2xl); left: var(--space-3xl); font-size: 13px; font-weight: 600; letter-spacing: 0.15em; color: var(--color-gray-600); z-index: 2; }
.showcase-content { position: relative; z-index: 2; }
.showcase-card h3 { font-size: 34px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: var(--space-md); transition: transform var(--duration-medium); }
.showcase-card:hover h3 { transform: translateX(10px); }
.showcase-card p { font-size: 16px; color: var(--color-gray-300); line-height: 1.7; max-width: 400px; }

/* Capabilities */
.capabilities-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4xl); align-items: center; }
.capabilities-visual { position: relative; height: 600px; background: rgba(13, 13, 13, 0.8); border: 1px solid var(--color-gray-800); display: flex; align-items: center; justify-content: center; overflow: hidden; opacity: 0; transform: scale(0.95); }

/* 3D Globe Container */
.globe-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#globe-canvas {
    width: 100%;
    height: 100%;
    cursor: grab;
}

#globe-canvas:active {
    cursor: grabbing;
}

.globe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: var(--space-xl);
}

.globe-stats {
    display: flex;
    gap: var(--space-2xl);
    padding: var(--space-md) var(--space-xl);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.globe-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.globe-stat-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-cyan);
}

.globe-stat-label {
    font-size: 11px;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.globe-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 212, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: globe-glow-pulse 4s ease-in-out infinite;
}

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

/* Fallback globe for browsers without WebGL */
.globe-fallback {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--color-gray-700) 0%, var(--color-gray-900) 50%, var(--color-black) 100%);
    position: relative;
    box-shadow: inset -40px -40px 100px rgba(0,0,0,0.7), 0 0 100px rgba(0, 212, 212, 0.1);
}

.globe-point {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-cyan);
    box-shadow: 0 0 20px var(--color-cyan), 0 0 40px var(--color-cyan);
    animation: point-pulse 2s ease-in-out infinite;
}

@keyframes point-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.6; }
}

.capabilities-list { display: flex; flex-direction: column; }
.capability-item { display: flex; gap: var(--space-lg); padding: var(--space-xl) 0; border-bottom: 1px solid var(--color-gray-800); transition: border-color var(--duration-fast); opacity: 0; transform: translateX(-40px); }
.capability-item:last-child { border-bottom: none; }
.capability-item:hover { border-color: var(--color-gray-600); }
.capability-icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--color-cyan); }
.capability-content h4 { font-size: 19px; font-weight: 600; margin-bottom: var(--space-sm); }
.capability-content p { font-size: 15px; color: var(--color-gray-400); line-height: 1.7; }

/* CTA Section */
.cta-section { text-align: center; position: relative; padding: var(--space-6xl) var(--space-3xl); background: rgba(0, 0, 0, 0.88); }
.cta-section::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; max-width: 1000px; height: 100%; background: radial-gradient(ellipse at top center, rgba(0, 212, 212, 0.08) 0%, transparent 60%); pointer-events: none; }
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(44px, 7vw, 80px); font-weight: 600; letter-spacing: -0.03em; margin-bottom: var(--space-lg); }
.cta-title .line { display: block; overflow: hidden; }
.cta-title .line-inner { display: block; }
.cta-description { font-size: 19px; color: var(--color-gray-400); max-width: 550px; margin: 0 auto var(--space-2xl); line-height: 1.7; }

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    padding: var(--space-4xl) var(--space-3xl) var(--space-2xl);
    border-top: 1px solid var(--color-gray-800);
}

.footer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-4xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    flex: 0 0 280px;
    max-width: 280px;
}

.footer-brand .logo-wrapper {
    width: 140px;
    height: 50px;
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.footer-brand img {
    height: 80px;
    width: auto;
    margin-top: -15px;
    margin-left: -10px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-gray-500);
    line-height: 1.7;
    margin: 0;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: var(--space-4xl);
    flex: 1;
    justify-content: flex-end;
}

.footer-column {
    min-width: 120px;
}

.footer-column h4 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gray-300);
    margin-bottom: var(--space-lg);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column a {
    font-size: 14px;
    color: var(--color-gray-500);
    transition: color var(--duration-fast);
}

.footer-column a:hover {
    color: var(--color-white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-gray-800);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    font-size: 13px;
    color: var(--color-gray-500);
}

.footer-legal a {
    color: var(--color-gray-500);
    transition: color var(--duration-fast);
}

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

.footer-social {
    display: flex;
    gap: var(--space-lg);
}

.footer-social a {
    color: var(--color-gray-500);
    transition: color var(--duration-fast);
}

.footer-social a:hover {
    color: var(--color-white);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    .section { padding: var(--space-5xl) var(--space-2xl); }
    .nav { padding: 0 var(--space-2xl); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .capabilities-wrapper { grid-template-columns: 1fr; gap: var(--space-3xl); }
    .capabilities-visual { height: 450px; order: -1; }
    .globe { width: 300px; height: 300px; }
}

@media (max-width: 992px) {
    .nav-menu { position: fixed; top: 0; right: 0; width: 100%; height: 100vh; background: var(--color-black); flex-direction: column; align-items: center; justify-content: center; gap: var(--space-xl); transform: translateX(100%); transition: transform var(--duration-slow) var(--ease-out-expo); }
    .nav-menu.active { transform: translateX(0); }
    .nav-toggle { display: flex; }
    .nav-dropdown { position: static; transform: none; opacity: 1; visibility: visible; background: transparent; border: none; padding: var(--space-sm) 0; }
    .showcase-grid { grid-template-columns: 1fr; }
    .showcase-card { min-height: 450px; }
    .footer-top { flex-direction: row; }
    .footer-links { gap: var(--space-2xl); }
}

@media (max-width: 768px) {
    .section { padding: var(--space-4xl) var(--space-lg); }
    .nav { padding: 0 var(--space-lg); height: 70px; }
    .hero { min-height: 700px; }
    .features-grid, .stats-grid { grid-template-columns: 1fr; }
    .feature-card { padding: var(--space-2xl); }
    .showcase-card { min-height: 380px; padding: var(--space-2xl); }
    .capabilities-visual { height: 350px; }
    .globe { width: 240px; height: 240px; }
    .footer-top { flex-direction: column; gap: var(--space-2xl); }
    .footer-brand { flex: none; max-width: 100%; }
    .footer-links { flex-wrap: wrap; justify-content: flex-start; gap: var(--space-2xl); }
    .footer-bottom { flex-direction: column; gap: var(--space-lg); text-align: center; }
    .footer-legal { flex-direction: column; gap: var(--space-sm); }
}

/* Animation Classes */
[data-animate] { opacity: 0; }
[data-animate="fade-up"] { transform: translateY(60px); }
[data-animate="fade-down"] { transform: translateY(-60px); }
[data-animate="fade-left"] { transform: translateX(60px); }
[data-animate="fade-right"] { transform: translateX(-60px); }
[data-animate="scale"] { transform: scale(0.9); }
[data-stagger] > * { opacity: 0; transform: translateY(40px); }

/* ========================================
   SCREENSHOTS SHOWCASE SECTION
   ======================================== */

.screenshots-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.screenshot-card {
    background: rgba(13, 13, 13, 0.85);
    border: 1px solid var(--color-gray-800);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--duration-medium) var(--ease-out-expo);
    opacity: 1;
    transform: translateY(0);
}

.screenshot-card:hover {
    border-color: var(--color-gray-600);
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.screenshot-card.large {
    max-width: 100%;
}

.screenshot-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.screenshot-frame {
    background: rgba(17, 17, 17, 0.9);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.screenshot-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(17, 17, 17, 0.95);
    border-bottom: 1px solid var(--color-gray-800);
}

.screenshot-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-gray-700);
}

.screenshot-dot:nth-child(1) { background: #ff5f57; }
.screenshot-dot:nth-child(2) { background: #febc2e; }
.screenshot-dot:nth-child(3) { background: #28c840; }

.screenshot-title {
    margin-left: auto;
    font-size: 12px;
    color: var(--color-gray-500);
    font-weight: 500;
}

.screenshot-content {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.screenshot-card.large .screenshot-content {
    aspect-ratio: 21 / 9;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out-expo);
}

.screenshot-card:hover .screenshot-img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    pointer-events: none;
}

.screenshot-overlay.dark {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
}

.screenshot-stats {
    display: flex;
    gap: var(--space-2xl);
}

.screenshot-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.screenshot-stat .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-cyan);
    line-height: 1;
}

.screenshot-stat .stat-label {
    font-size: 11px;
    color: var(--color-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mini-stats {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.mini-stat {
    font-size: 13px;
    color: var(--color-gray-300);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.mini-stat strong {
    color: var(--color-white);
    font-weight: 600;
}

.mini-stat.status-stable {
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.mini-stat.trend-up {
    color: #ff6b6b;
}

.mini-stat.trend-stable {
    color: #00ff88;
}

.screenshot-info {
    padding: var(--space-xl);
}

.screenshot-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.screenshot-info p {
    font-size: 14px;
    color: var(--color-gray-400);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .screenshot-row {
        grid-template-columns: 1fr;
    }

    .screenshot-card.large .screenshot-content {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .screenshot-stats {
        flex-wrap: wrap;
        gap: var(--space-lg);
    }

    .mini-stats {
        flex-wrap: wrap;
    }
}

/* ========================================
   ENTERPRISE SECTION
   ======================================== */

.enterprise-section {
    background: rgba(10, 10, 10, 0.82);
    position: relative;
    overflow: hidden;
}

.enterprise-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at right center, rgba(0, 212, 212, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.enterprise-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: center;
}

.enterprise-content {
    opacity: 1;
    transform: translateX(0);
}

.enterprise-description {
    font-size: 18px;
    color: var(--color-gray-400);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.enterprise-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.enterprise-features li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 15px;
    color: var(--color-gray-300);
}

.enterprise-features svg {
    width: 20px;
    height: 20px;
    color: var(--color-cyan);
    flex-shrink: 0;
}

.enterprise-images {
    position: relative;
    opacity: 1;
    transform: translateX(0);
}

.enterprise-image-stack {
    position: relative;
    height: 500px;
}

.enterprise-image {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.enterprise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enterprise-image.primary {
    top: 0;
    left: 0;
    width: 85%;
    height: 380px;
    z-index: 2;
}

.enterprise-image.secondary {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 280px;
    z-index: 3;
}

.enterprise-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 13px;
    color: var(--color-gray-300);
}

.caption-icon {
    width: 16px;
    height: 16px;
    color: var(--color-cyan);
}

.caption-icon svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 1200px) {
    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .enterprise-image-stack {
        height: 400px;
    }

    .enterprise-image.primary {
        width: 75%;
        height: 320px;
    }

    .enterprise-image.secondary {
        width: 55%;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .enterprise-image-stack {
        height: 350px;
    }

    .enterprise-image.primary {
        width: 100%;
        height: 280px;
        position: relative;
    }

    .enterprise-image.secondary {
        display: none;
    }
}

/* ========================================
   SHOWCASE CARDS WITH IMAGES
   ======================================== */

.showcase-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--duration-slow) var(--ease-out-expo);
}

.showcase-card:hover .showcase-bg img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

/* CSS Fallback visuals for showcase cards */
.showcase-card:nth-child(1) .showcase-bg {
    background: linear-gradient(135deg, #003366 0%, #001a33 50%, #000d1a 100%);
}

.showcase-card:nth-child(2) .showcase-bg {
    background: linear-gradient(135deg, #1a4d1a 0%, #0d260d 50%, #051305 100%);
}

.showcase-card:nth-child(3) .showcase-bg {
    background: linear-gradient(135deg, #4d1a1a 0%, #260d0d 50%, #130505 100%);
}

.showcase-card:nth-child(4) .showcase-bg {
    background: linear-gradient(135deg, #4d3d1a 0%, #26200d 50%, #131005 100%);
}

/* Add visual patterns to showcase cards */
.showcase-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 212, 212, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 0, 0.08) 0%, transparent 40%);
    z-index: 1;
}

.showcase-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    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: 40px 40px;
    z-index: 2;
}

/* Screenshot fallback visuals */
.screenshot-content {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(13, 13, 13, 0.95) 100%);
    position: relative;
}

.screenshot-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(0, 212, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 128, 255, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.screenshot-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 212, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 212, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 2;
}

/* Dashboard mockup elements for screenshots */
.screenshot-card.large .screenshot-content::before {
    background-image:
        radial-gradient(circle at 50% 50%, rgba(0, 212, 212, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(64, 64, 255, 0.1) 0%, transparent 30%);
}

/* Enterprise image fallbacks */
.enterprise-image {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(17, 17, 17, 0.9) 100%);
}

.enterprise-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 40% 40%, rgba(0, 212, 212, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.enterprise-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    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: 20px 20px;
    z-index: 2;
}

/* ========================================
   DASHBOARD MOCKUP STYLES
   ======================================== */

.dashboard-mockup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: var(--space-lg);
    display: flex;
    z-index: 5;
}

/* Globe Mockup */
.globe-mockup {
    display: grid;
    grid-template-columns: 200px 1fr 220px;
    gap: var(--space-lg);
}

.mockup-sidebar {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: var(--space-md);
}

.mockup-filter {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.filter-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-gray-400);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.tag-conflict { background: rgba(0, 212, 212, 0.2); color: #00d4d4; }
.tag-unrest { background: rgba(255, 140, 0, 0.2); color: #ff8c00; }
.tag-disaster { background: rgba(255, 64, 64, 0.2); color: #ff4040; }

.filter-slider {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-slider span {
    font-size: 11px;
    color: var(--color-gray-500);
}

.slider-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.slider-fill {
    width: 60%;
    height: 100%;
    background: var(--color-cyan);
    border-radius: 2px;
}

.mockup-globe {
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-svg {
    width: 100%;
    max-width: 300px;
    height: auto;
    animation: globe-rotate 20s linear infinite;
}

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

.mockup-feed {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: var(--space-md);
}

.feed-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-gray-400);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feed-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 11px;
    color: var(--color-gray-300);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feed-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.feed-dot.critical { background: #ff4040; box-shadow: 0 0 8px #ff4040; }
.feed-dot.warning { background: #ff8c00; box-shadow: 0 0 8px #ff8c00; }

/* Analytics Mockup */
.analytics-mockup {
    flex-direction: column;
    gap: var(--space-md);
}

.analytics-stats-row {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
}

.analytics-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.analytics-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-white);
}

.analytics-label {
    font-size: 10px;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.analytics-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    width: 100%;
    height: 100%;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--color-cyan) 0%, rgba(0, 212, 212, 0.3) 100%);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
}

.analytics-donut {
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 80px;
    height: 80px;
}

.analytics-donut svg {
    width: 100%;
    height: 100%;
}

/* Trends Mockup */
.trends-mockup {
    flex-direction: column;
    gap: var(--space-md);
}

.trends-chart {
    flex: 1;
    padding: var(--space-md);
}

.trends-chart svg {
    width: 100%;
    height: 100%;
}

.trends-regions {
    display: flex;
    gap: var(--space-md);
    padding: 0 var(--space-md);
}

.region-card {
    flex: 1;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    border-left: 3px solid;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.region-card.escalating {
    border-color: #ff4040;
}

.region-card.stable {
    border-color: #00ff88;
}

.region-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}

.region-status {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.region-card.escalating .region-status { color: #ff4040; }
.region-card.stable .region-status { color: #00ff88; }

.region-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-gray-300);
}

.trends-gauge {
    position: absolute;
    bottom: 80px;
    right: 20px;
    width: 100px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trends-gauge svg {
    width: 100%;
    height: 100%;
}

.gauge-value {
    position: absolute;
    bottom: 5px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
}

/* Responsive for mockups */
@media (max-width: 1200px) {
    .globe-mockup {
        grid-template-columns: 1fr;
    }

    .mockup-sidebar,
    .mockup-feed {
        display: none;
    }
}

@media (max-width: 768px) {
    .analytics-stats-row {
        flex-wrap: wrap;
    }

    .analytics-value {
        font-size: 20px;
    }

    .trends-regions {
        flex-direction: column;
    }
}

/* Enterprise Visual Placeholders */
.enterprise-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(17, 17, 17, 0.9) 100%);
}

.visual-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: var(--space-xl);
}

.team-illustration,
.analyst-illustration {
    width: 80%;
    max-width: 300px;
    height: auto;
    margin-bottom: var(--space-md);
}

.visual-label {
    font-size: 14px;
    color: var(--color-gray-400);
    text-align: center;
    font-weight: 500;
}

.team-visual {
    background: linear-gradient(135deg, rgba(0, 40, 80, 0.7) 0%, rgba(0, 20, 40, 0.85) 100%);
}

.analyst-visual {
    background: linear-gradient(135deg, rgba(0, 50, 50, 0.7) 0%, rgba(0, 25, 25, 0.85) 100%);
}

/* Showcase Card Icons */
.showcase-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    width: 120px;
    height: 120px;
    color: rgba(255, 255, 255, 0.15);
    transition: all var(--duration-medium) var(--ease-out-expo);
}

.showcase-card:hover .showcase-icon {
    color: rgba(0, 212, 212, 0.3);
    transform: translate(-50%, -70%) scale(1.1);
}

.showcase-icon svg {
    width: 100%;
    height: 100%;
}
