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

:root {
    --space-dark: #0B0D17;
    --space-blue: #1A1F3A;
    --star-white: #FFFFFF;
    --accent-purple: #8B7FFF;
    --accent-blue: #4A90E2;
    --text-muted: #8B8FA8;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--space-dark);
    color: var(--star-white);
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--star-white);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    top: 0;
    left: 0;
    will-change: transform;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                0 0 20px rgba(139, 127, 255, 0.4);
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    top: 0;
    left: 0;
    will-change: transform;
}

/* Stars Canvas */
#stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    padding: 2rem;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.title {
    font-size: clamp(6rem, 20vw, 16rem);
    font-weight: 200;
    line-height: 1;
    margin-bottom: 2rem;
    color: var(--star-white);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.title span {
    display: block;
    font-weight: 300;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue), var(--star-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    text-shadow: 0 0 80px rgba(139, 127, 255, 0.5);
}

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

.subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-family: 'Space Mono', monospace;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Planets */
.planets {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.planet {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: orbit 60s linear infinite;
    transition: transform 0.3s ease-out;
}

.planet-1 {
    top: 15%;
    right: 10%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, rgba(139, 127, 255, 0.8), rgba(74, 144, 226, 0.3));
    box-shadow: 0 0 60px rgba(139, 127, 255, 0.3);
    animation-duration: 80s;
}

.planet-2 {
    bottom: 20%;
    left: 8%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 35% 35%, rgba(74, 144, 226, 0.7), rgba(139, 127, 255, 0.2));
    box-shadow: 0 0 40px rgba(74, 144, 226, 0.4);
    animation-duration: 100s;
    animation-direction: reverse;
}

.planet-3 {
    top: 50%;
    right: 20%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.6), rgba(139, 127, 255, 0.2));
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    animation-duration: 120s;
}

@keyframes orbit {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.4;
    }
    25% { 
        transform: translate(20px, -30px) scale(1.1); 
        opacity: 0.6;
    }
    50% { 
        transform: translate(0, -50px) scale(1); 
        opacity: 0.4;
    }
    75% { 
        transform: translate(-20px, -30px) scale(0.9); 
        opacity: 0.3;
    }
}

/* Services Section */
.services-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.services-container {
    max-width: 1000px;
    width: 100%;
}

.service-item {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-item:hover {
    padding-left: 2rem;
    border-bottom-color: var(--accent-purple);
}

.service-number {
    font-size: 0.875rem;
    font-family: 'Space Mono', monospace;
    color: var(--text-muted);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.service-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: var(--star-white);
    letter-spacing: -0.02em;
    transition: all 0.4s ease;
}

.service-item:hover .service-title {
    color: var(--accent-purple);
}

.service-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
    font-weight: 300;
}

/* Contact Section */
.contact-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.contact-content {
    text-align: center;
    max-width: 700px;
}

.contact-title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--star-white);
    letter-spacing: -0.02em;
}

.contact-email {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--accent-purple);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.contact-email:hover {
    color: var(--accent-blue);
    border-bottom-color: var(--accent-blue);
}

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    font-family: 'Space Mono', monospace;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid transparent;
}

.contact-link:hover {
    color: var(--star-white);
    border-bottom-color: var(--star-white);
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 40s linear infinite;
}

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

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

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInOut 3s infinite;
    cursor: pointer;
    transition: opacity 0.5s ease;
}

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

/* Section Titles */
.section-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }

    .service-item {
        padding: 2rem 0;
    }

    .service-item:hover {
        padding-left: 1rem;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
    }

    .planet-1, .planet-2, .planet-3 {
        transform: scale(0.7);
    }
}

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

.hero-content > * {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.title { animation-delay: 0.3s; }
.subtitle { animation-delay: 0.5s; }
.orbit-ring { animation-delay: 0.7s; }

