.kinetic-experience-section {
    position: relative;
    height: 100vh;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Background Chaos (Marquees) --- */
.chaos-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: rotate(-10deg) scale(1.2); /* Tehri Marquees */
    filter: blur(15px); /* Initially Blurred */
    opacity: 0.3;
    pointer-events: none;
}

.chaos-line {
    font-family: 'Syne', sans-serif;
    font-size: 8vw;
    font-weight: 900;
    white-space: nowrap;
    color: var(--primary);
    line-height: 1;
    display: flex;
}

.row-1 { animation: chaos-left 20s linear infinite; }
.row-2 { animation: chaos-right 25s linear infinite; margin-left: -50%; color: #fff; }
.row-3 { animation: chaos-left 18s linear infinite; }

@keyframes chaos-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes chaos-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* --- Foreground Clarity --- */
.experience-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
}

.main-reveal {
    font-family: 'Syne', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    text-transform: uppercase;
    line-height: 0.9;
    font-weight: 800;
}

.outline-white {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.sub-reveal {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--primary);
    display: block;
    margin-bottom: 20px;
}

.desc-reveal {
    max-width: 500px;
    margin: 40px auto;
    font-weight: 200;
    opacity: 0.7;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Stats Row */
.stat-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    display: block;
    color: var(--primary);
}

.stat-txt {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .chaos-wrapper { transform: rotate(-15deg) scale(1.5); filter: blur(10px); }
    .chaos-line { font-size: 15vw; }
    .stat-grid { gap: 30px; }
    .stat-num { font-size: 2rem; }
}