/* 가능성.com - Neubrutalist Possibility Portal */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --deep-navy: #0C1020;
    --navy-panel: #141830;
    --navy-blue: #2040A0;
    --metallic-silver: #C0C8D8;
    --thick-border: #1A2038;
    --text-light: #E0E8F0;
    --text-body: #B0B8C8;
    --label-blue: #6080B0;
    --raw-accent: #E04060;
    --crystalline-mid: #8098C0;
}

body {
    background: var(--deep-navy);
    color: var(--text-light);
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
    overflow-x: hidden;
}

/* Watercolor Washes */
.wash {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(40px);
    z-index: 0;
    opacity: 0;
    animation: washBloom 0.8s ease forwards;
}
.wash-1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(32, 64, 160, 0.12), transparent); top: -5%; left: 10%; animation-delay: 0.2s; }
.wash-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(32, 64, 160, 0.08), transparent); top: 40%; right: 5%; animation-delay: 0.5s; }
.wash-3 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(32, 64, 160, 0.1), transparent); bottom: 10%; left: 30%; animation-delay: 0.8s; }
@keyframes washBloom { to { opacity: 1; } }

/* Crystalline Gems */
.crystal {
    position: absolute;
    z-index: 3;
    background: linear-gradient(135deg, var(--metallic-silver), var(--text-light), var(--crystalline-mid));
    opacity: 0;
    animation: crystalMaterialize 0.3s ease forwards;
    box-shadow: 4px 4px 0 rgba(128, 152, 192, 0.3), -2px -2px 0 rgba(224, 232, 240, 0.2);
}
.crystal-1 { width: 60px; height: 60px; clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%); top: 15%; right: 10%; animation-delay: 1s; }
.crystal-2 { width: 50px; height: 50px; clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); top: 10%; left: 5%; animation-delay: 1.2s; }
.crystal-3 { width: 40px; height: 40px; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); top: 20%; right: 15%; animation-delay: 1.4s; }
@keyframes crystalMaterialize { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }

/* Organic Sections */
.organic-section {
    position: relative;
    z-index: 1;
    padding: 80px 2rem;
    clip-path: ellipse(130% 55% at 50% 50%);
    margin-top: -40px;
}
.section-hero {
    clip-path: none;
    margin-top: 0;
    padding-top: 120px;
}
.organic-section:nth-child(odd) { background: var(--deep-navy); }
.organic-section:nth-child(even) { background: var(--navy-panel); }

/* Section Inner */
.section-inner {
    max-width: 860px;
    position: relative;
    z-index: 2;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Brutal Blocks */
.brutal-block {
    border: 4px solid var(--thick-border);
    padding: 24px 32px 16px 40px;
    background: rgba(20, 24, 48, 0.6);
    position: relative;
    transition: transform 0.1s, box-shadow 0.1s;
}
.brutal-block:hover {
    transform: translate(4px, 4px);
    box-shadow: 8px 8px 0 var(--thick-border);
}

/* Blur-Focus */
.organic-section.blurred {
    filter: blur(2px);
    transition: filter 0.3s ease;
}
.organic-section.focused {
    filter: none;
    transition: filter 0.3s ease;
}

/* Typography */
.display-headline {
    font-family: 'Black Han Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}
.body-text {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 0.75rem;
}
.accent-label {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: var(--label-blue);
    display: block;
}

/* Divider lines */
.brutal-block + .brutal-block::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: var(--thick-border);
    position: absolute;
    top: -14px;
    left: 0;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}
.footer-label {
    font-family: 'Black Han Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: var(--label-blue);
}

@media (max-width: 768px) {
    .organic-section { clip-path: none; margin-top: 0; padding: 48px 1rem; }
    .section-inner { padding-left: 0; }
    .brutal-block { padding: 20px; }
    .crystal { display: none; }
}
