/* mosoon.xyz - Seapunk Deep Sea Descent */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bitter', serif;
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #C0E8E0;
    background: #1A4060;
    overflow-x: hidden;
}

/* ===== Cursor Glow ===== */
.cursor-glow {
    position: fixed;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,232,208,0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 100;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* ===== Bubbles ===== */
.bubbles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.bubble {
    position: absolute;
    bottom: -20px;
    border-radius: 50%;
    border: 1px solid rgba(0,232,208,0.1);
    background: rgba(0,232,208,0.02);
    animation: bubble-rise linear infinite;
}

@keyframes bubble-rise {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-110vh);
        opacity: 0;
    }
}

/* ===== Organic Blobs ===== */
.blob {
    position: fixed;
    border-radius: 40% 60% 55% 45% / 55% 40% 60% 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.06;
}

.blob-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #6080C0, transparent 70%);
    top: 20%;
    left: 10%;
    animation: blob-morph-1 20s ease-in-out infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #E06080, transparent 70%);
    top: 50%;
    right: 5%;
    animation: blob-morph-2 25s ease-in-out infinite;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #00E8D0, transparent 70%);
    top: 70%;
    left: 30%;
    animation: blob-morph-3 18s ease-in-out infinite;
}

@keyframes blob-morph-1 {
    0%, 100% { border-radius: 40% 60% 55% 45% / 55% 40% 60% 50%; transform: translate(0, 0); }
    33% { border-radius: 55% 45% 40% 60% / 40% 55% 45% 60%; transform: translate(20px, -10px); }
    66% { border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%; transform: translate(-15px, 15px); }
}

@keyframes blob-morph-2 {
    0%, 100% { border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%; transform: translate(0, 0); }
    50% { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; transform: translate(-20px, 10px); }
}

@keyframes blob-morph-3 {
    0%, 100% { border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%; transform: translate(0, 0); }
    50% { border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%; transform: translate(10px, -20px); }
}

/* ===== Zones ===== */
.zone {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.zone-surface {
    background: #1A4060;
}

.zone-thermo {
    background: linear-gradient(180deg, #1A4060, #0A1828);
}

.zone-deep {
    background: linear-gradient(180deg, #0A1828, #040C18);
}

.zone-abyss {
    background: #040C18;
    min-height: 80vh;
}

/* ===== Hero ===== */
.hero-title {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 7rem);
    color: #E0E8F0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-sub {
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #6080C0;
    text-align: center;
    margin-top: 1rem;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 10;
}

/* ===== Zone Content ===== */
.zone-content {
    max-width: 640px;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.zone-content.revealed {
    opacity: 1;
    transform: translateY(0);
}

.zone-heading {
    font-family: 'Bitter', serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #E0E8F0;
    margin-bottom: 1.5rem;
}

.zone-text {
    font-family: 'Bitter', serif;
    font-weight: 400;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #C0E8E0;
    margin-bottom: 1.25rem;
}

.zone-text:last-child {
    margin-bottom: 0;
}

/* ===== Abyss ===== */
.zone-content-sparse {
    text-align: center;
}

.abyss-text {
    font-family: 'Bitter', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: #E0E8F0;
    line-height: 1.6;
}

.abyss-blob {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, #00E8D0, transparent 70%);
    opacity: 0.06;
    animation: abyss-pulse 8s ease-in-out infinite;
}

@keyframes abyss-pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.06; }
    50% { transform: translateX(-50%) scale(1.1); opacity: 0.1; }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .blob {
        display: none;
    }

    .zone-content {
        padding: 0 1rem;
    }

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