/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --deep-charcoal: #0a0a0f;
    --charcoal: #12121a;
    --soft-white: #e8e8f0;
    --muted-silver: #9898a8;
    --electric-glow: #6b7cff;
    --violet-glow: #a78bfa;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-primary);
    background: var(--deep-charcoal);
    color: var(--soft-white);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    cursor: default;
}

/* ==================== PARTICLE SYSTEM ==================== */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ==================== FLOATING SHAPES ==================== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(107, 124, 255, 0.08), 
        rgba(167, 139, 250, 0.03));
    filter: blur(40px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    right: 10%;
    animation-delay: -7s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translate(30px, -50px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -30px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, 20px) rotate(270deg);
        opacity: 0.7;
    }
}

/* ==================== CONTAINER ==================== */
.container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-md);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ==================== HERO SECTION ==================== */
.hero {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    width: 100%;
}

.silhouettes-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
}

.silhouette {
    width: 200px;
    height: 280px;
    position: relative;
    filter: blur(1px);
    opacity: 0.9;
    transition: transform 0.6s ease-out;
}

.silhouette-left {
    background: linear-gradient(135deg, 
        rgba(232, 232, 240, 0.15) 0%,
        rgba(232, 232, 240, 0.08) 50%,
        rgba(232, 232, 240, 0.03) 100%);
    clip-path: ellipse(45% 48% at 50% 45%);
    animation: breathe 4s infinite ease-in-out;
}

.silhouette-right {
    background: linear-gradient(225deg, 
        rgba(232, 232, 240, 0.15) 0%,
        rgba(232, 232, 240, 0.08) 50%,
        rgba(232, 232, 240, 0.03) 100%);
    clip-path: ellipse(45% 48% at 50% 45%);
    animation: breathe 4s infinite ease-in-out;
    animation-delay: -2s;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.02);
        opacity: 1;
    }
}

.antigravity-field {
    position: absolute;
    width: 80px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(107, 124, 255, 0.3) 20%,
        rgba(167, 139, 250, 0.4) 50%,
        rgba(107, 124, 255, 0.3) 80%,
        transparent 100%);
    filter: blur(20px);
    animation: pulse 3s infinite ease-in-out;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scaleX(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scaleX(1.1);
    }
}

/* ==================== TYPOGRAPHY ==================== */
.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(180deg, 
        var(--soft-white) 0%, 
        rgba(232, 232, 240, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.2s ease-out 0.3s backwards;
}

.subheadline {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: var(--muted-silver);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease-out 0.6s backwards;
}

/* ==================== COMING SOON ==================== */
.coming-soon {
    text-align: center;
    padding: var(--spacing-lg) 0;
}

.coming-soon-text {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--soft-white);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    animation: fadeInUp 1.2s ease-out 0.9s backwards;
}

.coming-soon-text::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--electric-glow) 50%,
        transparent 100%);
    animation: shimmer 2s infinite ease-in-out;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
        width: 60px;
    }
    50% {
        opacity: 0.8;
        width: 80px;
    }
}

.tagline {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--muted-silver);
    font-style: italic;
    animation: fadeInUp 1.2s ease-out 1.2s backwards;
}

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

/* ==================== HOVER EFFECTS ==================== */
.silhouettes-container:hover .silhouette-left {
    transform: translateX(-5px);
}

.silhouettes-container:hover .silhouette-right {
    transform: translateX(5px);
}

.silhouettes-container:hover .antigravity-field {
    opacity: 0.9;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .silhouettes-container {
        height: 300px;
        gap: 80px;
    }
    
    .silhouette {
        width: 140px;
        height: 200px;
    }
    
    .antigravity-field {
        width: 60px;
        height: 200px;
    }
    
    .shape-1, .shape-2, .shape-3 {
        width: 200px;
        height: 200px;
    }
    
    .headline {
        letter-spacing: 0.05em;
    }
    
    .coming-soon {
        padding: var(--spacing-md) 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: var(--spacing-sm);
    }
    
    .silhouettes-container {
        gap: 60px;
        height: 250px;
    }
    
    .silhouette {
        width: 100px;
        height: 160px;
    }
    
    .antigravity-field {
        width: 40px;
        height: 160px;
    }
}
