:root {
    --c-black: #050505;
    --c-dark: #0a0a0a;
    --c-accent: #e0aaff; /* Neonowy róż/fiolet */
    --c-white: #ffffff;
    --c-gray: #888;
}

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

body {
    background-color: var(--c-black);
    color: var(--c-white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* --- TYPOGRAFIA --- */
.font-mono { font-family: 'Space Mono', monospace; }
.font-tech { font-family: 'Outfit', sans-serif; }

h1, h2, h3 {
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.hero-text {
    font-size: clamp(4rem, 15vw, 12rem);
    font-weight: 700;
    color: var(--c-white);
    mix-blend-mode: difference;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 2rem;
}

.lead-text {
    font-size: clamp(1.2rem, 2vw, 2rem);
    line-height: 1.4;
    max-width: 800px;
    color: var(--c-gray);
}

/* --- UTILS --- */
.full-screen {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.z-2 { z-index: 2; }
.relative { position: relative; }
.text-center { text-align: center; }
.text-accent { color: var(--c-accent); }

/* --- TEXT ANIMATIONS --- */
.split-line {
    overflow: hidden;
}

.word, .char {
    transform-origin: center bottom;
}

/* FADE IN UP UTILS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

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

