/* nonri.org - Street-Style Intellectual Carnival */
/* Colors: #0A0A14, #F0F0F8, #FF2D6F, #0A0E1A, #B8FF00, #7A7A8A, #FFAA00, #0A1410 */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    color: #F0F0F8;
    background: #0A0A14;
    overflow-x: hidden;
}

/* Stage Sections */
.stage {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 40px;
}

#stage-hero { background: #0A0A14; }
#stage-ideas { background: #0E0A1A; }
#stage-community { background: #0A0E1A; }
#stage-vision { background: #0A1410; }

/* Neon Accent Bar */
.neon-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0.8;
}

/* Particles Canvas Placeholder */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Stage Content */
.stage-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
    text-align: center;
}

/* Character Illustrations */
.character-illustration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.character-svg {
    width: 100%;
    height: 100%;
}

.char-hero {
    width: 120px;
    height: 150px;
    right: -140px;
    top: 50%;
    transform: translateY(-50%);
}

.char-ideas {
    width: 100px;
    height: 130px;
    left: -130px;
    top: 50%;
    transform: translateY(-50%);
}

.char-community {
    width: 160px;
    height: 130px;
    right: -180px;
    top: 50%;
    transform: translateY(-50%);
}

.char-vision {
    width: 100px;
    height: 130px;
    left: -130px;
    top: 50%;
    transform: translateY(-50%);
}

/* Stage Title */
.stage-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 400;
    color: #F0F0F8;
    line-height: 1.1;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.stage.visible .stage-title {
    opacity: 1;
    transform: translateY(0);
}

/* Annotation (Permanent Marker style) */
.stage-annotation {
    font-family: 'Permanent Marker', cursive;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #FF2D6F;
    margin-bottom: 24px;
    opacity: 0;
    transition: opacity 0.6s ease 0.4s;
}

.stage.visible .stage-annotation {
    opacity: 0.8;
}

/* Stage Tags */
.stage-tag {
    font-family: 'Permanent Marker', cursive;
    font-size: 1rem;
    color: #7A7A8A;
    margin-bottom: 12px;
    text-transform: lowercase;
    opacity: 0;
    transition: opacity 0.6s ease 0.2s;
}

.stage.visible .stage-tag {
    opacity: 0.7;
}

/* Stage Body Text */
.stage-body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    line-height: 1.85;
    color: #F0F0F8;
    opacity: 0;
    max-width: 550px;
    margin: 0 auto;
    transform: translateY(12px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.stage.visible .stage-body {
    opacity: 0.75;
    transform: translateY(0);
}

/* Particle dots */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: particleDrift linear infinite;
}

@keyframes particleDrift {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.12;
    }
    90% {
        opacity: 0.08;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .stage {
        padding: 60px 24px;
    }

    .character-illustration {
        position: relative;
        right: auto;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 20px;
        opacity: 0.5;
    }

    .char-hero,
    .char-ideas,
    .char-community,
    .char-vision {
        right: auto;
        left: auto;
        top: auto;
    }
}
