/* ==========================================
   BLACK TECHNOLOGY CSS
   Palantir-Inspired Dark Aesthetic
   ========================================== */
/* 1. DESIGN TOKENS
   ========================================== */
:root {
    /* Essential Colors */
    --black: #000000;
    --black-deep: #030303;
    --black-soft: #0a0a0a;
    --black-medium: #111111;
    --black-glass: rgba(0, 0, 0, 0.8);
    --black-glass-hover: rgba(0, 0, 0, 0.9);
    --white: #ffffff;
    --white-dim: rgba(255, 255, 255, 0.7);
    --white-ghost: rgba(255, 255, 255, 0.05);
    --white-muted: rgba(255, 255, 255, 0.4);
    --white-glass: rgba(255, 255, 255, 0.1);
    --electric: #00ff88;
    --electric-bright: #00ffaa;
    --electric-dim: rgba(0, 255, 136, 0.1);
    --electric-glow: rgba(0, 255, 136, 0.3);
    --electric-atmospheric: rgba(0, 255, 136, 0.08);
    --electric-grid-strong: rgba(0, 255, 136, 0.25);
    --electric-intense: rgba(0, 255, 136, 0.25);
    --error: #ff0044;
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    --space-xxl: 12rem;
    /* Typography */
    --font-mono: ui-monospace, 'SF Mono', 'Monaco', 'Inconsolata', 'Courier New', monospace;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', system-ui, sans-serif;
    /* Timing - Modern easing curves */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    /* Layout */
    --max-width: 1200px;
    --nav-height: 70px;
    /* Glass effects */
    --glass-blur: blur(20px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    /* Z-index hierarchy */
    --z-nav: 1000;
}
/* 2. RESET & BASE
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Seamless section transitions */
section {
    scroll-margin-top: var(--nav-height);
}
body {
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}
/* Simplified background gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(125% 125% at 50% 10%, var(--black) 35%, rgba(0, 255, 136, 0.15) 100%),
        radial-gradient(circle at 20% 80%, var(--electric-dim) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}
/* Simplified grid overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1.0;
    z-index: 2;
    pointer-events: none;
    background-image:
        linear-gradient(to bottom, rgba(0, 255, 136, 0.15) 1px, transparent 1px),
        linear-gradient(to right, rgba(0, 255, 136, 0.15) 1px, transparent 1px);
    background-size: 96px 64px, 96px 64px;
}
/* 3. TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-mono);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}
a:hover {
    color: var(--electric);
}
.chinese {
    font-family: system-ui, sans-serif;
    font-weight: 300;
}
/* 4. LAYOUT COMPONENTS
   ========================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
}
.section {
    padding: var(--space-xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--electric);
    color: var(--black);
    padding: var(--space-xs) var(--space-sm);
    z-index: 100;
    text-decoration: none;
}
.skip-link:focus {
    top: 0;
}
/* ==========================================
   RESPONSIVE DESIGN SYSTEM
   ========================================== */
/* Responsive breakpoints */
@media (max-width: 480px) {
    :root {
        --nav-height: 60px;
        --space-xs: 0.25rem;
        --space-sm: 0.75rem;
        --space-md: 1.5rem;
        --space-lg: 3rem;
        --space-xl: 6rem;
        --space-xxl: 8rem;
    }
    .veil-hero {
        padding: var(--nav-height) var(--space-sm) var(--space-lg);
    }
    .veil-content {
        padding: var(--space-md);
    }
    .neural-container {
        opacity: 0.08;
    }
    .modules-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .briefs-grid {
        grid-template-columns: 1fr;
    }
    .timeline-grid {
        flex-direction: column;
        gap: var(--space-lg);
    }
    .timeline-connector {
        transform: rotate(90deg);
        margin: var(--space-sm) 0;
    }
}
/* Medium screens - 2 column layout */
@media (max-width: 1024px) and (min-width: 769px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
        max-width: 800px;
    }
}
/* Mobile screens - 1 column layout */
@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    .pattern-visual {
        flex-direction: column;
        gap: var(--space-md);
    }
    .pattern-arrow {
        transform: rotate(90deg);
    }
    .transformation-visual {
        padding: var(--space-md);
    }
}
/* ==========================================
   PERFORMANCE OPTIMIZATIONS
   ========================================== */
/* GPU acceleration for animations */
.veil-headline,
.neural-network,
.module-card,
.impact-brief,
.veil-cta,
.logo {
    will-change: transform;
    transform: translateZ(0);
}
/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .neural-network {
        animation: none;
    }
    .veil-headline {
        animation: none;
        background: var(--white);
        -webkit-text-fill-color: var(--white);
    }
    body::after {
        animation: none;
    }
    body::before {
        animation: none;
    }
}
/* Mobile performance optimizations */
@media (max-width: 768px) {
    /* Reduce background complexity on mobile for better performance */
    body::before {
        background:
            /* Simplified atmospheric gradient for mobile */
            radial-gradient(120% 120% at 50% 15%, var(--black) 40%, rgba(0, 255, 136, 0.03) 100%),
            radial-gradient(circle at 50% 50%, var(--electric-atmospheric) 0%, transparent 50%);
        animation: none; /* Disable complex animations on mobile */
    }
    body::after {
        opacity: 1.0;
        background-image:
            /* Simplified atmospheric accent for mobile */
            radial-gradient(circle 300px at 85% 15%, rgba(0, 255, 136, 0.03), transparent 80%),
            /* Clean grid for mobile - no dots */
            linear-gradient(to bottom, rgba(0, 255, 136, 0.15) 1px, transparent 1px),
            linear-gradient(to right, rgba(0, 255, 136, 0.15) 1px, transparent 1px);
        background-size:
            100% 100%,     /* Atmospheric accent */
            48px 32px,     /* Smaller grid for mobile: 3rem × 2rem */
            48px 32px;     /* Smaller grid for mobile: 3rem × 2rem */
        animation: none; /* Disable animation on mobile */
    }
    /* Optimize glassmorphism for mobile */
    .nav,
    .next-cta,
    .veil-cta,
    .briefing-submit,
    .form-input,
    .form-select,
    .form-textarea,
    .form-group input,
    .form-group select,
    .form-group textarea {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    /* Simplify atmospheric effects on mobile */
    .atmospheric-bg::before,
    .hero-enhanced::after {
        animation: none;
        opacity: 0.3;
        background: radial-gradient(
            100% 80% at 50% 20%,
            var(--black) 50%,
            rgba(0, 255, 136, 0.03) 100%
        );
    }
    /* Optimize navigation for mobile */
    .nav {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        background: rgba(0, 0, 0, 0.4);
    }
    .nav-links {
        gap: var(--space-md);
    }
    .nav-links a {
        font-size: 0.875rem;
        padding: var(--space-xs) var(--space-sm);
    }
}
/* High-performance devices can handle enhanced effects */
@media (min-width: 1024px) and (min-resolution: 2dppx) {
    body::after {
        opacity: 1.0;
        background-image:
            /* Enhanced atmospheric accent for high-DPI */
            radial-gradient(circle 600px at 85% 15%, var(--electric-atmospheric), transparent 60%),
            /* Sharper grid lines for retina displays */
            linear-gradient(to bottom, var(--electric-grid-strong) 1px, transparent 1px),
            linear-gradient(to right, var(--electric-grid-strong) 1px, transparent 1px);
        background-size:
            100% 100%,     /* Atmospheric accent */
            128px 96px,    /* Larger grid: 8rem × 6rem */
            128px 96px;    /* Larger grid: 8rem × 6rem */
    }
}
/* Additional atmospheric layer class for enhanced sections */
.atmospheric-bg {
    position: relative;
}
.atmospheric-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        /* Clean atmospheric gradient - no extra grid */
        radial-gradient(
            ellipse 150% 100% at 50% 20%,
            var(--black) 30%,
            var(--electric-atmospheric) 80%,
            var(--electric-intense) 100%
        );
    background-size: 100% 100%;
    opacity: 0.6;
    animation: atmosphericPulse 30s ease-in-out infinite;
}
@keyframes atmosphericPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1.0);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}
/* Enhanced hero sections with dramatic gradient */
.hero-enhanced {
    position: relative;
    overflow: hidden;
}
.hero-enhanced::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(125% 125% at 50% 10%, var(--black) 40%, var(--electric-atmospheric) 100%),
        radial-gradient(circle at 80% 0%, transparent 50%, rgba(0, 255, 136, 0.03) 100%),
        linear-gradient(180deg, transparent 60%, var(--black) 100%);
    animation: heroAtmosphere 20s ease-in-out infinite;
}
@keyframes heroAtmosphere {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(0px);
    }
    50% {
        opacity: 1.0;
        transform: translateY(-10px);
    }
}
/* ==========================================
   MODERN VEIL COMPONENTS
   ========================================== */
/* The Veil Hero - Enhanced */
.veil-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
    padding-top: var(--nav-height);\n}
/* Texture Layer */
.texture-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, var(--black) 0%, var(--black-deep) 50%, var(--black) 100%);
    opacity: 0.8;
    z-index: 1;
}
/* Neural Network Container */
.neural-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.15;
}
.neural-network {
    width: 100%;
    height: 100%;
}
/* Network Nodes */
.neural-network .node,
.neural-network .node-core {
    fill: var(--electric);
    opacity: 0.6;
}
.neural-network .node-core {
    opacity: 1;
}
/* Pulse Animation for Nodes */
@keyframes nodePulse {
    0%, 100% { opacity: 0.3; r: 3; }
    50% { opacity: 1; r: 5; }
}
.neural-network .node {
    animation: nodePulse 4s ease-in-out infinite;
}
.neural-network .node-core.pulse {
    animation: nodePulse 2s ease-in-out infinite;
}
/* Network Connections */
.neural-network .connection {
    stroke: var(--electric);
    stroke-width: 0.5;
    opacity: 0.2;
    fill: none;
    animation: connectionFlow 8s linear infinite;
}
@keyframes connectionFlow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.4; }
}
/* Data Particles */
.neural-network .particle {
    fill: var(--electric);
    opacity: 0.8;
    filter: blur(0.5px);
}
/* Veil Content */
.veil-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: var(--space-lg);
}
/* Veil Headline - Enhanced */
.veil-headline {
    font-family: var(--font-mono);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-lg) 0;
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, var(--electric-bright) 50%, var(--white) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.5s ease-out, gradientShift 8s ease-in-out infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
/* Glitch effect on headline */
.veil-headline::before,
.veil-headline::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.veil-headline:hover::before {
    animation: glitch-1 0.3s ease infinite;
    color: var(--electric);
    opacity: 0.8;
}
.veil-headline:hover::after {
    animation: glitch-2 0.3s ease infinite reverse;
    color: var(--white);
    opacity: 0.8;
}
@keyframes glitch-1 {
    0% { clip-path: inset(0 0 100% 0); transform: translateX(0); }
    25% { clip-path: inset(0 0 60% 0); transform: translateX(-2px); }
    50% { clip-path: inset(40% 0 40% 0); transform: translateX(2px); }
    75% { clip-path: inset(60% 0 0 0); transform: translateX(-1px); }
    100% { clip-path: inset(100% 0 0 0); transform: translateX(0); }
}
@keyframes glitch-2 {
    0% { clip-path: inset(100% 0 0 0); transform: translateX(0); }
    25% { clip-path: inset(60% 0 0 0); transform: translateX(1px); }
    50% { clip-path: inset(40% 0 40% 0); transform: translateX(-2px); }
    75% { clip-path: inset(0 0 60% 0); transform: translateX(2px); }
    100% { clip-path: inset(0 0 100% 0); transform: translateX(0); }
}
/* Veil Question */
.veil-question {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    color: var(--white-dim);
    margin: 0 0 var(--space-xl) 0;
    letter-spacing: 0.05em;
    animation: fadeInUp 1.8s ease-out 0.3s backwards;
}
/* Veil CTA - Enhanced */
.veil-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    background: var(--black-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
    animation: fadeInUp 2s ease-out 0.6s backwards;
    box-shadow: var(--glass-shadow);
}
.veil-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--electric);
    transition: left var(--transition-slow);
    z-index: -1;
}
.veil-cta:hover {
    color: var(--black);
    border-color: var(--electric);
}
.veil-cta:hover::before {
    left: 0;
}
.veil-cta .cta-arrow {
    display: inline-block;
    transition: transform var(--transition-base);
}
.veil-cta:hover .cta-arrow {
    transform: translateX(5px);
}
/* Magnetic effect for CTAs */
.veil-cta {
    cursor: pointer;
}
.veil-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}
/* Fade In Up Animation */
/* Codification Section */
.codification {
    padding: var(--space-xxl) 0;
    background: var(--black-deep);
    position: relative;
}
.codification-content {
    text-align: center;
}
.codification-statement {
    font-family: var(--font-mono);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 300;
    color: var(--white-muted);
    letter-spacing: 0.05em;
    margin: 0 auto var(--space-lg);
    max-width: 800px;
    animation: fadeIn 2s ease-out;
}
/* Veil Metrics */
.veil-metrics {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
}
.metric-item {
    text-align: center;
}
.metric-number {
    display: block;
    font-family: var(--font-mono);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--electric);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-xs);
}
.metric-label {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
/* Signal Section */
.signal {
    padding: var(--space-xl) 0;
    background: var(--black);
}
.signal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}
.signal-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white-ghost), transparent);
    animation: signalPulse 3s ease-in-out infinite;
}
@keyframes signalPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}
.signal-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}
/* Enhanced Glass Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 255, 136, 0.15);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(0, 255, 136, 0.1) inset,
        0 -1px 0 rgba(255, 255, 255, 0.05) inset;
    z-index: var(--z-nav);
    transition: all var(--transition-base);
}
.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--white-glass) 50%,
        transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}
.nav:hover::before {
    opacity: 1;
}
/* Enhanced logo with modern styling */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-bounce);
    position: relative;
    z-index: 2;
}
.logo:hover {
    transform: translateY(-2px) scale(1.02);
}
.logo-symbol {
    font-size: 1.5rem;
    color: var(--electric);
    position: relative;
    display: inline-block;
    transition: all var(--transition-base);
}
.logo-symbol::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--electric-glow);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform var(--transition-base);
    z-index: -1;
}
.logo:hover .logo-symbol::after {
    transform: translate(-50%, -50%) scale(1.5);
}
.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.1em;
    transition: color var(--transition-base);
}
.logo-chinese {
    font-size: 0.75rem;
    color: var(--white-muted);
    font-weight: 300;
    transition: color var(--transition-base);
}
.logo:hover .logo-text {
    color: var(--electric-bright);
}
.logo:hover .logo-chinese {
    color: var(--electric);
}
/* Footer Minimal */
.footer-minimal {
    padding: var(--space-lg) 0;
    background: var(--black);
    border-top: 1px solid var(--white-ghost);
}
.footer-minimal .footer-content {
    text-align: center;
}
.footer-minimal .footer-brand {
    margin-bottom: var(--space-md);
}
.footer-minimal .footer-bottom {
    font-size: 0.875rem;
    color: var(--white-muted);
}
/* ==========================================
   PHILOSOPHY PAGE STYLES
   ========================================== */
/* Philosophy Hero */
.philosophy-hero {
    padding: var(--space-xxl) 0 var(--space-xl);
    background: var(--black);
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.philosophy-title {
    font-family: var(--font-mono);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: var(--space-md);
}
.chinese-display {
    margin-bottom: var(--space-lg);
}
.chinese-characters {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--electric);
    opacity: 0.8;
    margin-bottom: var(--space-xs);
}
.chinese-romanization {
    display: block;
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--white-muted);
    letter-spacing: 0.1em;
}
.philosophy-definition {
    font-family: var(--font-sans);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--white-dim);
    font-weight: 300;
    letter-spacing: 0.05em;
}
/* Genesis Section */
.genesis-section {
    padding: var(--space-xxl) 0;
    background: var(--black-deep);
}
.genesis-content {
    max-width: 900px;
    margin: 0 auto;
}
.genesis-title {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-xl);
    letter-spacing: 0.05em;
}
.genesis-narrative {
    space-y: var(--space-lg);
}
.genesis-narrative p {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    color: var(--white-dim);
    margin-bottom: var(--space-lg);
}
.narrative-intro {
    font-size: clamp(1.125rem, 1.75vw, 1.5rem);
    color: var(--white);
}
.highlight-term {
    color: var(--electric);
    font-weight: 400;
}
.narrative-mission {
    font-size: clamp(1.125rem, 1.75vw, 1.5rem);
    color: var(--white);
}
/* Three Pillars */
.three-pillars {
    padding: var(--space-xxl) 0;
    background: var(--black);
}
.pillars-title {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-xl);
    letter-spacing: 0.05em;
}
.transformation-visual {
    margin-bottom: var(--space-xl);
    opacity: 0.8;
}
.pillars-diagram {
    max-width: 900px;
    margin: 0 auto;
    display: block;
}
.pillars-diagram .glow {
    filter: drop-shadow(0 0 10px var(--electric));
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}
.pillar-card {
    background: var(--black-soft);
    border: 1px solid var(--white-ghost);
    padding: var(--space-lg);
    text-align: center;
    transition: all var(--transition-slow);
}
.pillar-card:hover {
    border-color: var(--electric);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--electric-dim);
}
.pillar-number {
    font-family: var(--font-mono);
    font-size: 2rem;
    color: var(--electric);
    margin-bottom: var(--space-sm);
    opacity: 0.6;
}
.pillar-name {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.05em;
}
.pillar-effect {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--white-dim);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}
.pillar-metric {
    padding-top: var(--space-md);
    border-top: 1px solid var(--white-ghost);
}
.metric-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 2rem;
    color: var(--electric);
    margin-bottom: var(--space-xs);
}
.metric-context {
    font-size: 0.875rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
/* Pattern Section */
.pattern-section {
    padding: var(--space-xl) 0;
    background: var(--black-deep);
}
.pattern-title {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-lg);
}
.pattern-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.pattern-statement {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: var(--white-dim);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}
.pattern-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}
.pattern-before,
.pattern-after {
    text-align: center;
}
.pattern-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}
.pattern-dots {
    display: flex;
    gap: var(--space-xs);
    justify-content: center;
}
.pattern-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--white-ghost);
    border-radius: 50%;
    animation: patternPulse 2s ease-in-out infinite;
}
.pattern-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.pattern-dots .dot:nth-child(3) { animation-delay: 0.4s; }
.pattern-dots .dot:nth-child(4) { animation-delay: 0.6s; }
.pattern-dots .dot:nth-child(5) { animation-delay: 0.8s; }
@keyframes patternPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}
.pattern-arrow {
    font-size: 2rem;
    color: var(--electric);
}
.pattern-line {
    width: 100px;
    height: 3px;
    background: var(--electric);
    animation: patternFlow 2s ease-in-out infinite;
}
@keyframes patternFlow {
    0%, 100% { width: 50px; opacity: 0.6; }
    50% { width: 100px; opacity: 1; }
}
/* Philosophy Next Step */
.philosophy-next {
    padding: var(--space-xxl) 0;
    background: var(--black);
    text-align: center;
}
.next-content {
    max-width: 600px;
    margin: 0 auto;
}
.next-title {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}
.next-description {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    color: var(--white-dim);
    margin-bottom: var(--space-lg);
}
.next-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    background: var(--black-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 8px;
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}
.next-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--electric);
    transition: left var(--transition-slow);
    z-index: -1;
}
.next-cta:hover {
    color: var(--black);
    border-color: var(--electric);
    background: var(--black-glass-hover);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
    transform: translateY(-2px) scale(1.02);
}
.next-cta:hover::before {
    left: 0;
}
.next-cta .cta-arrow {
    transition: transform var(--transition-base);
}
.next-cta:hover .cta-arrow {
    transform: translateX(5px);
}
/* ==========================================
   CAPABILITIES PAGE STYLES
   ========================================== */
/* Capabilities Hero */
.capabilities-hero {
    padding: var(--space-xxl) 0 var(--space-xl);
    background: var(--black);
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.capabilities-title {
    font-family: var(--font-mono);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: var(--space-md);
}
.capabilities-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--white-dim);
    font-weight: 300;
}
/* Core Modules */
.core-modules {
    padding: var(--space-xxl) 0;
    background: var(--black-deep);
}
.modules-title {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-xl);
    letter-spacing: 0.05em;
}
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}
.module-card {
    background: var(--black);
    border: 1px solid var(--white-ghost);
    padding: var(--space-lg);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}
.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--electric);
    transform: scaleX(0);
    transition: transform var(--transition-slow);
    transform-origin: left;
}
.module-card:hover {
    border-color: var(--electric);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--electric-dim);
}
.module-card:hover::before {
    transform: scaleX(1);
}
.module-header {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}
.module-index {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--electric);
    opacity: 0.6;
}
.module-name {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: 0.02em;
}
.module-description {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white-dim);
    margin-bottom: var(--space-lg);
}
/* Module UI Glimpses - Enhanced */
.module-glimpse {
    padding: var(--space-md);
    background: var(--black-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 8px;
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-base);
}
.module-card:hover .module-glimpse {
    background: rgba(0, 255, 136, 0.05);
    border-color: var(--electric-dim);
}
.ui-preview {
    position: relative;
    min-height: 100px;
}
/* Preview Elements */
.preview-bar {
    height: 30px;
    background: var(--black-medium);
    border-bottom: 1px solid var(--white-ghost);
    margin-bottom: var(--space-sm);
}
.preview-line {
    height: 8px;
    background: var(--white-ghost);
    margin-bottom: var(--space-xs);
    animation: lineGlow 3s ease-in-out infinite;
}
.preview-line.short { width: 30%; }
.preview-line.medium { width: 60%; animation-delay: 0.5s; }
.preview-line.long { width: 90%; animation-delay: 1s; }
@keyframes lineGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; background: var(--electric-dim); }
}
/* Chart Preview */
.preview-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 80px;
    gap: var(--space-xs);
}
.chart-bar {
    flex: 1;
    background: var(--electric);
    opacity: 0.6;
    animation: barGrow 2s ease-in-out infinite;
}
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bar:nth-child(4) { animation-delay: 0.6s; }
@keyframes barGrow {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}
/* Neural Preview */
.preview-neural {
    position: relative;
    height: 80px;
}
.neural-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--electric);
    border-radius: 50%;
    animation: nodePulse 3s ease-in-out infinite;
}
.neural-node:nth-child(1) { top: 20%; left: 30%; }
.neural-node:nth-child(2) { top: 50%; left: 50%; animation-delay: 0.5s; }
.neural-node:nth-child(3) { top: 30%; left: 70%; animation-delay: 1s; }
/* Progress Preview */
.preview-progress {
    position: relative;
    height: 30px;
    background: var(--black-medium);
    border-radius: 2px;
    overflow: hidden;
}
.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--electric);
    animation: progressFill 3s ease-in-out infinite;
}
.progress-text {
    position: absolute;
    top: 50%;
    right: var(--space-sm);
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--black);
    font-weight: bold;
    z-index: 2;
}
@keyframes progressFill {
    0% { width: 0%; }
    100% { width: 100%; }
}
/* Impact Briefs - Enhanced */
.impact-briefs {
    padding: var(--space-xxl) 0;
    background: var(--black);
    position: relative;
}
.impact-briefs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(0, 255, 136, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
}
.briefs-title {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-xl);
    letter-spacing: 0.05em;
}
.briefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}
.impact-brief {
    background: var(--black-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 8px;
    padding: var(--space-lg);
    font-family: var(--font-mono);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}
.impact-brief::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric), transparent);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
}
.impact-brief:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--electric-dim);
}
.impact-brief:hover::before {
    transform: translateX(100%);
}
.brief-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--white-ghost);
}
.brief-classification {
    font-size: 0.75rem;
    color: var(--white-muted);
    letter-spacing: 0.1em;
}
.brief-status {
    font-size: 0.75rem;
    color: var(--electric);
    letter-spacing: 0.1em;
}
.brief-subject {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}
.brief-metrics {
    space-y: var(--space-sm);
}
.metric-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.metric-label {
    font-size: 0.875rem;
    color: var(--white-muted);
}
.metric-data {
    font-size: 0.875rem;
    color: var(--electric);
    text-align: right;
}
/* Implementation Timeline */
.implementation {
    padding: var(--space-xxl) 0;
    background: var(--black-deep);
}
.implementation-title {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-xl);
}
.timeline-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
}
.timeline-phase {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: var(--space-md);
}
.phase-marker {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--electric);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}
.phase-name {
    font-family: var(--font-mono);
    font-size: 1.125rem;
    color: var(--white);
    margin-bottom: var(--space-sm);
}
.phase-description {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--white-dim);
    line-height: 1.6;
}
.timeline-connector {
    font-size: 1.5rem;
    color: var(--electric);
    opacity: 0.4;
}
/* Capabilities Next */
.capabilities-next {
    padding: var(--space-xxl) 0;
    background: var(--black);
    text-align: center;
}
/* ==========================================
   STRATEGIC BRIEFING PAGE STYLES
   ========================================== */
/* Briefing Hero */
.briefing-hero {
    padding: var(--space-xxl) 0 var(--space-xl);
    background: var(--black);
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.briefing-title {
    font-family: var(--font-mono);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--white);
    margin-bottom: var(--space-md);
}
.briefing-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--white-dim);
    font-weight: 300;
}
/* Qualification Gateway */
.qualification-gateway {
    padding: var(--space-xxl) 0;
    background: var(--black-deep);
}
.gateway-content {
    max-width: 800px;
    margin: 0 auto;
}
.gateway-intro {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.intro-title {
    font-family: var(--font-mono);
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: 0.02em;
}
.intro-description {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    color: var(--white-dim);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}
/* Briefing Form */
.briefing-form {
    background: var(--black);
    border: 1px solid var(--white-ghost);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}
.form-section {
    margin-bottom: var(--space-lg);
}
.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--black-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 6px;
    box-shadow: var(--glass-shadow);
    color: var(--white);
    transition: all var(--transition-base);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--electric);
    background: var(--black-glass-hover);
    box-shadow: var(--glass-shadow), 0 0 0 2px var(--electric-dim);
    transform: translateY(-1px);
}
.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-sans);
    line-height: 1.6;
}
.form-textarea::placeholder {
    color: var(--white-muted);
    font-style: italic;
}
/* Briefing Submit */
.briefing-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    background: var(--black-glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 8px;
    box-shadow: var(--glass-shadow);
    cursor: pointer;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}
.briefing-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--electric);
    transition: left var(--transition-slow);
    z-index: 1;
}
.briefing-submit:hover {
    color: var(--black);
    border-color: var(--electric);
    background: var(--black-glass-hover);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15);
    transform: translateY(-2px) scale(1.02);
}
.briefing-submit:hover::before {
    left: 0;
}
.submit-text,
.submit-arrow {
    position: relative;
    z-index: 2;
}
.submit-arrow {
    transition: transform var(--transition-base);
}
.briefing-submit:hover .submit-arrow {
    transform: translateX(5px);
}
/* Qualification Note */
.qualification-note {
    text-align: center;
}
.qualification-note p {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--white-muted);
    font-style: italic;
    line-height: 1.6;
}
/* Direct Channel */
.direct-channel {
    padding: var(--space-xl) 0;
    background: var(--black);
}
.channel-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.channel-title {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.05em;
}
.channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
}
.channel-item {
    padding: var(--space-md);
    border: 1px solid var(--white-ghost);
    background: var(--black-soft);
}
.channel-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--white-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-xs);
}
.channel-value {
    display: block;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--white);
}
.channel-value a {
    color: var(--electric);
    transition: color var(--transition-base);
}
.channel-value a:hover {
    color: var(--white);
}
/* Enhanced Navigation Links */
.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
    margin: 0;
    padding: 0;
}
.nav-links li {
    position: relative;
}
.nav-links a {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: 8px;
    position: relative;
    transition: all var(--transition-base);
    display: block;
}
.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white-glass);
    border-radius: 6px;
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-base);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--electric), transparent);
    transform: translateX(-50%);
    transition: width var(--transition-base);
}
.nav-links a:hover {
    color: var(--white);
    transform: translateY(-1px);
}
.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 80%;
}
.nav-links a.active {
    color: var(--electric-bright);
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}
.nav-links a.active::before {
    opacity: 0.5;
}
/* Advanced Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: var(--nav-height);
        right: -100%;
        width: 280px;
        height: calc(100vh - var(--nav-height));
        background: var(--black-glass);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: var(--space-lg);
        gap: var(--space-sm);
        transition: right var(--transition-slow);
        border-left: var(--glass-border);
        box-shadow: var(--glass-shadow);
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        width: 100%;
        padding: var(--space-md);
        border-radius: 8px;
        border-bottom: none;
        text-align: left;
    }
    .nav-links a::after {
        bottom: auto;
        top: 50%;
        left: -var(--space-xs);
        width: 3px;
        height: 0;
        transform: translateY(-50%);
    }
    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 3px;
        height: 60%;
    }
}
/* 6. HERO SECTION
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-height);
}
.hero-content {
    position: relative;
}
.chinese-hero {
    font-size: clamp(4rem, 12vw, 8rem);
    opacity: 0.1;
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
.hero-title {
    margin-bottom: var(--space-lg);
    position: relative;
}
.hero-logo-container {
    margin-bottom: var(--space-lg);
    display: flex;
    justify-content: center;
}
.hero-logo {
    width: 400px;
    height: auto;
    max-width: 90vw;
    filter: invert(1) brightness(0.95);
    transition: transform var(--transition-slow);
}
.hero-logo:hover {
    transform: scale(1.05);
}
.hero-philosophy {
    margin-bottom: var(--space-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.philosophy-text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--white-dim);
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}
.hero-tagline {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    color: var(--white-dim);
    margin-bottom: var(--space-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.hero-cta.primary {
    background: var(--electric);
    color: var(--black);
}
.hero-cta.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px var(--electric-dim);
    color: var(--black);
}
.hero-cta.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white-dim);
}
.hero-cta.secondary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-4px);
}
/* 7. PROBLEM SECTION
   ========================================== */
.problem {
    background: var(--black-soft);
}
.section-title {
    margin-bottom: var(--space-lg);
    text-align: center;
}
.problem-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}
.problem-list li {
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--white-ghost);
    font-size: 1.125rem;
    color: var(--white-dim);
    position: relative;
    padding-left: var(--space-lg);
}
.problem-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--error);
    font-size: 1.5rem;
}
/* 8. SOLUTION SECTION
   ========================================== */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}
.solution-item {
    background: var(--black-soft);
    border: 1px solid var(--white-ghost);
    padding: var(--space-md);
    border-radius: 4px;
    transition: border-color var(--transition-base), transform var(--transition-base);
}
.solution-item:hover {
    border-color: var(--electric);
    transform: translateY(-4px);
}
.solution-item h3 {
    color: var(--electric);
    margin-bottom: var(--space-sm);
}
.solution-item p {
    color: var(--white-dim);
}
.solution-item.highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--black-soft), rgba(0, 255, 136, 0.05));
    border-color: var(--electric);
}
.solution-item.highlight p strong {
    color: var(--electric);
    font-family: var(--font-mono);
    font-size: 1.5rem;
}
/* 9. PROOF SECTION
   ========================================== */
.proof {
    background: var(--black-soft);
}
.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-lg);
}
.proof-card {
    background: var(--black);
    border: 1px solid var(--white-ghost);
    padding: var(--space-lg);
    border-radius: 4px;
    text-align: center;
    transition: border-color var(--transition-base), transform var(--transition-base);
}
.proof-card:hover {
    border-color: var(--electric);
    transform: scale(1.02);
}
.proof-client {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--white-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}
.proof-metric {
    font-size: 3rem;
    font-family: var(--font-mono);
    color: var(--electric);
    margin-bottom: var(--space-xs);
}
.proof-detail {
    color: var(--white-dim);
    margin-bottom: var(--space-md);
}
.proof-time {
    font-size: 0.875rem;
    color: var(--white-dim);
    padding-top: var(--space-md);
    border-top: 1px solid var(--white-ghost);
}
/* 10. CONTACT SECTION
   ========================================== */
.contact {
    text-align: center;
    min-height: 80vh;
}
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}
.contact-intro {
    font-size: 1.25rem;
    color: var(--white-dim);
    margin-bottom: var(--space-lg);
}
.contact-email {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--electric);
    padding: var(--space-md);
    border: 2px solid var(--electric);
    border-radius: 4px;
    margin-bottom: var(--space-lg);
    transition: background var(--transition-base), color var(--transition-base);
}
.contact-email:hover {
    background: var(--electric);
    color: var(--black);
}
.chinese-link {
    color: var(--white-dim);
    font-size: 1.125rem;
}
/* 11. FOOTER
   ========================================== */
.footer {
    background: var(--black);
    padding: var(--space-lg) 0;
    text-align: center;
    border-top: 1px solid var(--white-ghost);
}
/* 12. ANIMATIONS
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes glitch {
    0%, 100% {
        text-shadow: 
            -2px 0 var(--electric),
            2px 0 var(--error);
        transform: translate(0);
    }
    20% {
        text-shadow: 
            2px 0 var(--electric),
            -2px 0 var(--error);
        transform: translate(-2px, 2px);
    }
    40% {
        text-shadow: 
            -2px 0 var(--electric),
            2px 0 var(--error);
        transform: translate(-2px, -2px);
    }
    60% {
        text-shadow: 
            2px 0 var(--electric),
            -2px 0 var(--error);
        transform: translate(2px, 2px);
    }
    80% {
        text-shadow: 
            -2px 0 var(--electric),
            2px 0 var(--error);
        transform: translate(2px, -2px);
    }
}
.fade-in {
    animation: fadeIn 1s ease forwards;
}
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}
.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }
.fade-in-up:nth-child(5) { animation-delay: 0.4s; }
/* Glitch effect - only on first load */
.glitch {
    position: relative;
    animation: glitch 0.3s ease 1s;
}
/* 13. RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .nav-links {
        gap: var(--space-md);
    }
    .nav-links a {
        font-size: 0.75rem;
    }
    .section {
        padding: var(--space-lg) 0;
        min-height: auto;
    }
    .solution-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .nav-links {
        gap: var(--space-sm);
    }
    .hero-cta {
        padding: var(--space-sm) var(--space-md);
    }
}
/* 14. ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    html {
        scroll-behavior: auto;
    }
}
/* Focus styles */
*:focus {
    outline: 2px solid var(--electric);
    outline-offset: 2px;
}
/* High contrast mode adjustments */
@media (prefers-contrast: high) {
    :root {
        --white-dim: rgba(255, 255, 255, 0.9);
        --white-ghost: rgba(255, 255, 255, 0.1);
    }
    .nav {
        border-bottom: 2px solid var(--white);
    }
    .solution-item,
    .proof-card {
        border-width: 2px;
    }
}
/* Print styles */
@media print {
    body {
        background: white;
        color: black;
    }
    .nav,
    body::before {
        display: none;
    }
    .section {
        page-break-inside: avoid;
    }
}
/* ==========================================
   HOMEPAGE CONDENSED SECTIONS
   ========================================== */
/* ==========================================
   SOLUTIONS PAGE STYLES
   ========================================== */
/* ==========================================
   LOGO INTEGRATION STYLES
   ========================================== */
/* Navigation Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}
.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: var(--transition-fast);
}
.logo:hover .logo-img {
    filter: brightness(1.3);
    transform: scale(1.05);
}
.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.logo-text {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    line-height: 1;
}
.logo-chinese {
    color: var(--electric);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    line-height: 1;
}
/* Hero Logo Styles */
.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: var(--space-md);
    filter: brightness(1.1);
    animation: float 6s ease-in-out infinite;
}
.brand-mission {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.brand-name {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
    letter-spacing: 0.1em;
    line-height: 1;
}
.mission-statement {
    font-size: 1.5rem;
    color: var(--white-dim);
    margin-bottom: var(--space-lg);
    line-height: 1.4;
}
.chinese-context {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: rgba(0, 255, 136, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.1);
}
.hero-cta {
    display: inline-block;
    margin-top: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--electric);
    color: var(--black);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hero-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.3);
}
/* Email CTA Styles */
.email-cta {
    display: inline-block;
    padding: var(--space-md) var(--space-lg);
    background: var(--electric);
    color: var(--black);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition-base);
    text-align: center;
    line-height: 1;
}
.email-cta.primary {
    background: linear-gradient(135deg, var(--electric), #00cc6a);
    padding: var(--space-lg) var(--space-xl);
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    max-width: 400px;
    margin: 0 auto;
}
.email-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 255, 136, 0.3);
}
.cta-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
}
.contact-actions {
    text-align: center;
    margin: var(--space-xl) 0;
}
/* Responsive Logo Styles */
@media (max-width: 768px) {
    .logo-img {
        width: 32px;
        height: 32px;
    }
    .logo-text {
        font-size: 0.875rem;
    }
    .logo-chinese {
        font-size: 0.625rem;
    }
    .hero-logo {
        width: 80px;
        height: 80px;
    }
    .brand-name {
        font-size: 2rem;
    }
    .mission-statement {
        font-size: 1.125rem;
    }
    .email-cta.primary {
        padding: var(--space-md) var(--space-lg);
        font-size: 1rem;
    }
}
/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}
@keyframes data-flow {
    0% { stroke-dashoffset: 20; }
    100% { stroke-dashoffset: 0; }
}
/* Animation Classes */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}
.pulse-glow {
    animation: pulse 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}
.data-flow {
    animation: data-flow 2s linear infinite;
}
.fade-in {
    animation: fadeIn 1s ease-out;
}
}