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

:root {
    --primary-dark: #0a0e27;
    --primary-blue: #0066ff;
    --accent-purple: #7c3aed;
    --accent-cyan: #06b6d4;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-3: linear-gradient(135deg, #0066ff 0%, #7c3aed 100%);
    --star-color-1: 200, 220, 255;
    --star-color-2: 220, 230, 255;
    --star-color-3: 255, 250, 240;
    --star-color-4: 180, 210, 255;
}

/* Light mode theme */
@media (prefers-color-scheme: light) {
    :root {
        --primary-dark: #f0f4ff;
        --primary-blue: #0052cc;
        --accent-purple: #6929c4;
        --accent-cyan: #0072c3;
        --text-primary: #1c2434;
        --text-secondary: #525866;
        --glass-bg: rgba(255, 255, 255, 0.85);
        --glass-border: rgba(0, 82, 204, 0.12);
        --star-color-1: 0, 82, 204;
        --star-color-2: 105, 41, 196;
        --star-color-3: 0, 114, 195;
        --star-color-4: 37, 99, 235;
    }

    body::after {
        background: radial-gradient(circle at center, transparent 0%, rgba(240, 244, 255, 0.7) 100%);
    }

    .scanlines {
        opacity: 0.15;
    }

    .cursor-glow {
        background: radial-gradient(circle, rgba(0, 82, 204, 0.12) 0%, transparent 70%);
    }

    .grid-overlay {
        background-image:
            linear-gradient(rgba(0, 102, 255, 0.08) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 102, 255, 0.08) 1px, transparent 1px);
    }

    .gradient-orb {
        opacity: 0.25;
        filter: blur(120px);
    }

    .gradient-orb-1 {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .gradient-orb-2 {
        background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    }

    .gradient-orb-3 {
        background: linear-gradient(135deg, #0066ff 0%, #7c3aed 100%);
    }

    .header {
        background: rgba(255, 255, 255, 0.92);
        border-bottom: 1px solid rgba(0, 82, 204, 0.12);
        box-shadow: 0 1px 3px rgba(0, 82, 204, 0.05);
    }

    .footer {
        background: rgba(255, 255, 255, 0.95);
        border-top: 1px solid rgba(0, 82, 204, 0.12);
    }

    .badge {
        background: rgba(0, 102, 255, 0.08);
        border: 1px solid rgba(0, 102, 255, 0.2);
    }

    .badge::before {
        background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.25), transparent);
    }

    .feature-card,
    .datacenter-card,
    .value-card,
    .cert-badge,
    .mv-card,
    .stat-large,
    .location-card,
    .office-hours {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 82, 204, 0.12);
        box-shadow: 0 4px 12px rgba(0, 82, 204, 0.08);
    }

    .feature-card:hover,
    .datacenter-card:hover,
    .value-card:hover,
    .cert-badge:hover,
    .mv-card:hover,
    .stat-large:hover,
    .location-card:hover {
        box-shadow: 0 8px 24px rgba(0, 82, 204, 0.15);
        border-color: rgba(0, 102, 255, 0.25);
    }

    .contact-form-wrapper {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 82, 204, 0.12);
        box-shadow: 0 8px 24px rgba(0, 82, 204, 0.12);
    }

    .form-input {
        background: rgba(240, 244, 255, 0.6);
        border: 1px solid rgba(0, 82, 204, 0.2);
        color: var(--text-primary);
    }

    .form-input:focus {
        background: rgba(255, 255, 255, 0.9);
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
    }

    .datacenter-stats {
        background: rgba(0, 102, 255, 0.06);
        border: 1px solid rgba(0, 102, 255, 0.1);
    }

    .features-section,
    .infrastructure-highlights,
    .mission-vision,
    .certifications-section,
    .locations-section {
        background: rgba(255, 255, 255, 0.4);
    }

    .cta-section::before {
        background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(124, 58, 237, 0.12));
    }

    .title-line:not(.gradient-text) {
        text-shadow:
            0 2px 8px rgba(0, 82, 204, 0.15),
            0 0 20px rgba(0, 102, 255, 0.1);
    }

    .hero-description,
    .page-description {
        text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    }
}

/* Force dark mode when data-theme="dark" */
[data-theme="dark"] {
    --primary-dark: #0a0e27;
    --primary-blue: #0066ff;
    --accent-purple: #7c3aed;
    --accent-cyan: #06b6d4;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --star-color-1: 200, 220, 255;
    --star-color-2: 220, 230, 255;
    --star-color-3: 255, 250, 240;
    --star-color-4: 180, 210, 255;
}

[data-theme="dark"] body::after {
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 14, 39, 0.8) 100%);
}

[data-theme="dark"] .scanlines {
    opacity: 0.5;
}

/* Force light mode when data-theme="light" */
[data-theme="light"] {
    --primary-dark: #f0f4ff;
    --primary-blue: #0052cc;
    --accent-purple: #6929c4;
    --accent-cyan: #0072c3;
    --text-primary: #1c2434;
    --text-secondary: #525866;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 82, 204, 0.12);
    --star-color-1: 0, 82, 204;
    --star-color-2: 105, 41, 196;
    --star-color-3: 0, 114, 195;
    --star-color-4: 37, 99, 235;
}

[data-theme="light"] body::after {
    background: radial-gradient(circle at center, transparent 0%, rgba(240, 244, 255, 0.7) 100%);
}

[data-theme="light"] .scanlines {
    opacity: 0.15;
}

[data-theme="light"] .header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 82, 204, 0.12);
    box-shadow: 0 1px 3px rgba(0, 82, 204, 0.05);
}

[data-theme="light"] .footer {
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 82, 204, 0.12);
}

[data-theme="light"] .badge {
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

[data-theme="light"] .feature-card,
[data-theme="light"] .datacenter-card,
[data-theme="light"] .value-card,
[data-theme="light"] .cert-badge,
[data-theme="light"] .mv-card,
[data-theme="light"] .stat-large,
[data-theme="light"] .location-card,
[data-theme="light"] .office-hours {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 82, 204, 0.12);
    box-shadow: 0 4px 12px rgba(0, 82, 204, 0.08);
}

[data-theme="light"] .form-input {
    background: rgba(240, 244, 255, 0.6);
    border: 1px solid rgba(0, 82, 204, 0.2);
}

[data-theme="light"] .gradient-orb {
    opacity: 0.25;
    filter: blur(120px);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 14, 39, 0.8) 100%);
    pointer-events: none;
    z-index: 997;
}

.cursor-glow {
    width: 400px;
    height: 400px;
    position: fixed;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

.scanlines {
    position: fixed;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 50%,
        rgba(0, 102, 255, 0.02) 50%
    );
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 999;
    opacity: 0.5;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(4px);
    }
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    animation: slideDown 0.6s ease-out;
    padding: 1.5rem 2rem;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.logo-text {
    color: var(--text-primary);
}

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

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.footer .logo-image {
    height: 50px;
}

/* Logo theme switching - default dark mode */
.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

/* Light mode logo switching */
@media (prefers-color-scheme: light) {
    .logo-light {
        display: block;
    }

    .logo-dark {
        display: none;
    }
}

/* Manual theme override */
[data-theme="light"] .logo-light {
    display: block;
}

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

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

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

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 2rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.gradient-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--gradient-1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.gradient-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-2);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.gradient-orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    z-index: 10;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.3), transparent);
    animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    filter: drop-shadow(0 0 30px rgba(0, 102, 255, 0.3));
}

.title-line {
    display: block;
}

.title-line:not(.gradient-text) {
    color: var(--text-primary);
    text-shadow:
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(0, 102, 255, 0.3),
        0 0 60px rgba(0, 102, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 25%, #7c3aed 50%, #ec4899 75%, #06b6d4 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 25%, #7c3aed 50%, #ec4899 75%, #06b6d4 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(20px);
    opacity: 0.7;
    animation: gradientShift 3s ease infinite;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Stars contained in hero/page header sections only */
.hero-section > #particle-canvas,
.page-header > #particle-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

#particle-canvas canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-3);
    color: var(--text-primary);
    position: relative;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-3);
    transition: width 0.3s ease;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

.theme-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.theme-toggle:hover svg {
    transform: rotate(20deg);
}

.theme-toggle-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: none;
}

@media (min-width: 1024px) {
    .theme-toggle-text {
        display: block;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-section {
    position: relative;
    padding: 8rem 0;
    background: rgba(10, 14, 39, 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 102, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.cta-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(124, 58, 237, 0.1));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    position: relative;
    z-index: 10;
    padding: 4rem 0 2rem;
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--glass-border);
}

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

.footer-tagline {
    margin-top: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.footer-column h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    margin-bottom: 4rem;
}

.page-header-content {
    max-width: 900px;
    text-align: center;
    z-index: 10;
    position: relative;
}

.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.page-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.datacenters-section {
    padding: 4rem 0;
    position: relative;
}

.datacenter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.datacenter-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.datacenter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.datacenter-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

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

.datacenter-header {
    margin-bottom: 2rem;
}

.datacenter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8125rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.region-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    display: block;
    animation: pulse 2s infinite;
}

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

.datacenter-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.datacenter-location {
    font-size: 1rem;
    color: var(--text-secondary);
}

.datacenter-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 12px;
}

.datacenter-card {
    display: flex;
    flex-direction: column;
}

.datacenter-stats + .datacenter-note,
.datacenter-card > .datacenter-note {
    margin-top: auto;
    padding-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
    min-height: 1.25rem;
}

.campus-section {
    padding: 5rem 0;
    position: relative;
}

.campus-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.campus-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.campus-card-eyebrow {
    font-size: 0.8125rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.campus-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.campus-table {
    display: grid;
    gap: 0.5rem;
}

.campus-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 10px;
    align-items: center;
}

.campus-row-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.campus-row-value {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

@media (max-width: 600px) {
    .campus-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        text-align: left;
    }
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.datacenter-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.feature-item svg {
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.infrastructure-highlights {
    padding: 6rem 0;
    background: rgba(10, 14, 39, 0.5);
    position: relative;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.highlight-card {
    text-align: center;
    padding: 2rem;
}

.highlight-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.highlight-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-content {
    padding: 4rem 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    position: relative;
    z-index: 10;
}

.text-block {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-stats-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.stat-large {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-large:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.3);
}

.stat-large-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-large-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.mission-vision {
    padding: 6rem 0;
    background: rgba(10, 14, 39, 0.5);
    position: relative;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.mv-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.2);
}

.mv-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.mv-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.mv-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.values-section {
    padding: 6rem 0;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.value-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.3);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--accent-cyan);
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.certifications-section {
    padding: 6rem 0;
    background: rgba(10, 14, 39, 0.5);
    position: relative;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.cert-badge {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cert-badge:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
    transform: translateY(-4px);
}

.contact-section {
    padding: 4rem 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.contact-info {
    position: relative;
}

.contact-info-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-info-description {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-cyan);
}

.contact-method-content {
    flex: 1;
}

.contact-method-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-method-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a.contact-method-value:hover {
    color: var(--accent-cyan);
}

.office-hours {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.office-hours-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.office-hours-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.office-hours-item:last-child {
    margin-bottom: 0;
}

.office-hours-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.office-hours-value {
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.contact-form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

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

.form-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

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

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

.form-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: -0.5rem;
}

.form-help {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-style: italic;
}

#mathQuestion {
    color: var(--accent-cyan);
    font-weight: 600;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9375rem;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.locations-section {
    padding: 6rem 0;
    background: rgba(10, 14, 39, 0.5);
    position: relative;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.location-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.3);
}

.location-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.location-address {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.location-phone {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.location-phone:hover {
    color: var(--primary-blue);
}

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

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .logo {
        font-size: 1.25rem;
    }

    .logo-image {
        height: 32px;
    }

    .footer .logo-image {
        height: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .features-section,
    .cta-section {
        padding: 4rem 0;
    }

    .datacenter-grid {
        grid-template-columns: 1fr;
    }

    .datacenter-stats {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 6rem 2rem 2rem;
        min-height: 40vh;
    }

    .infrastructure-highlights {
        padding: 4rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-stats-large {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .mission-vision,
    .values-section,
    .certifications-section {
        padding: 4rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .locations-section {
        padding: 4rem 0;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .theme-toggle {
        padding: 0.5rem;
    }
}