/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Quantum Precision Palette - Lighter, More Balanced */
    --primary-color: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #60A5FA;
    --secondary-color: #06B6D4;
    --accent-cyan: #22D3EE;
    --accent-violet: #8B5CF6;
    --accent-emerald: #10B981;
    
    /* Balanced backgrounds - not too dark */
    --dark-bg: #0F172A;
    --darker-bg: #0C1322;
    --surface-elevated: #1E293B;
    --surface-card: #1A2332;
    
    /* Typography with better contrast */
    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    --text-accent: #38BDF8;
    
    /* Vibrant status colors */
    --accent-color: #F59E0B;
    --success-color: #10B981;
    --warning-color: #FBBF24;
    --danger-color: #EF4444;
    
    /* Card surfaces - slightly lighter */
    --card-bg: rgba(30, 41, 59, 0.5);
    --card-bg-hover: rgba(51, 65, 85, 0.6);
    --card-border: rgba(148, 163, 184, 0.15);
    --card-border-hover: rgba(96, 165, 250, 0.5);
    
    /* Quantum glow effects - more vibrant */
    --glow-primary: rgba(37, 99, 235, 0.4);
    --glow-secondary: rgba(6, 182, 212, 0.35);
    --glow-accent: rgba(139, 92, 246, 0.3);
    --glow-emerald: rgba(16, 185, 129, 0.3);
    
    /* Atomic grid layers */
    --grid-color: rgba(96, 165, 250, 0.06);
    --grid-accent: rgba(34, 211, 238, 0.08);
    --grid-violet: rgba(139, 92, 246, 0.05);
    
    /* Pixel-perfect spacing scale (8px base) */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 128px;
    
    /* Precision timing */
    --transition-fast: 0.15s;
    --transition-normal: 0.25s;
    --transition-slow: 0.4s;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-precision: cubic-bezier(0.25, 0.1, 0.25, 1);
    
    /* Atomic scale levels */
    --atomic-scale-macro: 1;
    --atomic-scale-micro: 0.75;
    --atomic-scale-nano: 0.5;
    --atomic-scale-quantum: 0.25;
}

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Quantum Atomic Background System */
.isometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Macro Level Grid - Large molecular structures */
.grid-layer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 64px 64px;
    transform: perspective(1500px) rotateX(60deg) rotateZ(45deg);
    animation: gridFloat 40s linear infinite;
}

/* Micro Level Grid - Crystalline lattice */
.grid-layer-2 {
    background-size: 32px 32px;
    background-image: 
        linear-gradient(var(--grid-accent) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-accent) 1px, transparent 1px);
    opacity: 0.5;
    animation-delay: -15s;
    animation-duration: 50s;
}

/* Nano Level Grid - Atomic bonds */
.grid-layer-3 {
    background-size: 16px 16px;
    background-image: 
        linear-gradient(var(--grid-violet) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-violet) 1px, transparent 1px);
    opacity: 0.3;
    animation-delay: -30s;
    animation-duration: 60s;
}

@keyframes gridFloat {
    0% { transform: perspective(1500px) rotateX(60deg) rotateZ(45deg) translateY(0); }
    100% { transform: perspective(1500px) rotateX(60deg) rotateZ(45deg) translateY(64px); }
}


/* Particle Field - Precision Data Points */
.particle-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 12s linear infinite;
}

.particle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    box-shadow: 0 0 6px currentColor;
}

@keyframes particleFloat {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-100vh); opacity: 0; }
}

/* Password Gate */
.password-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.password-gate.active {
    display: flex;
}

.password-container {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.password-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
}

/* Atomic Logo Animation */
.atomic-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    position: relative;
}

.nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--glow-primary);
    animation: nucleusPulse 2s ease-in-out infinite;
}

@keyframes nucleusPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 20px var(--glow-primary); }
    50% { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 0 30px var(--glow-secondary); }
}

.electron-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 {
    width: 40px;
    height: 40px;
    animation: orbitRotate 3s linear infinite;
}

.orbit-2 {
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%) rotate(60deg);
    animation: orbitRotate 4s linear infinite reverse;
}

.orbit-3 {
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%) rotate(120deg);
    animation: orbitRotate 5s linear infinite;
}

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.electron {
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--glow-secondary);
}

.password-logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.password-container h2 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.password-container > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

#passwordForm input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 16px;
    transition: all var(--transition-normal) ease;
}

#passwordForm input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

#passwordForm button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

#passwordForm button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

#passwordForm button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--glow-primary);
}

#passwordForm button:hover::before {
    left: 100%;
}

.error-message {
    color: #FF4444;
    font-size: 14px;
    margin-top: 16px;
    min-height: 20px;
}

/* Main Content */
main {
    position: relative;
    z-index: 1;
}

.main-content {
    display: none;
    position: relative;
    z-index: 1;
}

.main-content.active {
    display: block;
}

/* Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
    transition: all var(--transition-normal) ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(6, 8, 21, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 48px;
    padding-right: 48px;
    max-width: 100%;
    width: 100%;
}

.nav-wordmark {
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-self: start;
}

.nav-logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo-text {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    transition: color var(--transition-fast) ease;
}

.nav-wordmark:hover .logo-text {
    color: var(--primary-light);
}

.nav-menu {
    justify-self: end;
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.atom-symbol {
    width: 100%;
    height: 100%;
    position: relative;
}

.atom-symbol .nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px var(--glow-primary);
}

.atom-symbol .orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    border: 1.5px solid var(--primary-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
    animation: orbitPulse 3s ease-in-out infinite;
}

@keyframes orbitPulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.05); }
}

.atom-icon {
    width: 100%;
    height: 100%;
    animation: atomSpin 10s linear infinite;
}

.nucleus-svg {
    fill: var(--primary-color);
}

.orbit-svg {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 0.5;
    opacity: 0.6;
}

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

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color var(--transition-normal) ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width var(--transition-normal) var(--ease-out-expo);
}

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

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

.btn-primary-nav {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all var(--transition-normal) var(--ease-out-expo);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn-primary-nav::after {
    display: none;
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--glow-primary);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-normal) ease;
}

/* Hero Section - Macro Level */
.hero {
    padding: var(--space-32) 0 var(--space-24);
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    --atomic-level: macro;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 50% 20%, rgba(37, 99, 235, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 60%, rgba(6, 182, 212, 0.08) 0%, transparent 35%),
        radial-gradient(ellipse at 25% 70%, rgba(139, 92, 246, 0.06) 0%, transparent 35%);
    pointer-events: none;
}

/* Quantum Molecular Structure System */
.isometric-cube-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Macro Level - Large molecular cubes */
.iso-cube {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size, 80px);
    height: var(--size, 80px);
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(45deg);
    animation: isoCubeFloat var(--duration, 8s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.iso-cube .cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--cube-color, rgba(96, 165, 250, 0.3));
    background: var(--cube-bg, rgba(37, 99, 235, 0.08));
    backdrop-filter: blur(2px);
}

.iso-cube .cube-top {
    transform: translateZ(calc(var(--size, 80px) / 2));
    background: linear-gradient(135deg, 
        rgba(96, 165, 250, 0.15), 
        rgba(34, 211, 238, 0.1));
}

.iso-cube .cube-front {
    transform: rotateX(-90deg) translateZ(calc(var(--size, 80px) / 2));
    background: rgba(37, 99, 235, 0.12);
}

.iso-cube .cube-right {
    transform: rotateY(90deg) translateZ(calc(var(--size, 80px) / 2));
    background: rgba(6, 182, 212, 0.08);
}

/* Atomic bonds connecting cubes */
.atomic-bond {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--secondary-color), 
        transparent);
    opacity: 0.4;
    transform-origin: left center;
}

@keyframes isoCubeFloat {
    0%, 100% { 
        transform: rotateX(60deg) rotateZ(45deg) translateY(0) translateZ(0); 
    }
    50% { 
        transform: rotateX(60deg) rotateZ(45deg) translateY(-12px) translateZ(4px); 
    }
}

/* Electron Orbit Rings */
.electron-ring {
    position: absolute;
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 50%;
    animation: electronOrbit var(--orbit-duration, 6s) linear infinite;
}

.electron-ring::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--accent-cyan);
}

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

/* Quantum Particle Effects */
.quantum-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 
        0 0 6px var(--accent-cyan),
        0 0 12px var(--glow-secondary);
    animation: quantumFlicker 2s ease-in-out infinite;
}

@keyframes quantumFlicker {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    25% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
    75% { opacity: 0.5; transform: scale(0.9); }
}

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

/* Precision Badge - Technical Status Indicator */
.precision-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent-cyan);
    margin-bottom: 24px;
    letter-spacing: 0.05em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success-color);
    border-radius: 1px;
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid var(--success-color);
    border-radius: 2px;
    opacity: 0;
    animation: dotPing 2s ease-out infinite;
}

@keyframes dotPing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2); opacity: 0; }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: var(--space-6);
    letter-spacing: -0.03em;
}

.title-line {
    display: block;
}

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

/* Technical Precision Typography */
.mono-text {
    font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
    letter-spacing: 0.02em;
}

.precision-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto var(--space-12);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-16);
}

/* Button Styles */
.btn {
    padding: var(--space-4) var(--space-6);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal) var(--ease-out-expo);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

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

.btn-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-normal) var(--ease-out-expo);
}

.btn-icon svg {
    width: 16px;
    height: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    font-weight: 600;
    letter-spacing: 0.02em;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--glow-primary);
}

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

.btn-primary:hover .btn-icon {
    transform: translateX(3px);
}

.btn-glow {
    box-shadow: 0 0 0 1px var(--primary-light);
}

.btn-glow:hover {
    box-shadow: 0 8px 24px var(--glow-primary), 0 0 0 1px var(--primary-light);
}

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

.btn-secondary:hover {
    background: var(--card-bg);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

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

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    max-width: 720px;
    margin: 0 auto;
}

.stat {
    padding: var(--space-8) var(--space-6);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal) ease;
}

.stat:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    background: var(--card-bg-hover);
}

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

.stat-number {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-2);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: var(--space-4);
}

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

.stat-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 1.5s var(--ease-out-expo);
}

.stat.animated .stat-bar-fill {
    width: var(--fill);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-muted);
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
    animation: scrollBounce 2s ease-in-out infinite;
}

.mouse {
    width: 20px;
    height: 32px;
    border: 1px solid var(--text-muted);
    border-radius: 10px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

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

/* Section Styles - Pixel Perfect Spacing */
section {
    padding: var(--space-32) 0;
    position: relative;
}

.parallax-section {
    will-change: transform;
}

/* Atomic Level Sections - Progressive depth styling */
section[data-atomic-level="macro"] {
    --section-accent: var(--primary-light);
    --section-glow: var(--glow-primary);
}

section[data-atomic-level="micro"] {
    --section-accent: var(--secondary-color);
    --section-glow: var(--glow-secondary);
}

section[data-atomic-level="nano"] {
    --section-accent: var(--accent-violet);
    --section-glow: var(--glow-accent);
}

section[data-atomic-level="quantum"] {
    --section-accent: var(--accent-emerald);
    --section-glow: var(--glow-emerald);
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 2px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    color: var(--section-accent, var(--accent-cyan));
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-4);
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--section-accent, var(--secondary-color));
    border-radius: 1px;
    animation: tagPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--section-glow, var(--glow-secondary));
}

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

.section-title {
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--space-5);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    color: var(--accent-color);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.large-text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

.emphasis {
    color: var(--text-primary);
    font-weight: 600;
}

.highlight-box {
    padding: var(--space-5) var(--space-6);
    background: rgba(37, 99, 235, 0.08);
    border-left: 2px solid var(--primary-light);
    border-radius: 0 4px 4px 0;
    margin: var(--space-8) 0;
}

/* Isometric Card Base - Aerospace Precision */
.isometric-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    backdrop-filter: blur(12px);
    transition: all var(--transition-normal) var(--ease-precision);
    position: relative;
    overflow: hidden;
}

.isometric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-light), var(--secondary-color));
    opacity: 0;
    transition: opacity var(--transition-normal) ease;
}

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

.isometric-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--card-border-hover);
}

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

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-primary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal) ease;
    pointer-events: none;
}

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

/* Animation States */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-animate="fade-up"].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-right"].animated {
    opacity: 1;
    transform: translateX(0);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-left"].animated {
    opacity: 1;
    transform: translateX(0);
}

/* Problem Section */
.problem-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(255, 107, 0, 0.03) 50%, var(--dark-bg) 100%);
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.problem-content {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 48px;
}

.problem-text {
    padding-right: 24px;
}

.problem-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Waste Meter */
.waste-meter {
    position: relative;
}

.meter-ring {
    position: relative;
    width: 200px;
    height: 200px;
}

.meter-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.meter-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.meter-fill {
    fill: none;
    stroke: url(#meterGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: calc(339.292 - (339.292 * var(--percent) / 100));
    transition: stroke-dashoffset 2s var(--ease-out-expo);
}

.meter-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.meter-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--accent-color);
    font-family: 'JetBrains Mono', monospace;
}

.meter-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quote Card */
.quote-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 32px 40px;
    position: relative;
    margin-top: 48px;
}

.quote-icon {
    position: absolute;
    top: -16px;
    left: 32px;
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.quote-card p {
    font-size: 20px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
}

blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 32px;
    margin: 48px 0;
    font-size: 20px;
    font-style: italic;
    color: var(--text-primary);
}

/* Solution Section */
.solution-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(0, 102, 255, 0.03) 50%, var(--dark-bg) 100%);
}

.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-prop-card {
    padding: 40px 32px;
    text-align: center;
}

.value-prop-card .icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    position: relative;
}

.feature-icon {
    width: 100%;
    height: 100%;
}

.feature-icon .icon-bg {
    fill: rgba(0, 102, 255, 0.1);
    stroke: var(--primary-color);
    stroke-width: 1;
}

.feature-icon .icon-center {
    fill: var(--primary-color);
}

.feature-icon .icon-cross,
.feature-icon .icon-check,
.feature-icon .icon-ring {
    stroke: var(--secondary-color);
}

.value-prop-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.value-prop-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.card-connector {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    transform: translateX(-50%);
    transition: height var(--transition-normal) ease;
}

.value-prop-card:hover .card-connector {
    height: 40px;
}

/* How It Works */
.how-it-works {
    background: radial-gradient(ellipse at center, rgba(0, 217, 255, 0.03) 0%, transparent 60%);
}

.steps-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 1.5s var(--ease-out-expo);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.step {
    padding: 32px 24px;
    text-align: center;
}

.step-connector {
    position: absolute;
    top: 60px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal) ease;
}

.step:hover .step-connector {
    opacity: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    transition: all var(--transition-normal) var(--ease-out-expo);
}

.step-number span {
    font-size: 24px;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: stepPulse 2s ease-out infinite;
}

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

.step:hover .step-number {
    border-color: var(--primary-color);
    background: rgba(0, 102, 255, 0.1);
    transform: scale(1.05);
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.step-visual {
    width: 60px;
    height: 60px;
    margin: 24px auto 0;
    position: relative;
}

/* Isometric Box Visual */
.iso-box {
    width: 40px;
    height: 40px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(60deg) rotateZ(45deg);
    animation: isoBoxRotate 4s ease-in-out infinite;
}

.box-face {
    position: absolute;
    width: 100%;
    height: 100%;
}

.box-top {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateZ(20px);
    opacity: 0.8;
}

.box-front {
    background: var(--primary-dark);
    transform: rotateX(-90deg) translateZ(20px);
    opacity: 0.6;
}

.box-right {
    background: var(--primary-color);
    transform: rotateY(90deg) translateZ(20px);
    opacity: 0.4;
}

@keyframes isoBoxRotate {
    0%, 100% { transform: rotateX(60deg) rotateZ(45deg); }
    50% { transform: rotateX(60deg) rotateZ(135deg); }
}

/* Atom Visual */
.atom-visual {
    width: 60px;
    height: 60px;
    position: relative;
}

.atom-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--glow-secondary);
}

.atom-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(0, 217, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 30px;
    height: 30px;
    animation: atomRing 2s linear infinite;
}

.ring-2 {
    width: 45px;
    height: 45px;
    transform: translate(-50%, -50%) rotate(60deg);
    animation: atomRing 3s linear infinite reverse;
}

.ring-3 {
    width: 60px;
    height: 60px;
    transform: translate(-50%, -50%) rotate(120deg);
    animation: atomRing 4s linear infinite;
}

@keyframes atomRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Check Visual */
.check-visual {
    width: 60px;
    height: 60px;
}

.check-visual svg {
    width: 100%;
    height: 100%;
}

.check-circle {
    fill: rgba(0, 217, 126, 0.1);
    stroke: var(--success-color);
    stroke-width: 2;
}

.check-mark {
    fill: none;
    stroke: var(--success-color);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: checkDraw 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes checkDraw {
    to { stroke-dashoffset: 0; }
}

/* Technology Section */
.technology-section {
    background: var(--darker-bg);
    position: relative;
}

.tech-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 102, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.tech-content {
    max-width: 900px;
    margin: 0 auto 48px;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.tech-stat {
    padding: 32px 24px;
    text-align: center;
}

.stat-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, var(--glow-primary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal) ease;
}

.tech-stat:hover .stat-glow {
    opacity: 0.15;
}

.tech-stat-value {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-family: 'JetBrains Mono', monospace;
}

.tech-stat-label {
    color: var(--text-secondary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.stat-indicator {
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.indicator-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 1.5s var(--ease-out-expo);
}

.tech-stat.animated .indicator-fill {
    width: var(--width);
}

.validation-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.validation-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.validation-icon svg {
    width: 100%;
    height: 100%;
    color: var(--success-color);
}

/* Results Section */
.results-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(0, 217, 126, 0.02) 50%, var(--dark-bg) 100%);
}

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

.result-card {
    padding: 32px;
}

.result-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

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

.result-icon .icon-plane,
.result-icon .icon-shield,
.result-icon .icon-medical {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 1.5;
}

.result-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.result-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.detail-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.detail-text {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.result-outcome {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.outcome-item {
    text-align: center;
    padding: 12px;
    background: rgba(0, 217, 126, 0.05);
    border-radius: 8px;
}

.outcome-value {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--success-color);
    font-family: 'JetBrains Mono', monospace;
}

.outcome-label {
    display: block;
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Industries Section */
.industries-section {
    background: var(--darker-bg);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    padding: 32px 24px;
    text-align: center;
}

.industry-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    transition: all var(--transition-normal) var(--ease-out-expo);
}

.industry-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 1.5;
}

.industry-card:hover .industry-icon {
    background: rgba(0, 102, 255, 0.2);
    transform: scale(1.1);
}

.industry-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.industry-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.industry-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 10px;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Platform Preview */
.platform-preview {
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.03) 0%, var(--dark-bg) 100%);
}

.platform-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.capability {
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.capability-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    position: relative;
}

.capability-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    border-radius: 4px;
}

.capability-icon.predict::before { border-radius: 50%; }
.capability-icon.optimize::before { transform: translate(-50%, -50%) rotate(45deg); }
.capability-icon.certify::before { border-radius: 2px; }
.capability-icon.scale::before { 
    width: 12px; 
    height: 12px; 
    box-shadow: 8px 0 0 var(--secondary-color), 0 8px 0 var(--secondary-color), 8px 8px 0 var(--primary-light);
}

.capability-content {
    flex: 1;
}

.capability-content strong {
    display: block;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.capability-content span {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.integration-logos {
    text-align: center;
    padding: 32px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.integration-note {
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.integration-list {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.integration-item {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all var(--transition-normal) ease;
}

.integration-item:hover {
    background: rgba(0, 102, 255, 0.1);
    color: var(--text-primary);
}

/* Social Proof */
.social-proof {
    background: var(--darker-bg);
}

.testimonials {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    padding: 48px;
    position: relative;
}

.quote-marks {
    position: absolute;
    top: 24px;
    left: 32px;
    width: 40px;
    height: 40px;
    opacity: 0.2;
}

.quote-marks svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.testimonial p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 32px;
    font-style: italic;
    padding-left: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 24px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    position: relative;
}

.author-avatar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -60%);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info cite {
    color: var(--text-primary);
    font-style: normal;
    font-weight: 600;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Logos Section */
.logos-section {
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 100px 0;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 64px;
    align-items: center;
    justify-items: center;
    margin-top: 64px;
}

.logo-item {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-4px);
}

.partner-logo {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.75);
    transition: all 0.3s ease;
}

.logo-item:hover .partner-logo {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.08);
}

/* Responsive logos grid */
@media (max-width: 1024px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    
    .partner-logo {
        max-height: 100px;
    }
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(0, 102, 255, 0.02) 50%, var(--dark-bg) 100%);
}

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

.pricing-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.08) 0%, var(--card-bg) 100%);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.card-header {
    margin-bottom: 24px;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.price-period {
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.check-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    background: rgba(0, 217, 126, 0.2);
    border-radius: 50%;
    position: relative;
    margin-top: 2px;
}

.check-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 3px;
    border-left: 2px solid var(--success-color);
    border-bottom: 2px solid var(--success-color);
    transform: translate(-50%, -60%) rotate(-45deg);
}

.roi-callout {
    padding: 48px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.roi-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roi-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.roi-content {
    flex: 1;
}

.roi-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.roi-content > p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.roi-content ul {
    list-style: none;
}

.roi-content li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
    padding-left: 24px;
    position: relative;
}

.roi-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* About Section */
.about-section {
    background: var(--darker-bg);
}

.founders {
    margin: 64px 0;
}

.founders h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.founder-card {
    padding: 40px;
}

.founder-avatar {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.founder-card h4 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.founder-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 14px;
}

.founder-card > p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 14px;
}

.founder-why {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
}

.founder-why strong {
    display: block;
    color: var(--text-primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.founder-why p {
    color: var(--text-secondary);
    font-size: 14px;
    font-style: italic;
    line-height: 1.6;
}

.values {
    margin-top: 64px;
}

.values h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value {
    padding: 32px;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.value h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.value p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* Solutions Section */
.solutions-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(0, 217, 255, 0.02) 50%, var(--dark-bg) 100%);
}

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

.solution-card {
    padding: 40px 32px;
}

.solution-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
}

.solution-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.solution-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.solution-tagline {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 24px;
    font-size: 14px;
}

.solution-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.solution-card li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.solution-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

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

/* Resources Section */
.resources-section {
    background: var(--darker-bg);
}

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

.resource-card {
    padding: 32px;
}

.resource-type {
    color: var(--secondary-color);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.resource-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 14px;
}

.resource-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-normal) ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.resource-link:hover {
    color: var(--secondary-color);
    gap: 10px;
}

.solution-cta {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-normal) ease;
}

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

/* CTA / Contact Section */
.cta-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(0, 102, 255, 0.05) 50%, var(--darker-bg) 100%);
    padding: 120px 0;
    position: relative;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 20%, rgba(0, 102, 255, 0.08) 0%, transparent 50%),
                      radial-gradient(circle at 70% 80%, rgba(0, 217, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 64px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Inquiry Form */
.contact-form-wrapper {
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 22px;
    margin-bottom: 32px;
    font-weight: 700;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all var(--transition-normal) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B4B4C8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 8px;
}

.form-success {
    text-align: center;
    padding: 48px 32px;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
}

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

.success-icon circle {
    fill: rgba(0, 217, 126, 0.1);
    stroke: var(--success-color);
    stroke-width: 2;
}

.success-icon path {
    fill: none;
    stroke: var(--success-color);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-success h3,
.form-success h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--success-color);
}

.form-success p {
    color: var(--text-secondary);
}

.form-success .contact-followup {
    margin-top: var(--space-4);
    font-size: 14px;
}

.form-success .contact-followup a {
    color: var(--primary-light);
    font-weight: 500;
}

.submission-card {
    margin-top: var(--space-6);
    padding: var(--space-5);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    text-align: left;
}

.submission-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--card-border);
}

.submission-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.submission-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-4);
}

.submission-row.full-width {
    flex-direction: column;
    gap: var(--space-1);
}

.submission-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    min-width: 80px;
}

.submission-value {
    font-size: 14px;
    color: var(--text-primary);
    text-align: right;
}

.submission-row.full-width .submission-value {
    text-align: left;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.book-meeting-card {
    padding: 32px;
    text-align: center;
}

.meeting-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
}

.meeting-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-color);
}

.book-meeting-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.book-meeting-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-info-card {
    padding: 32px;
}

.contact-info-card h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    padding: 12px;
    margin: -12px;
    border-radius: 8px;
    transition: all var(--transition-normal) ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.03);
}

.link-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.link-content {
    display: flex;
    flex-direction: column;
}

.link-content strong {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
}

.link-content span {
    color: var(--text-secondary);
    font-size: 13px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--card-border);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

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

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

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--card-border);
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .value-props,
    .steps,
    .results-grid,
    .solutions-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid,
    .tech-stats,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .industries-grid,
    .tech-stats,
    .platform-capabilities,
    .founders-grid,
    .values-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .isometric-bg,
    .iso-cube {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .tech-stat-value {
        font-size: 28px;
    }
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* ============================================
   NEW MULTI-PAGE STYLES
   ============================================ */

/* Hero with WebGL */
.hero-webgl-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-webgl-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(6, 8, 21, 0.85) 0%,
        rgba(6, 8, 21, 0.7) 50%,
        rgba(6, 8, 21, 0.6) 100%
    );
    z-index: 1;
}

.hero-content-overlay {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 60px;
}

.hero-webgl-section .hero-content {
    max-width: 680px;
    text-align: left;
}

.hero-webgl-section .hero-content > * {
    margin-left: 0;
    padding-left: 0;
}

.hero-webgl-section .hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-webgl-section .hero-title .title-line {
    display: block;
}

.hero-webgl-section .hero-title .title-word-group {
    display: inline;
    white-space: nowrap;
}

.hero-webgl-section .hero-subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 480px;
    margin-bottom: 32px;
    margin-left: 0;
    padding-left: 0;
}

.hero-webgl-section .hero-cta {
    margin-bottom: 0;
    text-align: left;
    display: flex;
    justify-content: flex-start;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-accent);
    margin-bottom: 20px;
}

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

.hero-proof {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.proof-item {
    font-size: 15px;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

.proof-item strong {
    color: var(--text-primary);
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    margin-right: 6px;
}

.proof-divider {
    width: 1px;
    height: 28px;
    background: rgba(148, 163, 184, 0.2);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 10px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--text-muted), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.15); }
}

/* Page Hero (subpages) */
.page-hero {
    padding: 160px 0 var(--space-10);
    text-align: center;
}

.page-hero.compact {
    padding: 140px 0 var(--space-16);
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Performance Section */
.performance-section {
    padding: var(--space-24) 0 var(--space-16);
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(37, 99, 235, 0.03) 50%, var(--dark-bg) 100%);
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}

.performance-stat {
    text-align: center;
    padding: var(--space-8) var(--space-4);
}

.performance-stat .stat-value {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-light);
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: var(--space-2);
}

.performance-stat .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Logo Carousel */
.logo-carousel-wrapper {
    margin-top: var(--space-16);
    overflow: hidden;
    position: relative;
}

.logo-carousel-wrapper::before,
.logo-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark-bg) 0%, transparent 100%);
}

.logo-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--dark-bg) 0%, transparent 100%);
}

.logo-carousel {
    padding: var(--space-8) 0;
}

.logo-track {
    display: flex;
    gap: var(--space-16);
    animation: scroll 30s linear infinite;
    width: max-content;
}

.carousel-logo {
    height: 40px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%) brightness(2);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.carousel-logo:hover {
    opacity: 0.8;
    filter: grayscale(0%) brightness(1);
}

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

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

@media (max-width: 768px) {
    .performance-stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
    }
    
    .performance-stat .stat-value {
        font-size: 36px;
    }
    
    .logo-track {
        gap: var(--space-10);
    }
    
    .carousel-logo {
        height: 32px;
    }
}

/* Solution Section - Streamlined */
.solution-section {
    padding: var(--space-24) 0;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.solution-card {
    padding: var(--space-8);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    transition: all var(--transition-normal) ease;
}

.solution-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
}

.solution-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-4);
    color: var(--primary-light);
}

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

.solution-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.solution-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Results Section - Streamlined */
.results-section {
    padding: var(--space-24) 0;
    background: var(--surface-card);
}

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

.result-card {
    padding: var(--space-8);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
}

.result-header {
    margin-bottom: var(--space-4);
}

.result-industry {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
}

.result-metrics {
    display: flex;
    gap: var(--space-8);
    margin-bottom: var(--space-4);
}

.result-metric .metric-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
}

.result-metric .metric-label {
    font-size: 12px;
    color: var(--text-muted);
}

.result-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Industries Section - Streamlined */
.industries-section {
    padding: var(--space-24) 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.industry-card {
    padding: var(--space-6);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition-normal) ease;
}

.industry-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-2px);
}

.industry-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.industry-card p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
}

.industry-link {
    font-size: 13px;
    color: var(--primary-light);
    font-weight: 500;
}

/* Validation Section */
.validation-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(37, 99, 235, 0.05) 50%, var(--dark-bg) 100%);
}

.validation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.validation-quote {
    text-align: center;
    max-width: 720px;
}

.validation-quote blockquote {
    position: relative;
    margin: 0;
    padding: 0;
}

.quote-mark {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
    opacity: 0.3;
    display: block;
    margin-bottom: -20px;
}

.quote-text {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-primary);
    margin: 0;
    font-style: italic;
}

.quote-attribution {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.quote-source {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.quote-org {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.validation-stats {
    display: flex;
    gap: 64px;
    justify-content: center;
    padding-top: 32px;
    border-top: 1px solid var(--card-border);
}

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

.validation-stat .stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-light);
    display: block;
    font-family: 'JetBrains Mono', monospace;
}

.validation-stat .stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
    display: block;
}

@media (max-width: 768px) {
    .validation-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .quote-text {
        font-size: 22px;
    }
}

/* CTA Section */
.cta-section {
    padding: var(--space-32) 0;
    text-align: center;
}

.cta-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-4);
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

.btn-xl {
    padding: var(--space-5) var(--space-10);
    font-size: 18px;
}

/* Page CTA (subpages) */
.page-cta {
    padding: var(--space-24) 0;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.05));
}

.page-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.page-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
}

/* Process Steps (Platform page) */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-6);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-light);
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.step-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.capability-card {
    padding: var(--space-6);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    text-align: center;
}

.capability-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.capability-card p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Industry Blocks (Solutions page) */
.industry-block {
    padding: var(--space-8);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: var(--space-6);
    text-align: left;
}

.industry-block:hover {
    border-color: rgba(96, 165, 250, 0.3);
}

.industry-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}

.industry-header .industry-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: 10px;
    margin: 0;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 10px;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-header .industry-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

.industry-header > div:last-child {
    flex: 1;
    text-align: left;
}

.industry-header h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: var(--space-2);
    margin-top: var(--space-1);
}

.industry-tags .tag {
    padding: 2px 8px;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-accent);
}

.industry-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}

.feature-list {
    list-style: none;
    margin-bottom: var(--space-6);
}

.feature-list li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
    font-size: 15px;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.industry-result {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-4) var(--space-5);
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 8px;
    margin-top: var(--space-5);
}

.industry-result .result-metric {
    text-align: center;
    min-width: 80px;
}

.industry-result .metric-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--success-color);
    font-family: 'JetBrains Mono', monospace;
    line-height: 1.2;
}

.industry-result .metric-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Solutions Impact Section */
.solutions-impact-section {
    padding: var(--space-16) 0 var(--space-20);
}

.impact-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.impact-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-4);
}

.impact-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.impact-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-6);
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-column {
    padding: var(--space-8);
    border-radius: 12px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
}

.comparison-before {
    opacity: 0.7;
}

.comparison-after {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.03);
}

.comparison-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--space-6);
}

.comparison-after .comparison-label {
    color: var(--success-color);
}

.comparison-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.comparison-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.comparison-stat .stat-number {
    font-size: 32px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-primary);
    line-height: 1;
}

.comparison-stat .stat-unit {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.comparison-stat .stat-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.comparison-stat.highlight .stat-number {
    color: var(--success-color);
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-arrow {
    font-size: 32px;
    color: var(--success-color);
    font-weight: 300;
}

@media (max-width: 768px) {
    .impact-title {
        font-size: 28px;
    }
    
    .impact-subtitle {
        font-size: 16px;
    }
    
    .impact-comparison {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .comparison-divider {
        transform: rotate(90deg);
        padding: var(--space-2) 0;
    }
    
    .comparison-stat .stat-number {
        font-size: 28px;
    }
}

/* Use Cases Overview (Solutions page) */
.use-cases-overview {
    padding: var(--space-16) 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.use-case-card {
    padding: var(--space-8);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    text-align: center;
    transition: all var(--transition-normal) var(--ease-out-expo);
}

.use-case-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-4px);
}

.use-case-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-5);
    color: var(--primary-light);
}

.use-case-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.use-case-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.use-case-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Enhanced Industry Blocks (Solutions page) */
.industry-block-featured {
    padding: 0;
    background: transparent;
    border: none;
}

.industry-block-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-10);
    padding: var(--space-10);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    align-items: center;
}

.industry-block-inner.industry-block-reverse {
    grid-template-columns: 1fr 280px;
}

.industry-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    background: rgba(15, 23, 42, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(96, 165, 250, 0.1);
}

.industry-diagram {
    width: 100%;
    max-width: 200px;
    height: auto;
}

.industry-content-main {
    display: flex;
    flex-direction: column;
}

.industry-content-main .industry-header {
    margin-bottom: var(--space-5);
}

.industry-content-main .industry-content {
    flex: 1;
}

/* Responsive for Solutions page */
@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .industry-block-inner,
    .industry-block-inner.industry-block-reverse {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .industry-visual {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .use-case-card {
        padding: var(--space-6);
    }
    
    .industry-block-inner {
        padding: var(--space-6);
    }
}

/* Founders Grid (About page) */
.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

/* Team Expertise Grid (About page) */
.team-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: 0;
}

.expertise-card {
    padding: var(--space-6);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    text-align: center;
}

.expertise-stat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: var(--space-3);
}

.expertise-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.expertise-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .team-expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* Validation Strip - Minimal */
.validation-strip {
    padding: var(--space-12) 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.validation-text {
    text-align: center;
    font-size: 15px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.validation-highlight {
    color: var(--text-secondary);
    font-weight: 500;
}

.founder-card {
    padding: var(--space-6);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    text-align: center;
}

.founder-image {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    border-radius: 50%;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.founder-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.founder-title {
    font-size: 13px;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: var(--space-3);
    display: block;
}

.founder-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Section - Alternative Design */
.values-section-alt {
    padding: var(--space-20) 0;
    border-top: 1px solid var(--card-border);
}

.values-header {
    margin-bottom: var(--space-12);
}

.values-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.values-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.values-left {
    max-width: 550px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.values-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.values-graphic {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.value-item {
    display: flex;
    gap: var(--space-8);
    align-items: flex-start;
    padding-bottom: var(--space-8);
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.value-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.value-number {
    font-size: 48px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    color: rgba(96, 165, 250, 0.15);
    line-height: 1;
    min-width: 80px;
}

.value-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.value-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .values-layout {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .values-visual {
        order: -1;
    }
    
    .values-graphic {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .value-item {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .value-number {
        font-size: 36px;
        min-width: auto;
    }
    
    .values-visual {
        display: none;
    }
}

/* Partners Grid */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

.partner-item {
    padding: var(--space-4) var(--space-6);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    align-items: start;
}

.pricing-card {
    padding: var(--space-8);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary-light);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-1) var(--space-4);
    background: var(--primary-color);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.card-description {
    font-size: 14px;
    color: var(--text-secondary);
}

.card-price {
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: var(--space-6);
}

.price-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: var(--space-1);
}

.price-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: var(--space-1);
}

.card-features {
    list-style: none;
    margin-bottom: var(--space-6);
}

.card-features li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-3);
    font-size: 14px;
    color: var(--text-secondary);
}

.card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

/* ROI Section */
.roi-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    margin-bottom: var(--space-6);
}

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

.roi-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--success-color);
    font-family: 'JetBrains Mono', monospace;
}

.roi-label {
    font-size: 14px;
    color: var(--text-muted);
}

.roi-note {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.roi-note p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.faq-item {
    padding: var(--space-6);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: start;
}

.contact-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-6);
}

.expect-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    margin-bottom: var(--space-10);
}

.expect-item {
    display: flex;
    gap: var(--space-4);
}

.expect-number {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-light);
    flex-shrink: 0;
}

.expect-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.expect-content p {
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-direct h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--text-muted);
}

.contact-direct a {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 16px;
}

.contact-form-wrapper {
    padding: var(--space-8);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-4);
}

/* Footer Updates */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--card-border);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-wordmark {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast) ease;
}

.footer-wordmark:hover {
    color: var(--primary-light);
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition-fast) ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 0;
    border-top: none;
}

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

@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px 24px;
    }
}

/* Responsive for new pages */
@media (max-width: 1024px) {
    .solution-grid,
    .capabilities-grid,
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid,
    .founders-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .hero-webgl-section .hero-title {
        font-size: 56px;
    }
    
    .hero-webgl-section .hero-content {
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .hero-webgl-section .hero-title {
        font-size: 36px;
        line-height: 1.15;
    }
    
    .hero-webgl-section .hero-title .title-word-group {
        display: block;
    }
    
    .hero-webgl-section .hero-subtitle {
        font-size: 17px;
    }
    
    .hero-webgl-section .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-content-overlay {
        padding-top: 90px;
        padding-bottom: 60px;
    }
    
    .hero-proof {
        justify-content: center;
    }
    
    .problem-stats,
    .solution-grid,
    .results-grid,
    .capabilities-grid,
    .industries-grid,
    .pricing-grid,
    .founders-grid,
    .values-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-proof {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .proof-divider {
        display: none;
    }
    
    .roi-stats {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .industry-result {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .hero-webgl-container {
        opacity: 0.4;
    }
}

/* ============================================
   PLATFORM PAGE - MATERIAL INTELLIGENCE
   ============================================ */

/* Platform Hero */
.platform-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: var(--space-32) 0 var(--space-20);
    overflow: hidden;
}

.platform-hero-visual {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 600px;
    opacity: 0.8;
    pointer-events: none;
}

.molecular-animation {
    width: 100%;
    height: auto;
}

/* Orbital ring animations */
.orbital-ring {
    fill: none;
    stroke: rgba(96, 165, 250, 0.3);
    stroke-width: 1;
}

.orbital-1 {
    animation: orbitalSpin 8s linear infinite;
}

.orbital-2 {
    transform-origin: center;
    transform: rotate(60deg);
    animation: orbitalSpin 12s linear infinite reverse;
}

.orbital-3 {
    transform-origin: center;
    transform: rotate(-60deg);
    animation: orbitalSpin 10s linear infinite;
}

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

/* Atomic bonds */
.bond {
    stroke: url(#bondGradient);
    stroke-width: 2;
    opacity: 0.6;
}

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

@keyframes bondPulse {
    0%, 100% { opacity: 0.4; stroke-width: 2; }
    50% { opacity: 0.8; stroke-width: 3; }
}

/* Atoms */
.atom {
    animation: atomFloat 3s ease-in-out infinite;
}

.atom-center {
    animation: atomPulse 2s ease-in-out infinite;
}

.atom-outer:nth-child(2) { animation-delay: 0.2s; }
.atom-outer:nth-child(3) { animation-delay: 0.4s; }
.atom-outer:nth-child(4) { animation-delay: 0.6s; }
.atom-outer:nth-child(5) { animation-delay: 0.8s; }
.atom-outer:nth-child(6) { animation-delay: 1s; }

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

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

/* Electrons */
.electron {
    animation: electronOrbit 4s linear infinite;
}

.electron-1 { animation-duration: 3s; }
.electron-2 { animation-duration: 4s; animation-direction: reverse; }
.electron-3 { animation-duration: 5s; }

.platform-hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.platform-hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.platform-hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-10);
}

.platform-hero-stats {
    display: flex;
    gap: var(--space-8);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.hero-stat-value {
    font-size: 32px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Material Intelligence Definition Section */
.mi-definition-section {
    padding: var(--space-32) 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(37, 99, 235, 0.03) 50%, var(--dark-bg) 100%);
}

.mi-definition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.mi-definition-content {
    padding-right: var(--space-8);
}

.mi-definition-content .section-title {
    text-align: left;
    margin-bottom: var(--space-6);
}

.mi-pillars {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-top: var(--space-10);
}

.mi-pillar {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-5);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    transition: all var(--transition-normal) ease;
}

.mi-pillar:hover {
    border-color: var(--card-border-hover);
    transform: translateX(4px);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

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

.mi-pillar h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.mi-pillar p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Comparison Visual */
.comparison-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.comparison-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: var(--space-6);
    transition: all var(--transition-normal) ease;
}

.comparison-card.traditional {
    border-color: rgba(239, 68, 68, 0.3);
}

.comparison-card.atomos {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

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

.comparison-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-badge.negative {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
}

.comparison-badge.positive {
    background: rgba(16, 185, 129, 0.15);
    color: #10B981;
}

.comparison-meter {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.meter-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    border-radius: 4px;
    width: var(--fill-width);
    transition: width 1.5s var(--ease-out-expo);
}

.traditional-fill {
    background: linear-gradient(90deg, #EF4444, #F59E0B);
}

.atomos-fill {
    background: linear-gradient(90deg, #10B981, #22D3EE);
}

.meter-value {
    font-size: 18px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    min-width: 70px;
    text-align: right;
}

.comparison-card.traditional .meter-value {
    color: #F59E0B;
}

.comparison-card.atomos .meter-value {
    color: #10B981;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 14px;
    color: var(--text-secondary);
}

.icon-x {
    color: #EF4444;
    font-weight: 700;
}

.icon-check {
    color: #10B981;
    font-weight: 700;
}

.comparison-divider {
    display: flex;
    justify-content: center;
    padding: var(--space-2) 0;
}

.comparison-divider svg {
    height: 48px;
    width: 24px;
}

/* Key Features Section */
.key-features-section {
    padding: var(--space-32) 0;
    background: var(--darker-bg);
}

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

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
}

.feature-block.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.feature-block.reverse .feature-visual {
    order: 2;
}

.feature-block.reverse .feature-content {
    order: 1;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-8);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    aspect-ratio: 1;
    max-width: 400px;
}

.feature-animation {
    width: 100%;
    height: auto;
}

.feature-content {
    padding: var(--space-4) 0;
}

.feature-number {
    font-size: 48px;
    font-weight: 900;
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.feature-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.feature-content > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.feature-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: var(--space-4);
    position: relative;
}

.feature-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
}

/* Economic Outcomes Section */
.economic-outcomes-section {
    padding: var(--space-32) 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(16, 185, 129, 0.03) 50%, var(--dark-bg) 100%);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-12);
}

.outcome-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-normal) ease;
}

.outcome-card:hover {
    transform: translateY(-4px);
    border-color: var(--card-border-hover);
}

.outcome-card.primary {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.outcome-visual {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-5);
}

.outcome-visual svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.outcome-ring {
    transition: stroke-dashoffset 1.5s var(--ease-out-expo);
}

.outcome-value-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.outcome-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-primary);
    line-height: 1;
}

.outcome-unit {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.outcome-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.outcome-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.outcome-detail {
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.outcome-detail .detail-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.outcome-detail .detail-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-cyan);
}

/* ROI Teaser */
.roi-teaser {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: var(--space-8);
}

.roi-teaser-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-8);
}

.roi-teaser-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.roi-teaser-text p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    max-width: 500px;
}

/* Workflow Section */
.workflow-section {
    padding: var(--space-32) 0;
    background: var(--darker-bg);
}

.workflow-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.workflow-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
}

/* Legacy workflow-step styles moved to platform section below */

.workflow-content {
    padding: 0 var(--space-2);
}

.workflow-number {
    display: block;
    font-size: 12px;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    color: var(--accent-cyan);
    margin-bottom: var(--space-2);
}

.workflow-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--text-primary);
}

.workflow-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Integrations Showcase */
.integrations-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.integration-category {
    text-align: center;
}

.integration-category h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.integration-items {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
}

.integration-item {
    padding: var(--space-2) var(--space-4);
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition-fast) ease;
}

.integration-item:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
}

/* CTA Content Centered */
.cta-content-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.cta-content-centered p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

/* Platform Page Responsive */
@media (max-width: 1024px) {
    .platform-hero-visual {
        width: 40%;
        opacity: 0.5;
    }
    
    .platform-hero-title {
        font-size: 48px;
    }
    
    .mi-definition-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .mi-definition-content {
        padding-right: 0;
    }
    
    .mi-definition-content .section-title {
        text-align: center;
    }
    
    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .feature-block.reverse .feature-visual,
    .feature-block.reverse .feature-content {
        order: unset;
    }
    
    .feature-visual {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workflow-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
    }
    
    .workflow-line {
        display: none;
    }
    
    .integrations-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

@media (max-width: 768px) {
    .platform-hero {
        min-height: auto;
        padding: var(--space-24) 0 var(--space-16);
    }
    
    .platform-hero-visual {
        display: none;
    }
    
    .platform-hero-title {
        font-size: 36px;
    }
    
    .platform-hero-stats {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .hero-stat-item {
        flex-direction: row;
        align-items: center;
        gap: var(--space-3);
    }
    
    .hero-stat-value {
        font-size: 24px;
    }
    
    .mi-pillars {
        gap: var(--space-4);
    }
    
    .mi-pillar {
        flex-direction: column;
        text-align: center;
    }
    
    .pillar-icon {
        margin: 0 auto;
    }
    
    .comparison-visual {
        gap: var(--space-3);
    }
    
    .feature-number {
        font-size: 36px;
    }
    
    .feature-content h3 {
        font-size: 22px;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    
    .roi-teaser-content {
        flex-direction: column;
        text-align: center;
    }
    
    .roi-teaser-text p {
        max-width: 100%;
    }
    
    .workflow-timeline {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-content-centered h2 {
        font-size: 28px;
    }
}

/* ============================================
   PLATFORM PAGE V2 - COMPACT LICENSING FOCUS
   ============================================ */

/* Platform Header - Compact */
.platform-header {
    padding: var(--space-32) 0 var(--space-16);
    text-align: center;
}

.platform-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.platform-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-5);
    letter-spacing: -0.02em;
}

.platform-lead {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.platform-cta-row {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

/* Value Props Grid */
.platform-value-section {
    padding: var(--space-16) 0 var(--space-20);
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.value-prop-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-normal) ease;
}

.value-prop-card:hover {
    border-color: var(--card-border-hover);
    transform: translateY(-4px);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    color: var(--primary-light);
}

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

.value-prop-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.value-prop-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Strategic Section */
.strategic-section {
    padding: var(--space-20) 0;
    background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.strategic-bg-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

.network-map-bg {
    width: 100%;
    height: 100%;
    max-width: 2500px;
    max-height: 2000px;
}

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

.strategic-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

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

.strategic-content .large-text {
    margin-bottom: var(--space-8);
}

.strategic-points {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.strategic-point {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.point-icon {
    font-size: 24px;
    line-height: 1;
    min-width: 32px;
}

.strategic-point h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: var(--space-1);
    color: var(--text-primary);
}

.strategic-point p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}


/* Licensing Section */
.licensing-section {
    padding: var(--space-20) 0;
}

.licensing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.license-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: var(--space-6);
    transition: all var(--transition-normal) ease;
}

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

.license-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-4);
    color: var(--primary-light);
}

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

.license-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}

.license-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-4);
}

.license-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.license-features li {
    font-size: 13px;
    color: var(--text-muted);
    padding-left: var(--space-4);
    position: relative;
}

.license-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: 600;
}

/* Platform CTA */
.platform-cta {
    padding: var(--space-16) 0 var(--space-20);
}

/* Platform Page V2 Responsive */
@media (max-width: 1024px) {
    .platform-title {
        font-size: 40px;
    }
    
    .value-props-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .value-prop-card {
        text-align: left;
        display: flex;
        flex-direction: column;
        gap: var(--space-3);
        align-items: flex-start;
    }
    
    .value-icon {
        margin: 0;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
    }
    
    .value-prop-card h3 {
        font-size: 16px;
    }
    
    .value-prop-card p {
        font-size: 14px;
    }
    
    .strategic-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .strategic-content .section-tag {
        text-align: center;
        display: block;
    }
    
    .strategic-content .section-title {
        text-align: center;
    }
    
    .strategic-content .large-text {
        text-align: center;
    }
    
    .licensing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

@media (max-width: 768px) {
    .platform-header {
        padding: var(--space-24) 0 var(--space-12);
    }
    
    .platform-title {
        font-size: 32px;
    }
    
    .platform-lead {
        font-size: 16px;
    }
    
    .platform-cta-row {
        flex-direction: column;
    }
    
    .strategic-point {
        flex-direction: row;
        text-align: left;
    }
    
    .strategic-point h4,
    .strategic-point p {
        text-align: left;
    }
    
    .point-icon {
        margin: 0;
        flex-shrink: 0;
    }
    
    .workflow-section .section-header {
        text-align: left;
    }
    
    .workflow-section .section-title {
        font-size: 28px;
        line-height: 1.2;
    }
    
    .workflow-section .section-subtitle {
        font-size: 15px;
        text-align: left;
        margin: var(--space-3) 0 0;
    }
    
    .workflow-stats {
        text-align: left;
    }
    
    .stat-item {
        text-align: left;
        align-items: flex-start;
    }
    
    .licensing-section .section-header {
        text-align: left;
    }
    
    .licensing-section .section-title {
        font-size: 28px;
    }
    
    .license-card {
        padding: var(--space-5);
    }
    
    .license-card h3 {
        font-size: 16px;
    }
    
    .platform-cta h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .platform-cta p {
        font-size: 15px;
    }
}

/* ========================================
   WORKFLOW DIAGRAM - CAD to .atom Pipeline
   ======================================== */

.workflow-section {
    padding: var(--space-16) 0 var(--space-20);
    position: relative;
    overflow: hidden;
}

.workflow-section .section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.workflow-section .section-subtitle {
    max-width: 700px;
    margin: var(--space-4) auto 0;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

.workflow-diagram {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-10) 0;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    flex: 1;
    max-width: 160px;
    text-align: center;
}

.isometric-card {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-face {
    display: none;
}

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

.workflow-icon {
    width: 56px;
    height: 56px;
    color: var(--primary-light);
}

/* Hide the step numbers */
.step-number {
    display: none;
}

.step-label {
    text-align: center;
    width: 100%;
}

/* Step number styles removed - numbers are hidden */
.step-label .step-number {
    display: none;
}

.step-label h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.step-label p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Workflow Arrows */
.workflow-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 48px;
    color: var(--text-muted);
}

.workflow-arrow svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.arrow-path {
    stroke-dasharray: none;
}

.data-pulse {
    display: none;
}

/* Simulation Card Visual */
.simulation-visual {
    width: 64px;
    height: 64px;
    position: relative;
}

.sim-layer {
    display: none;
}

.thermal-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    border-radius: 4px;
    overflow: hidden;
}

.thermal-cell {
    border-radius: 2px;
}

.thermal-cell.hot {
    background: rgba(239, 68, 68, 0.7);
}

.thermal-cell.warm {
    background: rgba(245, 158, 11, 0.6);
}

.thermal-cell.cool {
    background: rgba(34, 211, 238, 0.5);
}

.scan-line {
    display: none;
}

/* .atom File Visual */
.atom-file-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.file-icon {
    width: 48px;
    height: 56px;
    animation: fileGlow 2s ease-in-out infinite;
}

@keyframes fileGlow {
    0%, 100% {
        filter: drop-shadow(0 0 4px rgba(34, 211, 238, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 12px rgba(34, 211, 238, 0.6));
    }
}

.code-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 50px;
}

.code-line {
    height: 3px;
    background: var(--accent-cyan);
    border-radius: 2px;
    opacity: 0.5;
    animation: codePulse 1.5s ease-in-out infinite;
}

.code-line.short {
    width: 60%;
}

.code-line:nth-child(1) { animation-delay: 0s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.4s; }
.code-line:nth-child(4) { animation-delay: 0.6s; }

@keyframes codePulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0.9);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1);
    }
}

/* Perfect Part Visual */
.perfect-part-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.part-icon {
    width: 64px;
    height: 64px;
    animation: partFloat 3s ease-in-out infinite;
}

@keyframes partFloat {
    0%, 100% {
        transform: translateY(0) rotateY(0deg);
    }
    50% {
        transform: translateY(-5px) rotateY(10deg);
    }
}

.quality-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-emerald);
    color: var(--dark-bg);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
}

/* Card accent colors */
.cad-card .card-top {
    border-color: rgba(96, 165, 250, 0.3);
}

.simulation-card .card-top {
    border-color: rgba(245, 158, 11, 0.3);
}

.atom-card .card-top {
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.1);
}

/* ========================================
   3D PRINTER VISUAL - Animated Printer
   ======================================== */

.workflow-step-large {
    flex: 1.5;
}

.printer-visual {
    width: 180px;
    height: 180px;
    position: relative;
    perspective: 800px;
}

.printer-frame {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(15deg) rotateY(-20deg);
    transition: transform 0.4s var(--ease-out-expo);
}

.printer-visual:hover .printer-frame {
    transform: rotateX(10deg) rotateY(-15deg) scale(1.05);
}

/* Frame Posts */
.frame-post {
    position: absolute;
    width: 6px;
    height: 120px;
    background: linear-gradient(180deg, #475569 0%, #334155 100%);
    border-radius: 2px;
    box-shadow: inset 1px 0 0 rgba(255,255,255,0.1);
}

.post-fl { left: 10px; bottom: 20px; }
.post-fr { right: 10px; bottom: 20px; }
.post-bl { left: 30px; bottom: 20px; transform: translateZ(-40px); }
.post-br { right: 30px; bottom: 20px; transform: translateZ(-40px); }

/* Top Frame Rails */
.frame-top {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 6px;
    transform-style: preserve-3d;
}

.frame-rail {
    position: absolute;
    background: linear-gradient(90deg, #475569 0%, #64748B 50%, #475569 100%);
    border-radius: 2px;
}

.rail-front {
    left: 10px;
    right: 10px;
    height: 6px;
    top: 0;
}

.rail-back {
    left: 30px;
    right: 30px;
    height: 6px;
    top: 0;
    transform: translateZ(-40px);
}

.rail-left {
    left: 10px;
    width: 6px;
    height: 40px;
    transform: rotateY(90deg) translateZ(-3px);
    transform-origin: left;
}

.rail-right {
    right: 10px;
    width: 6px;
    height: 40px;
    transform: rotateY(90deg) translateZ(-3px);
    transform-origin: right;
}

/* Gantry and Print Head */
.gantry {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    height: 8px;
    animation: gantryMove 4s ease-in-out infinite;
}

@keyframes gantryMove {
    0%, 100% { top: 40px; }
    50% { top: 80px; }
}

.gantry-arm {
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #64748B 0%, #94A3B8 50%, #64748B 100%);
    border-radius: 2px;
    top: 0;
}

.print-head {
    position: absolute;
    width: 24px;
    height: 30px;
    background: linear-gradient(180deg, #334155 0%, #1E293B 100%);
    border: 1px solid #475569;
    border-radius: 4px 4px 2px 2px;
    top: 4px;
    animation: headMove 4s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

@keyframes headMove {
    0%, 100% { left: 20%; }
    25% { left: 70%; }
    50% { left: 40%; }
    75% { left: 60%; }
}

.nozzle {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #F59E0B;
    border-radius: 50%;
    box-shadow: 0 0 8px #F59E0B, 0 0 16px rgba(245, 158, 11, 0.5);
    animation: nozzleGlow 0.5s ease-in-out infinite alternate;
}

@keyframes nozzleGlow {
    0% { box-shadow: 0 0 8px #F59E0B, 0 0 16px rgba(245, 158, 11, 0.5); }
    100% { box-shadow: 0 0 12px #F59E0B, 0 0 24px rgba(245, 158, 11, 0.7); }
}

.laser-beam {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 16px;
    background: linear-gradient(180deg, #F59E0B 0%, transparent 100%);
    opacity: 0.8;
    animation: laserPulse 0.3s ease-in-out infinite alternate;
}

@keyframes laserPulse {
    0% { opacity: 0.6; height: 12px; }
    100% { opacity: 1; height: 20px; }
}

/* Build Plate */
.build-plate {
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;
    height: 12px;
    transform-style: preserve-3d;
}

.plate-surface {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border: 1px solid #334155;
    border-radius: 2px;
    transform: rotateX(60deg);
    transform-origin: bottom;
}

.plate-glow {
    position: absolute;
    inset: 5px;
    background: radial-gradient(ellipse at center, rgba(34, 211, 238, 0.2) 0%, transparent 70%);
    transform: rotateX(60deg);
    transform-origin: bottom;
    animation: plateGlow 2s ease-in-out infinite;
}

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

/* Printed Part Layers */
.printed-part {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 40px;
    transform-style: preserve-3d;
}

.part-layer {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.4) 0%, rgba(34, 211, 238, 0.3) 100%);
    border: 1px solid rgba(16, 185, 129, 0.6);
    border-radius: 4px;
    bottom: calc(var(--layer) * 5px);
    opacity: 0;
    animation: layerPrint 4s ease-out infinite;
    animation-delay: calc(var(--layer) * 0.5s);
}

@keyframes layerPrint {
    0% { 
        opacity: 0; 
        transform: translateX(-50%) scale(0.8);
    }
    15% { 
        opacity: 1; 
        transform: translateX(-50%) scale(1);
    }
    100% { 
        opacity: 1; 
        transform: translateX(-50%) scale(1);
    }
}

/* Printer Display */
.printer-display {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #0F172A;
    border: 1px solid #22D3EE;
    border-radius: 4px;
    padding: 4px 8px;
    min-width: 70px;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.2);
}

.display-text {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    color: #22D3EE;
    text-align: center;
    letter-spacing: 0.1em;
    animation: textBlink 1s step-end infinite;
}

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

.progress-bar {
    width: 100%;
    height: 3px;
    background: #1E293B;
    border-radius: 2px;
    margin-top: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981 0%, #22D3EE 100%);
    border-radius: 2px;
    animation: progressFill 4s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

.printer-badge {
    top: -5px;
    right: -5px;
}

/* Workflow Stats */
.workflow-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-12);
    margin-top: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid var(--card-border);
}

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

.stat-value {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-cyan);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: var(--space-1);
}

/* Workflow Responsive */
@media (max-width: 1024px) {
    .workflow-diagram {
        flex-wrap: wrap;
        gap: var(--space-4);
    }
    
    .workflow-arrow {
        display: none;
    }
    
    .workflow-step {
        width: calc(50% - var(--space-2));
    }
    
    .workflow-stats {
        flex-wrap: wrap;
        gap: var(--space-6);
    }
    
    .stat-item {
        width: calc(33% - var(--space-4));
    }
}

@media (max-width: 640px) {
    .workflow-step {
        width: 100%;
        max-width: none;
        flex-direction: row;
        text-align: left;
        gap: var(--space-4);
    }
    
    .isometric-card {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }
    
    .step-label {
        text-align: left;
    }
    
    .step-label h3 {
        font-size: 16px;
    }
    
    .step-label p {
        font-size: 13px;
    }
    
    .workflow-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-4);
    }
    
    .stat-item {
        width: 100%;
        flex-direction: row;
        gap: var(--space-3);
        align-items: baseline;
    }
    
    .stat-value {
        font-size: 24px;
        min-width: auto;
    }
    
    .stat-label {
        font-size: 13px;
    }
}
