/* monopole.one */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #000000; color: #ffffff; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; overflow-x: hidden; }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
}

.ghost-number {
    position: absolute;
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: clamp(300px, 60vw, 500px);
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.brand {
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: clamp(4rem, 12vw, 10rem);
    letter-spacing: 0.3em;
    position: relative;
    z-index: 10;
    animation: drift 6s ease-in-out infinite;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}

@keyframes drift {
    0%, 100% { letter-spacing: 0.3em; transform: translateX(0); }
    50% { letter-spacing: 0.38em; transform: translateX(2px); }
}

.pulse-point {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6366f1;
    animation: pulse 3s ease-in-out infinite;
    margin-top: 2rem;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
    z-index: 10;
    position: relative;
}

.pulse-point.large {
    width: 30px;
    height: 30px;
    box-shadow: 0 0 50px rgba(99, 102, 241, 0.5), 0 0 100px rgba(99, 102, 241, 0.2);
    margin-bottom: 1rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 15px rgba(99, 102, 241, 0.4); }
    50% { opacity: 0.6; transform: scale(1.4); box-shadow: 0 0 30px rgba(99, 102, 241, 0.6); }
}

.statement {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.statement-text {
    font-family: 'Sora', sans-serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    text-align: center;
    max-width: 85vw;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.point {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
}

.indigo-line {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, #6366f1, transparent);
    margin-top: 2rem;
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.end {
    min-height: 100vh;
    text-align: right;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.one-label {
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: #525252;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
