/* ═══════════════════════════════════════════════════════════════════════════
   OML IT Services - Ultra Premium Stylesheet
   Version: 1.0.0
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
    /* Color Palette - Cyber Tech Theme */
    --color-bg: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-bg-tertiary: #1a1a25;
    --color-surface: rgba(255, 255, 255, 0.02);
    --color-surface-hover: rgba(255, 255, 255, 0.05);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(255, 255, 255, 0.15);

    --color-text: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-tertiary: rgba(255, 255, 255, 0.5);
    --color-text-muted: rgba(255, 255, 255, 0.35);

    /* Primary Gradient - Electric Blue to Cyan */
    --color-primary: #00d4ff;
    --color-primary-dark: #0099cc;
    --color-primary-light: #66e5ff;

    /* Secondary Gradient - Purple to Magenta */
    --color-secondary: #7c3aed;
    --color-secondary-dark: #5b21b6;
    --color-secondary-light: #a78bfa;

    /* Accent Colors */
    --color-accent-1: #00d4ff; /* Cyan */
    --color-accent-2: #7c3aed; /* Purple */
    --color-accent-3: #10b981; /* Emerald */
    --color-accent-4: #f59e0b; /* Amber */
    --color-accent-5: #ef4444; /* Red - for alerts */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-accent-1), var(--color-accent-2));
    --gradient-secondary: linear-gradient(135deg, var(--color-accent-2), var(--color-accent-3));
    --gradient-accent: linear-gradient(135deg, var(--color-accent-1), var(--color-accent-2), var(--color-accent-3));
    --gradient-glow: radial-gradient(circle, var(--color-accent-1) 0%, transparent 70%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);

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

    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 4rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 5.5rem);
    --text-6xl: clamp(3.5rem, 2.5rem + 6vw, 7rem);

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

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.3);
    --shadow-glow-lg: 0 0 80px rgba(0, 212, 255, 0.4);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slower: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-Index Scale */
    --z-below: -1;
    --z-base: 1;
    --z-above: 10;
    --z-overlay: 100;
    --z-nav: 200;
    --z-modal: 300;
    --z-cursor: 500;
    --z-loader: 1000;

    /* Effects */
    --blur-sm: 4px;
    --blur-md: 8px;
    --blur-lg: 16px;
    --blur-xl: 24px;
    --blur-2xl: 40px;

    --noise-opacity: 0.03;
    --cursor-blend: difference;
}

/* Light Theme */
[data-theme="light"] {
    --color-bg: #f8fafc;
    --color-bg-secondary: #f1f5f9;
    --color-bg-tertiary: #e2e8f0;
    --color-surface: rgba(0, 0, 0, 0.02);
    --color-surface-hover: rgba(0, 0, 0, 0.05);
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-hover: rgba(0, 0, 0, 0.15);

    --color-text: #0f172a;
    --color-text-secondary: rgba(15, 23, 42, 0.7);
    --color-text-tertiary: rgba(15, 23, 42, 0.5);
    --color-text-muted: rgba(15, 23, 42, 0.35);

    --color-primary: #0891b2;
    --color-primary-dark: #0e7490;
    --color-primary-light: #22d3ee;

    --color-secondary: #7c3aed;
    --color-secondary-dark: #5b21b6;
    --color-secondary-light: #a78bfa;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(8, 145, 178, 0.2);
    --shadow-glow-lg: 0 0 80px rgba(8, 145, 178, 0.3);

    --noise-opacity: 0.015;
    --cursor-blend: normal;
}

/* System Preference Detection */
@media (prefers-color-scheme: light) {
    :root:not([data-theme="dark"]) {
        --color-bg: #f8fafc;
        --color-bg-secondary: #f1f5f9;
        --color-bg-tertiary: #e2e8f0;
        --color-surface: rgba(0, 0, 0, 0.02);
        --color-surface-hover: rgba(0, 0, 0, 0.05);
        --color-border: rgba(0, 0, 0, 0.08);
        --color-border-hover: rgba(0, 0, 0, 0.15);

        --color-text: #0f172a;
        --color-text-secondary: rgba(15, 23, 42, 0.7);
        --color-text-tertiary: rgba(15, 23, 42, 0.5);
        --color-text-muted: rgba(15, 23, 42, 0.35);

        --noise-opacity: 0.015;
        --cursor-blend: normal;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CSS RESET & BASE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

body.loading {
    overflow: hidden;
}

img,
video,
svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: none;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

ul,
ol {
    list-style: none;
}

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

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

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

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-border-hover);
}

/* ═══════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════════════ */

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

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE LOADER
   ═══════════════════════════════════════════════════════════════════════════ */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    z-index: var(--z-loader);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    z-index: 2;
}

.loader-logo {
    margin-bottom: var(--space-xl);
}

.loader-circuit {
    width: 80px;
    height: 80px;
    animation: loaderSpin 2s linear infinite;
}

.loader-circle {
    fill: none;
    stroke: var(--color-border);
    stroke-width: 2;
}

.loader-path {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 20 10;
    animation: loaderDash 1.5s ease-in-out infinite;
}

.loader-dot {
    fill: var(--color-primary);
    animation: loaderPulse 1s ease-in-out infinite;
}

@keyframes loaderSpin {
    100% { transform: rotate(360deg); }
}

@keyframes loaderDash {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 60; }
}

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

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

.loader-status {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

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

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.loader-percent {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--color-primary);
}

.loader-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ═══════════════════════════════════════════════════════════════════════════ */

.cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-cursor);
    pointer-events: none;
    mix-blend-mode: var(--cursor-blend);
}

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

.cursor-outline {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    opacity: 0.5;
}

.cursor-trail {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
    transition: transform 0.2s ease;
}

.cursor.hover .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: var(--color-accent-2);
}

.cursor.hover .cursor-dot {
    transform: translate(-50%, -50%) scale(1.5);
    background: var(--color-accent-2);
}

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

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

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

    body {
        cursor: auto;
    }

    button,
    a {
        cursor: pointer;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NOISE OVERLAY
   ═══════════════════════════════════════════════════════════════════════════ */

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

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-nav);
    padding: var(--space-lg) 0;
    transition: all var(--transition-base);
}

.nav.scrolled {
    padding: var(--space-md) 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(var(--blur-xl));
    border-bottom: 1px solid var(--color-border);
}

[data-theme="light"] .nav.scrolled {
    background: rgba(248, 250, 252, 0.8);
}

.nav.hidden {
    transform: translateY(-100%);
}

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 var(--space-md);
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    z-index: 10;
}

.nav-logo {
    height: 40px;
    width: auto;
    transition: opacity var(--transition-base);
}

.nav-logo-light {
    display: none;
}

.nav-logo-dark {
    display: block;
}

[data-theme="light"] .nav-logo-light {
    display: block;
}

[data-theme="light"] .nav-logo-dark {
    display: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

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

.nav-link::before {
    content: attr(data-index);
    position: absolute;
    top: -8px;
    left: 0;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-primary);
    opacity: 0;
    transform: translateY(5px);
    transition: all var(--transition-base);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

.nav-link:hover::before {
    opacity: 1;
    transform: translateY(0);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

/* Theme Toggle */
.theme-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.theme-toggle:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-hover);
}

.theme-icon {
    width: 20px;
    height: 20px;
    color: var(--color-text);
    transition: all var(--transition-base);
}

.theme-icon-sun {
    display: none;
}

.theme-icon-moon {
    display: block;
}

[data-theme="light"] .theme-icon-sun {
    display: block;
}

[data-theme="light"] .theme-icon-moon {
    display: none;
}

/* Nav CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-bg);
    transition: all var(--transition-base);
}

.nav-cta svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.nav-cta:hover {
    box-shadow: var(--shadow-glow);
}

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

/* Nav Toggle (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-sm);
    z-index: 10;
}

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav Status */
.nav-status {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    opacity: 0;
    transition: all var(--transition-base);
}

.nav.scrolled .nav-status {
    opacity: 1;
    bottom: -25px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent-3);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(16, 185, 129, 0); }
}

.status-text {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-text-tertiary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-status {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════════════════════════ */

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: calc(var(--z-nav) - 1);
    pointer-events: none;
}

.mobile-menu.active {
    pointer-events: auto;
}

.mobile-menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.mobile-menu.active .mobile-menu-bg {
    opacity: 0.98;
}

.mobile-menu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-4xl) var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
}

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

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--color-border);
    opacity: 0;
    transform: translateX(-20px);
    transition: all var(--transition-base);
}

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

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

.mobile-link-index {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--color-primary);
}

.mobile-link-text {
    flex: 1;
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 600;
}

.mobile-link-arrow {
    font-size: var(--text-xl);
    color: var(--color-text-tertiary);
    transition: all var(--transition-base);
}

.mobile-link:hover .mobile-link-arrow {
    color: var(--color-primary);
    transform: translateX(10px);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: var(--space-2xl);
}

.mobile-menu-contact span {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}

.mobile-menu-circuit {
    display: none;
}

.mobile-menu-circuit svg {
    width: 100%;
    height: 100%;
}

.circuit-line {
    fill: none;
    stroke: var(--color-primary);
    stroke-width: 1;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    transition: stroke-dashoffset 2s ease;
}

.mobile-menu.active .circuit-line {
    stroke-dashoffset: 0;
}

.circuit-node {
    fill: var(--color-primary);
    opacity: 0;
    transition: opacity 0.5s ease 1s;
}

.mobile-menu.active .circuit-node {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

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

/* Hero Background Layers */
.hero-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-below);
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Network Grid */
.network-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grid-lines {
    display: none;
}

.grid-nodes {
    display: none;
}

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

.hero-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.3s ease-out;
}

/* Data Streams */
.data-streams {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.data-stream {
    position: absolute;
    left: var(--x);
    top: -100%;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--color-primary), transparent);
    animation: dataStream 8s linear infinite;
    animation-delay: var(--delay);
    opacity: 0.6;
}

@keyframes dataStream {
    0% { top: -200px; }
    100% { top: 100%; }
}

/* Server Racks */
.server-racks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.server-rack {
    position: absolute;
    width: 60px;
    height: 120px;
    background: linear-gradient(180deg, var(--color-bg-tertiary), var(--color-bg-secondary));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    opacity: 0.3;
}

.server-rack-1 {
    top: 20%;
    left: 10%;
    animation: serverFloat 6s ease-in-out infinite;
}

.server-rack-2 {
    top: 60%;
    right: 15%;
    animation: serverFloat 8s ease-in-out infinite reverse;
}

.server-rack-3 {
    bottom: 25%;
    left: 20%;
    animation: serverFloat 7s ease-in-out infinite 1s;
}

@keyframes serverFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.rack-lights {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rack-lights span {
    width: 30px;
    height: 4px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
    animation: rackBlink 2s ease-in-out infinite;
}

.rack-lights span:nth-child(2) { animation-delay: 0.5s; }
.rack-lights span:nth-child(3) { animation-delay: 1s; }
.rack-lights span:nth-child(4) { animation-delay: 1.5s; }

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

/* Holographic Elements */
.holo-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.holo-ring {
    position: absolute;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0.2;
}

.holo-ring-1 {
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    animation: holoRing 20s linear infinite;
}

.holo-ring-2 {
    bottom: 30%;
    left: 5%;
    width: 150px;
    height: 150px;
    animation: holoRing 15s linear infinite reverse;
}

.holo-ring-3 {
    top: 50%;
    right: 20%;
    width: 100px;
    height: 100px;
    animation: holoRing 10s linear infinite;
}

@keyframes holoRing {
    0% { transform: rotateX(60deg) rotateZ(0deg); }
    100% { transform: rotateX(60deg) rotateZ(360deg); }
}

.holo-cube {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 80px;
    height: 80px;
    border: 1px solid var(--color-accent-2);
    opacity: 0.3;
    animation: holoCube 15s linear infinite;
    transform-style: preserve-3d;
}

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

.holo-sphere {
    position: absolute;
    bottom: 20%;
    right: 25%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--color-primary), transparent);
    opacity: 0.3;
    animation: holoSphere 4s ease-in-out infinite;
}

@keyframes holoSphere {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px var(--color-primary); }
    50% { transform: scale(1.1); box-shadow: 0 0 40px var(--color-primary); }
}

/* Binary Rain */
.binary-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.binary-column {
    position: absolute;
    top: -100%;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-primary);
    opacity: 0.15;
    white-space: nowrap;
    animation: binaryFall linear infinite;
    text-shadow: 0 0 10px var(--color-primary);
}

@keyframes binaryFall {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* Pulse Waves */
.pulse-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

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

.pulse-wave:nth-child(2) { animation-delay: 1.3s; }
.pulse-wave:nth-child(3) { animation-delay: 2.6s; }

@keyframes pulseWave {
    0% { width: 100px; height: 100px; opacity: 0.5; }
    100% { width: 800px; height: 800px; opacity: 0; }
}

/* Tech Corners */
.tech-corners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-corner {
    position: absolute;
    width: 100px;
    height: 100px;
    color: var(--color-primary);
    opacity: 0.3;
}

.tech-corner svg {
    width: 100%;
    height: 100%;
}

.tech-corner-tl { top: var(--space-4xl); left: var(--space-4xl); }
.tech-corner-tr { top: var(--space-4xl); right: var(--space-4xl); }
.tech-corner-bl { bottom: var(--space-4xl); left: var(--space-4xl); }
.tech-corner-br { bottom: var(--space-4xl); right: var(--space-4xl); }

/* Hero Content */
.hero-content {
    position: relative;
    z-index: var(--z-base);
    text-align: center;
    max-width: 1200px;
    width: 90%;
    margin-top: 100px;
    padding: var(--space-3xl) var(--space-4xl);
    background: rgba(10, 10, 15, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    box-shadow:
        0 0 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .hero-content {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.08),
        0 0 60px rgba(0, 0, 0, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
    .hero-content {
        width: 95%;
        margin-top: 80px;
        padding: var(--space-2xl) var(--space-xl);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
    animation: badgeFadeIn 1s ease forwards;
    opacity: 0;
}

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

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

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

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

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

.badge-text {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

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

.title-line .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: wordReveal 0.8s ease forwards;
}

.title-line:nth-child(1) .word { animation-delay: 0.2s; }
.title-line:nth-child(2) .word { animation-delay: 0.4s; }
.title-line:nth-child(3) .word:nth-child(1) { animation-delay: 0.6s; }
.title-line:nth-child(3) .word:nth-child(2) { animation-delay: 0.8s; }

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

.title-line-accent .word {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-primary); /* Fallback */
}

[data-theme="light"] .title-line-accent .word {
    background: linear-gradient(135deg, #0891b2, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #0891b2; /* Fallback */
}

/* Glitch Effect - Disabled for readability, kept as subtle shimmer instead */
.glitch {
    position: relative;
    animation: subtleShimmer 3s ease-in-out infinite;
}

@keyframes subtleShimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

/* Hero Terminal */
.hero-terminal {
    display: inline-block;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-xl);
    text-align: left;
    opacity: 0;
    animation: terminalFadeIn 1s ease 1s forwards;
}

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

.terminal-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-tertiary);
    border-bottom: 1px solid var(--color-border);
}

.terminal-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-text-muted);
}

.terminal-dot:nth-child(1) { background: #ef4444; }
.terminal-dot:nth-child(2) { background: #f59e0b; }
.terminal-dot:nth-child(3) { background: #10b981; }

.terminal-title {
    flex: 1;
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
    text-align: center;
}

.terminal-body {
    padding: var(--space-md) var(--space-lg);
}

.terminal-line {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-mono);
    font-size: var(--text-sm);
}

.terminal-prompt {
    color: var(--color-accent-3);
}

.terminal-command {
    color: var(--color-text);
}

.terminal-cursor {
    color: var(--color-primary);
    animation: cursorBlink 1s step-end infinite;
}

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

/* Hero Description */
.hero-description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.desc-line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: descReveal 0.8s ease forwards;
}

.desc-line:nth-child(1) { animation-delay: 1.2s; }
.desc-line:nth-child(2) { animation-delay: 1.4s; }
.desc-line:nth-child(3) { animation-delay: 1.6s; }

@keyframes descReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* Hero CTA */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
    opacity: 0;
    animation: ctaFadeIn 0.8s ease 1.8s forwards;
}

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

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

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

.btn-primary .btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary:hover .btn-bg {
    opacity: 1;
}

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

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

.btn-secondary:hover {
    border-color: var(--color-primary);
    background: var(--color-surface);
}

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

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

.btn-icon svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn:hover .btn-icon svg {
    transform: translateX(4px);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-large {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-lg);
}

.btn-full {
    width: 100%;
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    opacity: 0;
    animation: metricsFadeIn 0.8s ease 2s forwards;
}

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

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

.metric-ring {
    position: relative;
    width: 100px;
    height: 100px;
}

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

.metric-ring-bg {
    fill: none;
    stroke: var(--color-border);
    stroke-width: 4;
}

.metric-ring-fill {
    fill: none;
    stroke: url(#metricGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2s ease;
}

.metric-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--color-text);
}

.metric-suffix {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% + 30px), -50%);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-primary);
}

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

@media (max-width: 768px) {
    .hero-metrics {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .hero-cta {
        flex-direction: column;
    }
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    opacity: 0;
    animation: scrollFadeIn 0.8s ease 2.5s forwards;
}

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

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--color-border);
    border-radius: 13px;
    position: relative;
}

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

@keyframes scrollWheel {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 16px; }
}

.scroll-arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.scroll-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(45deg);
    opacity: 0;
    animation: scrollArrow 1.5s ease-in-out infinite;
}

.scroll-arrow:nth-child(1) { animation-delay: 0s; }
.scroll-arrow:nth-child(2) { animation-delay: 0.2s; }
.scroll-arrow:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollArrow {
    0%, 100% { opacity: 0; transform: rotate(45deg) translateY(-5px); }
    50% { opacity: 1; transform: rotate(45deg) translateY(0); }
}

.scroll-text {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MARQUEE SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.marquee-section {
    padding: var(--space-2xl) 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.marquee {
    display: flex;
    overflow: hidden;
}

.marquee:first-child {
    margin-bottom: var(--space-md);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    animation: marqueeScroll 30s linear infinite;
    white-space: nowrap;
}

.marquee-reverse .marquee-content {
    animation-direction: reverse;
}

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

.marquee-item {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.marquee-divider {
    color: var(--color-primary);
    font-size: var(--text-lg);
}

/* ═══════════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.about {
    position: relative;
    padding: var(--space-6xl) 0;
    overflow: hidden;
}

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

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

/* Section Tag */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-lg);
}

.tag-line {
    width: 40px;
    height: 1px;
    background: var(--gradient-primary);
}

/* Section Title */
.section-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-xl);
}

.title-word {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

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

/* About Content */
.about-content {
    position: relative;
    z-index: 2;
}

.about-text {
    margin-bottom: var(--space-2xl);
}

.about-text p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.text-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

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

@media (max-width: 640px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature:hover {
    background: var(--color-surface-hover);
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-bg);
}

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

.feature-content p {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
}

/* About Visual */
.about-visual {
    position: relative;
}

.visual-container {
    position: relative;
    aspect-ratio: 1;
    max-width: 500px;
    margin: 0 auto;
}

/* Network Diagram */
.network-diagram {
    position: relative;
    width: 100%;
    height: 100%;
}

.network-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.network-node-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.network-node-1 { top: 10%; left: 10%; }
.network-node-2 { top: 10%; right: 10%; }
.network-node-3 { bottom: 10%; left: 10%; }
.network-node-4 { bottom: 10%; right: 10%; }

.node-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.network-node-center .node-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border: none;
}

.node-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-text-secondary);
}

.network-node-center .node-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-bg);
}

.network-node:hover .node-icon {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.node-label {
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.node-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-lg);
    animation: nodePulse 2s ease-out infinite;
}

@keyframes nodePulse {
    0% { width: 80px; height: 80px; opacity: 0.5; }
    100% { width: 150px; height: 150px; opacity: 0; }
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.connection-line {
    stroke: var(--color-border);
    stroke-width: 1;
    stroke-dasharray: 5 5;
}

.data-packet {
    fill: var(--color-primary);
    filter: drop-shadow(0 0 4px var(--color-primary));
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--gradient-glow);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: glowPulse 4s ease-in-out infinite;
}

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

/* About Background */
.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-circuit {
    display: none;
}

.bg-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(var(--color-primary) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.services {
    position: relative;
    padding: var(--space-6xl) 0;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

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

.section-header-center {
    text-align: center;
}

.section-header-center .section-tag {
    justify-content: center;
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
}

.section-header-center .section-subtitle {
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

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

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Card */
.service-card {
    position: relative;
    padding: var(--space-xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.service-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.card-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover .card-grid-pattern {
    opacity: 0.3;
}

.card-glow {
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 200px;
    height: 200px;
    background: var(--gradient-glow);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.service-card:hover .card-glow {
    opacity: 0.2;
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.service-card:hover .card-icon {
    box-shadow: var(--shadow-glow);
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-bg);
}

.card-number {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

.card-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
}

.card-description {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.card-features {
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 2;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
    margin-bottom: var(--space-sm);
}

.card-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
    transition: all var(--transition-base);
}

.card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.card-link:hover {
    gap: var(--space-md);
}

.card-link:hover svg {
    transform: translateX(4px);
}

/* Services Background */
.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.services-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 200px 100%;
    opacity: 0.3;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SOLUTIONS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.solutions {
    position: relative;
    padding: var(--space-6xl) 0;
    overflow: hidden;
}

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

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

@media (max-width: 640px) {
    .solutions-carousel {
        grid-template-columns: 1fr;
    }
}

.solution-card {
    position: relative;
    padding: var(--space-xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
}

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

.solution-visual {
    position: relative;
    margin-bottom: var(--space-lg);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.solution-card:hover .solution-icon {
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.solution-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
}

.solution-card:hover .solution-icon svg {
    color: var(--color-bg);
}

.solution-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 1px dashed var(--color-border);
    border-radius: 50%;
    opacity: 0;
    transition: all var(--transition-base);
}

.solution-card:hover .solution-particles {
    opacity: 1;
    animation: particleOrbit 10s linear infinite;
}

@keyframes particleOrbit {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.solution-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.solution-desc {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
    line-height: 1.7;
}

/* Solutions Background */
.solutions-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hex-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%2300d4ff' fill-opacity='0.03'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.process {
    position: relative;
    padding: var(--space-6xl) 0;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-track {
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--color-border);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--gradient-primary);
    transition: height 0.5s ease;
}

@media (max-width: 768px) {
    .timeline-track {
        left: 20px;
    }
}

.process-step {
    position: relative;
    display: flex;
    gap: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s ease;
}

.process-step:last-child {
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .process-step {
        gap: var(--space-lg);
    }
}

.step-marker {
    position: relative;
    flex-shrink: 0;
}

.marker-outer {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.process-step:hover .marker-outer {
    border-color: var(--color-primary);
}

@media (max-width: 768px) {
    .marker-outer {
        width: 40px;
        height: 40px;
    }
}

.marker-inner {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
}

@media (max-width: 768px) {
    .marker-inner {
        width: 30px;
        height: 30px;
    }
}

.marker-inner span {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-bg);
}

@media (max-width: 768px) {
    .marker-inner span {
        font-size: 10px;
    }
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0;
}

.process-step:hover .marker-pulse {
    animation: markerPulse 1.5s ease-out infinite;
}

@keyframes markerPulse {
    0% { width: 80px; height: 80px; opacity: 0.5; }
    100% { width: 120px; height: 120px; opacity: 0; }
}

.step-content {
    flex: 1;
    padding-top: var(--space-md);
}

.step-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

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

.step-title {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.step-description {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.step-tags span {
    padding: var(--space-xs) var(--space-md);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
}

/* Process Background */
.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circuit-pattern {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TECH STACK SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.tech-stack {
    position: relative;
    padding: var(--space-6xl) 0;
    overflow: hidden;
}

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

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

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

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.tech-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

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

.tech-icon svg {
    width: 48px;
    height: 48px;
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
}

.tech-item:hover .tech-icon svg {
    color: var(--color-primary);
}

.tech-name {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
}

/* Tech Background */
.tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--color-primary) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.cta-section {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3xl);
    padding: var(--space-4xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
}

@media (max-width: 1024px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.cta-description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
}

/* CTA Background */
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gradient-glow);
    filter: blur(100px);
    opacity: 0.1;
}

.cta-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--color-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.cta-shape-1 {
    top: 20%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: var(--color-accent-1);
    animation: shapeFloat 8s ease-in-out infinite;
}

.cta-shape-2 {
    bottom: 20%;
    right: 15%;
    width: 150px;
    height: 150px;
    background: var(--color-accent-2);
    animation: shapeFloat 10s ease-in-out infinite reverse;
}

.cta-shape-3 {
    top: 50%;
    right: 30%;
    width: 100px;
    height: 100px;
    background: var(--color-accent-3);
    animation: shapeFloat 6s ease-in-out infinite 2s;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.contact {
    position: relative;
    padding: var(--space-6xl) 0;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

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

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

.contact-description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
}

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

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

.contact-label {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-text a,
.contact-text span {
    font-size: var(--text-base);
    color: var(--color-text);
    transition: color var(--transition-base);
}

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

.contact-socials {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.social-link:hover {
    border-color: var(--color-primary);
    background: var(--color-surface-hover);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
}

.social-link:hover svg {
    color: var(--color-primary);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    position: relative;
    z-index: 2;
    padding: var(--space-2xl);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    position: relative;
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: var(--space-md);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: var(--text-base);
    transition: all var(--transition-base);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300d4ff' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    background-size: 16px;
    padding-right: var(--space-3xl);
}

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

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.form-input:focus ~ .form-line {
    width: 100%;
}

.form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.form-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    filter: blur(100px);
    opacity: 0.05;
}

/* Contact Background */
.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contact-grid-pattern {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PARTNER SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.partner-section {
    position: relative;
    padding: var(--space-4xl) 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}

.partner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.partner-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0;
    transition: transform 0.15s ease-out, opacity 0.3s ease;
}

.partner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.partner-logo {
    height: 50px;
    width: auto;
}

.partner-logo-light {
    display: none;
}

[data-theme="light"] .partner-logo-dark {
    display: none;
}

[data-theme="light"] .partner-logo-light {
    display: block;
}

.partner-heart {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-heart svg {
    width: 32px;
    height: 32px;
    color: #e91e63;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

.partner-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--color-text);
}

.partner-description {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.partner-section .btn {
    min-width: 220px;
    padding: var(--space-lg) var(--space-3xl);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .partner-logos {
        flex-direction: column;
        gap: var(--space-md);
    }

    .partner-logo {
        height: 40px;
    }

    .partner-heart svg {
        width: 24px;
        height: 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */

.footer {
    position: relative;
    padding: var(--space-4xl) 0 var(--space-xl);
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}

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

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: var(--space-md);
}

.footer-logo-light {
    display: none;
}

.footer-logo-dark {
    display: block;
}

[data-theme="light"] .footer-logo-light {
    display: block;
}

[data-theme="light"] .footer-logo-dark {
    display: none;
}

.footer-tagline {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
    line-height: 1.7;
}

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

@media (max-width: 640px) {
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-col a {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
    transition: color var(--transition-base);
}

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

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

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

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

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

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--color-text-tertiary);
    transition: color var(--transition-base);
}

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

/* Footer Background */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.footer-gradient {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    background: var(--gradient-glow);
    filter: blur(100px);
    opacity: 0.05;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MAGNETIC EFFECT
   ═══════════════════════════════════════════════════════════════════════════ */

.magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .hero-title {
        font-size: var(--text-4xl);
    }

    .section-title {
        font-size: var(--text-3xl);
    }

    .hero-terminal {
        display: none;
    }

    .server-racks,
    .holo-elements,
    .binary-rain,
    .tech-corners {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

@media print {
    .nav,
    .cursor,
    .noise-overlay,
    .loader,
    .hero-bg-layers,
    .hero-scroll,
    .marquee-section {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}
