/* ================================
   FLIN024 — Landing Page
   ================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --dark: #111111;
    --gray-dark: #1a1a1a;
    --gray: #2a2a2a;
    --gray-light: #888888;
    --white: #f0f0f0;
    --accent: #4a6cf7;
    --accent-glow: #4a6cf780;
    --neon-blue: #00d4ff;
    --neon-purple: #bb41ff;
    --warm: #ff6b35;
    --gold: #d4a853;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    --font-accent: 'Permanent Marker', cursive;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gray) var(--black);
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
}

::selection {
    background: var(--accent);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 3px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- CUSTOM CURSOR --- */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
}

/* --- NOISE OVERLAY --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* --- LOADER --- */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.3em;
    display: flex;
    gap: 4px;
}

.loader-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: loaderLetter 0.5s forwards;
}

.loader-text span:nth-child(1) { animation-delay: 0.1s; }
.loader-text span:nth-child(2) { animation-delay: 0.2s; }
.loader-text span:nth-child(3) { animation-delay: 0.3s; }
.loader-text span:nth-child(4) { animation-delay: 0.4s; }
.loader-text span:nth-child(5) { animation-delay: 0.5s; color: var(--accent); }
.loader-text span:nth-child(6) { animation-delay: 0.6s; color: var(--accent); }
.loader-text span:nth-child(7) { animation-delay: 0.7s; color: var(--accent); }

@keyframes loaderLetter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--gray);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--white);
    animation: loaderBar 1.8s 0.5s ease-in-out forwards;
}

@keyframes loaderBar {
    to { width: 100%; }
}

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    transition: all 0.4s ease;
    background: transparent;
}

.nav.scrolled {
    padding: 16px 48px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
}

.nav-logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 200;
}

.nav-hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    z-index: 150;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 0.2em;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease, color 0.3s ease;
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }

.mobile-link:hover {
    color: var(--accent);
}

.mobile-menu-footer {
    position: absolute;
    bottom: 40px;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gray-light);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero.loaded .hero-img {
    transform: scale(1);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.1) 30%, rgba(10,10,10,0.6) 70%, rgba(10,10,10,1) 100%),
        linear-gradient(90deg, rgba(10,10,10,0.8) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-tag {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--gray-light);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 2.5s forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(5rem, 18vw, 14rem);
    line-height: 0.85;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(60px);
    animation: titleReveal 1s forwards;
    animation-delay: 2.6s;
}

.title-line:nth-child(2) {
    animation-delay: 2.8s;
}

.title-outline {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
    font-size: clamp(5rem, 20vw, 16rem);
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: rgba(240, 240, 240, 0.7);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 3.2s forwards;
}

.rotate-word {
    color: var(--white);
    font-weight: 700;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    font-family: var(--font-body);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 3.5s forwards;
    background: transparent;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-btn:hover::before {
    left: 0;
}

.cta-btn:hover {
    color: var(--black);
    border-color: var(--white);
}

.cta-btn:hover .cta-arrow {
    transform: translateX(4px) rotate(-45deg);
}

.cta-arrow {
    transition: transform 0.4s ease;
    display: flex;
}

.cta-btn-large {
    padding: 24px 56px;
    font-size: 0.9rem;
    opacity: 1;
    transform: none;
    animation: none;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.8s 3.8s forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--white), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(0.6); }
}

.hero-scroll span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gray-light);
}

.hero-side-text {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--gray-light);
    opacity: 0;
    animation: fadeUp 0.8s 4s forwards;
}

/* --- MARQUEE --- */
.marquee-section {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    background: var(--dark);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.2em;
}

.marquee-dot {
    color: var(--accent);
    font-size: 0.6rem !important;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- SECTION COMMON --- */
.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    padding: 0 48px;
}

.section-number {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.15em;
}

.section-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

/* --- FEED SECTION --- */
.feed {
    padding: 80px 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

/* Fullscreen video blocks (skate) */
.feed-fullscreen {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.feed-fullscreen video,
.feed-fullscreen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feed-fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.55);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feed-fullscreen:hover .feed-fullscreen-overlay {
    opacity: 1;
}

.feed-fullscreen-text {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.8vw, 2rem);
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.15;
    max-width: 90%;
    padding: 14px 20px;
    background: rgba(60, 60, 60, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 4px;
}

/* Regular feed blocks (moda, show) */
.feed-block {
    padding: 0 48px;
    margin-bottom: 100px;
}

.feed-media {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.feed-media-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.feed-video-wrap,
.feed-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: var(--dark);
}

.feed-media:not(.feed-media-duo) .feed-video-wrap,
.feed-media:not(.feed-media-duo) .feed-img-wrap {
    max-width: 500px;
    margin: 0 auto;
}

.feed-video-wrap video,
.feed-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.5s ease, transform 0.8s ease;
}

.feed-video-wrap:hover video,
.feed-img-wrap:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.feed-caption {
    margin-top: 24px;
    display: flex;
    align-items: baseline;
    gap: 20px;
}

.feed-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    color: var(--white);
    padding: 5px 14px;
    border: 1px solid rgba(255,255,255,0.5);
    white-space: nowrap;
    flex-shrink: 0;
}

.feed-text {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 300;
    line-height: 1.4;
    color: rgba(240, 240, 240, 0.85);
    letter-spacing: 0.02em;
}

/* --- MANIFESTO --- */
.manifesto {
    padding: 120px 48px;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.manifesto::before {
    content: 'FLIN024';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: clamp(8rem, 20vw, 20rem);
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.02);
    white-space: nowrap;
    pointer-events: none;
}

.manifesto-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.manifesto-quote {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 0.5;
    color: var(--accent);
    margin-bottom: 20px;
}

.manifesto-text {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.3;
    letter-spacing: 0.05em;
}

.manifesto-text .highlight {
    color: var(--accent);
    font-family: var(--font-accent);
}

.manifesto-author {
    margin-top: 40px;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: var(--gray-light);
}

/* --- CONTATO --- */
.contato {
    padding: 120px 0;
}

.contato-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.contato-heading {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    letter-spacing: 0.05em;
}

.contato-outline {
    color: var(--accent);
}

.contato-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-light);
    font-weight: 300;
    max-width: 500px;
}

.contato-socials {
    display: flex;
    gap: 32px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-link:hover {
    color: var(--accent);
}

.social-link:hover::after {
    transform: scaleX(1);
}

/* --- FOOTER --- */
.footer {
    padding: 40px 48px 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}

.footer-logo span {
    color: var(--accent);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gray-light);
}

.footer-tagline {
    margin-top: 4px;
    color: var(--accent) !important;
    font-weight: 600;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.05);
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .feed-block {
        padding: 0 24px;
    }

    .feed-fullscreen {
        height: 85vh;
    }
    
    .section-header {
        padding: 0 24px;
    }
    
    .nav {
        padding: 20px 24px;
    }
    
    .nav.scrolled {
        padding: 14px 24px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .hero-side-text {
        display: none;
    }
    
    .hero-content {
        margin-top: 60px;
    }
    
    .feed {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .feed-fullscreen {
        height: 70vh;
        min-height: 400px;
    }
    
    .feed-fullscreen-overlay {
        opacity: 1;
        background: linear-gradient(0deg, rgba(10,10,10,0.6) 0%, transparent 50%);
        justify-content: flex-end;
        padding-bottom: 40px;
    }
    
    .feed-fullscreen-text {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
        padding: 14px 20px;
    }
    
    .feed-media-duo {
        grid-template-columns: 1fr 1fr;
        gap: 3px;
    }
    
    .feed-caption {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }
    
    .feed-label {
        align-self: flex-start;
    }
    
    .manifesto {
        padding: 80px 24px;
    }
    
    .contato {
        padding: 80px 0;
    }
    
    .footer {
        padding: 40px 24px 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .cta-btn {
        padding: 16px 32px;
        font-size: 0.7rem;
    }
    
    .cta-btn-large {
        padding: 20px 40px;
        font-size: 0.8rem;
    }
    
    .title-outline {
        -webkit-text-stroke: 1.5px var(--white);
    }
    
    .contato-socials {
        gap: 20px;
    }

    /* Hide custom cursor on touch devices */
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(4rem, 22vw, 8rem);
    }
    
    .title-outline {
        font-size: clamp(4.5rem, 26vw, 10rem);
    }
    
    .section-header {
        padding: 0 16px;
    }
    
    .feed-block {
        padding: 0 12px;
    }
    
    .feed-fullscreen {
        height: 65vh;
        min-height: 360px;
    }
    
    .nav {
        padding: 16px;
    }
    
    .manifesto {
        padding: 60px 16px;
    }
    
    .contato-heading {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
}

/* --- GLITCH EFFECT (hover on title) --- */
.hero-title:hover .title-line:first-child {
    animation: glitch 0.3s infinite;
}

@keyframes glitch {
    0% { text-shadow: 2px 0 var(--accent), -2px 0 var(--warm); }
    25% { text-shadow: -2px 0 var(--accent), 2px 0 var(--warm); }
    50% { text-shadow: 2px 2px var(--accent), -2px -2px var(--warm); }
    75% { text-shadow: -2px 2px var(--accent), 2px -2px var(--warm); }
    100% { text-shadow: 2px 0 var(--accent), -2px 0 var(--warm); }
}

/* --- PARALLAX SMOOTHING --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
