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

body {
    font-family: 'Arial', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

@keyframes earthFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    25% { transform: translateY(-8px) rotateX(2deg); }
    50% { transform: translateY(-12px) rotateX(0deg); }
    75% { transform: translateY(-8px) rotateX(-2deg); }
}

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

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

/* Hero Section Animations - Ultra Realistic Version */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a2332 50%, #0a0f1c 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 70px;
}

/* Enhanced starfield with twinkling effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.9), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.8), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255,255,255,0.7), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starsAppear 2s ease-out forwards, stars 30s linear infinite 2s, starsTwinkle 3s ease-in-out infinite 2s;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(1px 1px at 60px 20px, rgba(135,206,235,0.3), transparent),
        radial-gradient(2px 2px at 100px 60px, rgba(255,215,0,0.2), transparent),
        radial-gradient(1px 1px at 180px 10px, rgba(255,192,203,0.2), transparent);
    background-repeat: repeat;
    background-size: 300px 150px;
    animation: starsAppear 2s ease-out 0.5s forwards, starsSlow 40s linear infinite 2.5s;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #e8eaed 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    line-height: 1.6;
}

.cta-button {
    background: linear-gradient(135deg, #4285f4 0%, #1a73e8 100%);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInScale 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
    perspective: 1000px;
}

/* Orbital rings around Earth */
.orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(66, 133, 244, 0.3);
    border-radius: 50%;
    animation: orbitRotate 20s linear infinite;
    pointer-events: none;
}

.orbital-ring:nth-child(1) {
    width: 380px;
    height: 380px;
    margin: -190px 0 0 -190px;
    animation-duration: 25s;
}

.orbital-ring:nth-child(2) {
    width: 420px;
    height: 420px;
    margin: -210px 0 0 -210px;
    animation-duration: 30s;
    animation-direction: reverse;
    border-color: rgba(52, 168, 83, 0.2);
}

.orbital-ring:nth-child(3) {
    width: 460px;
    height: 460px;
    margin: -230px 0 0 -230px;
    animation-duration: 35s;
    border-color: rgba(234, 67, 53, 0.2);
}

/* ULTRA REALISTIC EARTH */
.earth {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    position: relative;
    background: 
        radial-gradient(circle at 30% 30%, #4285f4 0%, #1a73e8 35%, #0d47a1 100%);
    box-shadow: 
        0 0 60px rgba(66, 133, 244, 0.4),
        inset -30px -30px 60px rgba(13, 71, 161, 0.6),
        inset 30px 30px 60px rgba(66, 133, 244, 0.1);
    animation: earthRotation 20s linear infinite, earthFloat 8s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 3;
}

.earth:hover {
    transform: scale(1.08) rotateX(5deg);
    box-shadow: 
        0 0 100px rgba(66, 133, 244, 0.6),
        inset -30px -30px 60px rgba(13, 71, 161, 0.7),
        inset 30px 30px 60px rgba(66, 133, 244, 0.2);
}

/* Realistic static continents */
.earth::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    width: 45%;
    height: 50%;
    background: 
        radial-gradient(ellipse at 40% 30%, #34a853 0%, #2e7d32 60%, #1b5e20 100%);
    border-radius: 70% 30% 80% 20%;
    opacity: 0.95;
    box-shadow: 
        inset -8px -8px 20px rgba(27, 94, 32, 0.5),
        2px 2px 10px rgba(52, 168, 83, 0.3);
    /* North America / Europe shape */
}

.earth::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 10%;
    width: 35%;
    height: 45%;
    background: 
        linear-gradient(135deg, #34a853 0%, #2e7d32 70%, #1b5e20 100%);
    border-radius: 60% 40% 70% 30%;
    opacity: 0.9;
    box-shadow: 
        inset -5px -5px 15px rgba(27, 94, 32, 0.4),
        1px 1px 8px rgba(52, 168, 83, 0.2);
    /* Africa / South America shape */
}

/* Additional continents */
.earth-continents {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    overflow: hidden;
}

.continent-asia {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 35%;
    height: 40%;
    background: 
        radial-gradient(ellipse at 20% 40%, #34a853 0%, #2e7d32 50%, #1b5e20 100%);
    border-radius: 40% 60% 30% 70%;
    opacity: 0.9;
    box-shadow: 
        inset -6px -6px 15px rgba(27, 94, 32, 0.4),
        1px 1px 6px rgba(52, 168, 83, 0.2);
}

.continent-australia {
    position: absolute;
    bottom: 25%;
    right: 20%;
    width: 15%;
    height: 12%;
    background: 
        linear-gradient(45deg, #34a853 0%, #2e7d32 100%);
    border-radius: 50% 70% 60% 40%;
    opacity: 0.85;
    box-shadow: 
        inset -3px -3px 8px rgba(27, 94, 32, 0.3),
        1px 1px 4px rgba(52, 168, 83, 0.2);
}

.continent-antarctica {
    position: absolute;
    bottom: 5%;
    left: 30%;
    width: 40%;
    height: 15%;
    background: 
        linear-gradient(90deg, #ffffff 0%, #e8f0fe 50%, #ffffff 100%);
    border-radius: 60% 60% 40% 40%;
    opacity: 0.8;
    box-shadow: 
        inset 0 -3px 8px rgba(0, 0, 0, 0.1),
        0 1px 4px rgba(255, 255, 255, 0.5);
}

/* Island chains */
.islands {
    position: absolute;
    top: 30%;
    right: 8%;
    width: 8%;
    height: 20%;
    background: 
        radial-gradient(circle at 30% 20%, #34a853 0%, transparent 40%),
        radial-gradient(circle at 60% 50%, #34a853 0%, transparent 35%),
        radial-gradient(circle at 40% 80%, #34a853 0%, transparent 30%);
    opacity: 0.7;
}

/* Atmosphere glow */
.earth-atmosphere {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 50% 50%, 
            transparent 45%, 
            rgba(135, 206, 235, 0.1) 50%, 
            rgba(135, 206, 235, 0.3) 55%, 
            transparent 60%);
    animation: atmosphereGlow 6s ease-in-out infinite;
    pointer-events: none;
}

/* Cloud layer */
.earth-clouds {
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    border-radius: 50%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.2) 0%, transparent 30%),
        radial-gradient(ellipse at 70% 20%, rgba(255,255,255,0.15) 0%, transparent 25%),
        radial-gradient(ellipse at 40% 70%, rgba(255,255,255,0.18) 0%, transparent 35%);
    animation: cloudMovement 15s linear infinite;
    pointer-events: none;
}

/* ULTRA REALISTIC SATELLITE */
.satellite {
    position: absolute;
    width: 80px;
    height: 40px;
    top: -60px;
    right: -100px;
    transform-origin: 160px 220px;
    animation: satelliteOrbit 15s linear infinite;
    z-index: 10;
}

.satellite-body {
    width: 80px;
    height: 40px;
    background: 
        linear-gradient(135deg, #f8f9fa 0%, #e8eaed 50%, #dadce0 100%);
    border-radius: 8px;
    position: relative;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.4),
        inset 0 4px 10px rgba(255,255,255,0.3),
        inset 0 -4px 10px rgba(0,0,0,0.1);
    animation: satelliteFloat 4s ease-in-out infinite;
}

.satellite-body::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: 
        linear-gradient(45deg, #1a73e8 0%, #4285f4 50%, #1a73e8 100%);
    border-radius: 4px;
    box-shadow: 
        inset 0 2px 5px rgba(26, 115, 232, 0.3),
        0 0 15px rgba(66, 133, 244, 0.5);
    animation: satelliteCore 3s ease-in-out infinite alternate;
}

.satellite-body::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: 
        radial-gradient(circle, #ea4335 0%, #d33b2c 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 8px rgba(234, 67, 53, 0.6),
        inset 0 2px 4px rgba(255,255,255,0.3);
    animation: satelliteIndicator 2s ease-in-out infinite;
}

/* Solar panels */
.solar-panel-left,
.solar-panel-right {
    position: absolute;
    width: 60px;
    height: 30px;
    top: 5px;
    background: 
        repeating-linear-gradient(90deg,
            #1a73e8 0px, #1a73e8 8px,
            #4285f4 8px, #4285f4 12px);
    border-radius: 3px;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.3),
        inset 0 2px 5px rgba(255,255,255,0.2);
    animation: solarPanelGlow 4s ease-in-out infinite alternate;
}

.solar-panel-left {
    left: -65px;
    transform-origin: right center;
    animation: solarPanelGlow 4s ease-in-out infinite alternate,
               solarPanelRotate 8s ease-in-out infinite;
}

.solar-panel-right {
    right: -65px;
    transform-origin: left center;
    animation: solarPanelGlow 4s ease-in-out infinite alternate 0.5s,
               solarPanelRotate 8s ease-in-out infinite reverse;
}

/* Satellite antenna */
.satellite-antenna {
    position: absolute;
    top: -15px;
    left: 50%;
    width: 3px;
    height: 15px;
    background: linear-gradient(180deg, #5f6368 0%, #3c4043 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.satellite-antenna::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    width: 12px;
    height: 8px;
    background: 
        radial-gradient(ellipse at center, #f8f9fa 0%, #e8eaed 100%);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ULTRA REALISTIC SATELLITE DISH */
.dish {
    position: absolute;
    width: 140px;
    height: 100px;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    animation: dishTracking 12s ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.dish:hover {
    transform: translateX(-50%) scale(1.15);
}

/* Dish support structure */
.dish-support {
    position: absolute;
    bottom: -80px;
    left: 50%;
    width: 25px;
    height: 80px;
    background: 
        linear-gradient(180deg, #5f6368 0%, #3c4043 50%, #202124 100%);
    transform: translateX(-50%);
    border-radius: 0 0 12px 12px;
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.4),
        inset 4px 0 8px rgba(255,255,255,0.1),
        inset -4px 0 8px rgba(0,0,0,0.2);
}

.dish-support::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 40px;
    height: 20px;
    background: 
        linear-gradient(135deg, #3c4043 0%, #202124 100%);
    transform: translateX(-50%);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.dish-support::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 8px;
    height: 40px;
    background: 
        linear-gradient(45deg, #ea4335 0%, #d33b2c 100%);
    transform: translateX(-50%);
    border-radius: 4px;
    box-shadow: 
        0 0 12px rgba(234, 67, 53, 0.6),
        inset 0 2px 4px rgba(255,255,255,0.2);
    animation: dishStatusLight 2s ease-in-out infinite alternate;
}

/* WAU EFFECTS */

/* Laser communication beam */
.laser-beam {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 200px;
    background: 
        linear-gradient(180deg, 
            transparent 0%, 
            rgba(66, 133, 244, 0.8) 20%, 
            rgba(26, 115, 232, 1) 50%, 
            rgba(66, 133, 244, 0.8) 80%, 
            transparent 100%);
    transform: translateX(-50%) rotate(-35deg);
    transform-origin: top center;
    animation: laserPulse 3s ease-in-out infinite;
    opacity: 0;
    filter: blur(0.5px);
    box-shadow: 
        0 0 10px rgba(66, 133, 244, 0.5),
        0 0 20px rgba(66, 133, 244, 0.3);
}

/* Data particles */
.data-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(66, 133, 244, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(66, 133, 244, 0.6);
    animation: dataFlow 4s linear infinite;
}

.data-particle:nth-child(12) { animation-delay: 0s; }
.data-particle:nth-child(13) { animation-delay: 0.5s; }
.data-particle:nth-child(14) { animation-delay: 1s; }
.data-particle:nth-child(15) { animation-delay: 1.5s; }

/* Meteor shower effect */
.meteor {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: meteorShower 8s linear infinite;
    opacity: 0;
}

.meteor::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 1px;
    background: 
        linear-gradient(90deg, 
            rgba(255,255,255,0) 0%, 
            rgba(255,255,255,0.8) 50%, 
            rgba(255,255,255,0) 100%);
    transform: translateX(-50px);
}

.meteor:nth-child(16) { 
    top: 20%; 
    left: 90%; 
    animation-delay: 0s; 
}
.meteor:nth-child(17) { 
    top: 40%; 
    left: 85%; 
    animation-delay: 2s; 
}
.meteor:nth-child(18) { 
    top: 60%; 
    left: 95%; 
    animation-delay: 4s; 
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceEnhanced 3s infinite;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-size: 2rem;
}

.scroll-indicator:hover {
    opacity: 1;
}

/* ENHANCED KEYFRAMES */
@keyframes starsAppear {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes stars {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

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

@keyframes starsSlow {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-150px) translateX(-50px); }
}

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

@keyframes satelliteOrbit {
    0% { 
        transform: rotate(0deg) translateX(200px) rotate(0deg);
        opacity: 1;
    }
    25% { opacity: 0.7; }
    50% { 
        transform: rotate(180deg) translateX(200px) rotate(-180deg);
        opacity: 0.5;
    }
    75% { opacity: 0.7; }
    100% { 
        transform: rotate(360deg) translateX(200px) rotate(-360deg);
        opacity: 1;
    }
}

@keyframes satelliteFloat {
    0%, 100% { transform: translateY(0) rotateZ(0deg); }
    50% { transform: translateY(-8px) rotateZ(2deg); }
}

@keyframes satelliteCore {
    0% { 
        box-shadow: 
            inset 0 2px 5px rgba(26, 115, 232, 0.3),
            0 0 15px rgba(66, 133, 244, 0.5);
    }
    100% { 
        box-shadow: 
            inset 0 2px 5px rgba(26, 115, 232, 0.5),
            0 0 25px rgba(66, 133, 244, 0.8);
    }
}

@keyframes satelliteIndicator {
    0%, 100% { 
        box-shadow: 
            0 0 8px rgba(234, 67, 53, 0.6),
            inset 0 2px 4px rgba(255,255,255,0.3);
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        box-shadow: 
            0 0 15px rgba(234, 67, 53, 1),
            inset 0 2px 4px rgba(255,255,255,0.5);
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes solarPanelGlow {
    0% { 
        box-shadow: 
            0 4px 15px rgba(0,0,0,0.3),
            inset 0 2px 5px rgba(255,255,255,0.2);
    }
    100% { 
        box-shadow: 
            0 4px 20px rgba(66, 133, 244, 0.4),
            inset 0 2px 8px rgba(255,255,255,0.4);
    }
}

@keyframes solarPanelRotate {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(15deg); }
}

@keyframes dishTracking {
    0%, 100% { transform: translateX(-50%) rotate(-12deg); }
    25% { transform: translateX(-50%) rotate(-6deg); }
    50% { transform: translateX(-50%) rotate(12deg); }
    75% { transform: translateX(-50%) rotate(6deg); }
}

@keyframes dishStatusLight {
    0% { 
        box-shadow: 
            0 0 12px rgba(234, 67, 53, 0.6),
            inset 0 2px 4px rgba(255,255,255,0.2);
    }
    100% { 
        box-shadow: 
            0 0 20px rgba(234, 67, 53, 1),
            inset 0 2px 6px rgba(255,255,255,0.4);
    }
}

@keyframes laserPulse {
    0%, 70% { opacity: 0; }
    75% { opacity: 0.8; }
    85% { opacity: 1; }
    95% { opacity: 0.8; }
    100% { opacity: 0; }
}

@keyframes dataFlow {
    0% { 
        transform: translate(0, 0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translate(-200px, 150px);
        opacity: 0;
    }
}

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

@keyframes meteorShower {
    0% { 
        opacity: 0;
        transform: translateX(0) translateY(0);
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        opacity: 0;
        transform: translateX(-300px) translateY(200px);
    }
}

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

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

@keyframes bounceEnhanced {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    10% { 
        transform: translateX(-50%) translateY(-8px); 
    }
    30% { 
        transform: translateX(-50%) translateY(-4px); 
    }
    40% { 
        transform: translateX(-50%) translateY(-12px); 
    }
    60% { 
        transform: translateX(-50%) translateY(-6px); 
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .earth {
        width: 280px;
        height: 280px;
    }
    
    .satellite {
        width: 60px;
        height: 30px;
        animation-duration: 18s;
    }
    
    .dish {
        width: 120px;
        height: 85px;
        bottom: -100px;
    }
    
    .orbital-ring:nth-child(1) {
        width: 340px;
        height: 340px;
        margin: -170px 0 0 -170px;
    }
    
    .orbital-ring:nth-child(2) {
        width: 380px;
        height: 380px;
        margin: -190px 0 0 -190px;
    }
    
    .orbital-ring:nth-child(3) {
        width: 420px;
        height: 420px;
        margin: -210px 0 0 -210px;
    }
}

/* Performance optimizations */
.hero *,
.earth,
.satellite,
.dish,
.orbital-ring,
.data-particle,
.meteor {
    will-change: transform;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero *,
    .hero::before,
    .hero::after,
    .earth,
    .satellite,
    .dish,
    .orbital-ring,
    .data-particle,
    .meteor,
    .laser-beam {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}