:root { --primary: #636aaf; --secondary: #1b1b1b; --white: #ffffff; --gray-bg: #f8f8fa; --transition-reveal: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); --transition-standard: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.5s cubic-bezier(0.16, 1, 0.3, 1); --transition-page: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.6s ease; }
* { margin: 0; padding: 0; box-sizing: border-box; cursor: none !important; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; background-color: var(--white); color: var(--secondary); overflow-x: hidden; line-height: 1.6; transition: var(--transition-page); }
::selection { background: var(--primary); color: #fff; }
.page-exit-active { transform: translateX(100vw); opacity: 0; }

.fab, .fas, .far { display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; -webkit-font-smoothing: antialiased; line-height: 1; }
.fab { font-family: 'Font Awesome 6 Brands'; font-weight: 400; }
.fas { font-family: 'Font Awesome 6 Free'; font-weight: 900; }
.far { font-family: 'Font Awesome 6 Free'; font-weight: 400; }
.fa-linkedin-in::before { content: "\f08c"; }
.fa-instagram::before { content: "\f16d"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-chevron-down::before { content: "\f078"; }
.fa-paint-brush::before { content: "\f1fc"; }
.fa-circle::before { content: "\f111"; }
.fa-arrows-alt-h::before { content: "\f337"; }
.fa-times::before { content: "\f00d"; }
.fa-arrow-left::before { content: "\f060"; }

#cursor { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; position: fixed; pointer-events: none; z-index: 10000000; }
#cursor-follower { width: 35px; height: 35px; border: 1.5px solid var(--primary); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999999; transition: transform 0.1s ease-out, background-color 0.2s; mix-blend-mode: difference; }
#cursor-follower.hover { background-color: #fff; transform: scale(1.3); }
body.touch-device #cursor, body.touch-device #cursor-follower { display: none; }
.reveal { opacity: 0; transform: translateY(150px) scale(0.95); transition: var(--transition-reveal); will-change: transform, opacity; }
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }
nav { position: fixed; top: 0; width: 100%; padding: 25px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 1000; transition: var(--transition-standard); }
nav.scrolled { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(15px); padding: 15px 5%; border-bottom: 1px solid rgba(0,0,0,0.05); }
.nav-logo-container { height: 60px; overflow: hidden; }
.nav-logo { height: 100%; transform: translateY(100%); transition: var(--transition-standard); }
nav.scrolled .nav-logo { transform: translateY(0); }
.nav-links a { text-decoration: none; color: var(--secondary); font-weight: 700; margin-left: 30px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-links .nav-cta { background: var(--primary); color: #fff; border: none; border-radius: 50px; padding: 8px 22px; box-shadow: 0 4px 18px rgba(99,106,175,0.35); transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s cubic-bezier(0.16,1,0.3,1); position: relative; overflow: hidden; animation: ctaPulse 3.5s ease-in-out infinite; }
.nav-links .nav-cta::after { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.28) 50%, transparent 80%); transform: translateX(-120%) skewX(-20deg); animation: navShimmer 4s ease-in-out 1s infinite; pointer-events: none; }
@keyframes navShimmer { 0%, 60%, 100% { transform: translateX(-120%) skewX(-20deg); } 80% { transform: translateX(160%) skewX(-20deg); } }
@keyframes ctaPulse { 0%, 100% { box-shadow: 0 4px 18px rgba(99,106,175,0.35); } 50% { box-shadow: 0 4px 26px rgba(99,106,175,0.6), 0 0 0 3px rgba(99,106,175,0.12); } }
.nav-links .nav-cta:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(99,106,175,0.6); animation: none; }
.mobile-overlay .nav-cta { color: var(--primary) !important; font-size: 1.8rem !important; }
.menu-toggle { display: none; align-items: center; gap: 10px; z-index: 1100; cursor: none !important; }   
.menu-toggle-text { font-family: 'Lexend', sans-serif; font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.menu-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; transition: 0.3s; }  
.mobile-overlay { position: fixed; inset: 0; background: var(--white); z-index: 1050; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: translateY(-100%); transition: var(--transition-standard); }
.mobile-overlay.open { transform: translateY(0); }
.mobile-overlay a { font-family: 'Lexend', sans-serif; font-size: 2.5rem; text-transform: uppercase; text-decoration: none; color: var(--secondary); margin: 10px 0; font-weight: 900; letter-spacing: -2px; }      
.close-menu-btn { margin-top: 50px; font-size: 2.5rem; color: var(--primary); cursor: none !important; }  
.sticky-socials { position: fixed; left: 30px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 20px; z-index: 999999; transition: color 0.3s ease; }        
.sticky-socials a { color: inherit; font-size: 1.3rem; opacity: 0.4; transition: 0.3s; text-decoration: none; display: flex; justify-content: center; align-items: center; width: 30px; height: 30px; }
.sticky-socials a:hover { opacity: 1; color: var(--primary) !important; transform: scale(1.2); }
.socials-dark { color: var(--secondary); }
.socials-light { color: var(--white); }
header#home { position: relative; height: 100vh; width: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; overflow: hidden; user-select: none; }       
#paint-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.parallax-group { position: relative; z-index: 2; will-change: transform; display: flex; flex-direction: column; align-items: center; }
.hero-logo-large { width: 300px; margin-bottom: 30px; }
.hero-title { font-family: 'Lexend', sans-serif; font-size: clamp(3rem, 12vw, 8rem); line-height: 0.85; text-transform: uppercase; letter-spacing: -4px; }
.hero-title span { color: var(--primary); }
.paint-hint { position: absolute; bottom: 40px; right: 5%; z-index: 4; display: flex; align-items: center; gap: 10px; color: var(--primary); font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.55; background: none; border: 1px solid transparent; padding: 10px 14px; border-radius: 50px; transition: opacity 0.3s, background 0.45s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.45s cubic-bezier(0.4, 0, 0.2, 1), gap 0.45s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.1s; overflow: hidden; }
.paint-hint:hover { opacity: 1; }
.paint-hint:active { transform: scale(0.93); }
.hint-text { white-space: nowrap; max-width: 200px; overflow: hidden; transition: max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease; }
.hint-icon-wrap { display: grid; place-items: center; flex-shrink: 0; }
.hint-brush { grid-area: 1 / 1; font-size: 1rem; transition: opacity 0.25s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.hint-close { grid-area: 1 / 1; font-size: 1rem; opacity: 0; transform: rotate(-90deg) scale(0.2); transition: opacity 0.35s ease 0.15s, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s; }
.paint-hint.draw-active { opacity: 1; background: rgba(99, 106, 175, 0.12); border-color: rgba(99, 106, 175, 0.25); gap: 0; padding: 10px; justify-content: center; }
.paint-hint.draw-active .hint-text { max-width: 0; opacity: 0; }
.paint-hint.draw-active .hint-brush { opacity: 0; transform: rotate(135deg) scale(0.2); }
.paint-hint.draw-active .hint-close { opacity: 1; transform: rotate(0deg) scale(1); }
.scroll-down { position: absolute; bottom: 40px; left: 0; right: 0; margin: 0 auto; width: fit-content; color: var(--primary); font-size: 1.5rem; text-decoration: none; z-index: 4; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 40% {transform: translateY(-10px);} 60% {transform: translateY(-5px);} }
.about-section { padding: 80px 10%; background: var(--secondary); color: white; max-width: 100%; }       
.about-img { width: 100%; border-radius: 15px; box-shadow: 20px 20px 0px var(--primary); }
.about-text { max-width: 900px; margin: 0 auto; }
.about-text h2 { font-family: 'Lexend', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 25px; }
.about-text p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 30px; }
.skills-container { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.skill-bubble { padding: 8px 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 50px; font-weight: 600; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; transition: var(--transition-standard); backdrop-filter: blur(5px); display: inline-flex; align-items: center; gap: 7px; }
.skill-icon { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.65; transition: opacity 0.3s ease; }
.skill-bubble:hover .skill-icon { opacity: 1; }
.skill-bubble:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(99, 106, 175, 0.4); color: white; }
.portfolio-section { padding: 100px 10%; position: relative; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.portfolio-card { position: relative; border-radius: 15px; overflow: hidden; height: 380px; background: #1a1a1a; cursor: none !important; transition: var(--transition-standard); }
.portfolio-card--featured { grid-column: auto; height: 380px; }
.portfolio-card:hover { transform: translateY(-10px); }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; transition: 0.5s; }     
.portfolio-card:hover img { opacity: 0.4; transform: scale(1.05); }
.portfolio-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 30px 28px; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 70%, transparent 100%); transform: translateY(12px); opacity: 0; transition: opacity 0.4s ease, transform 0.4s ease; display: flex; flex-direction: column; justify-content: flex-end; }
.portfolio-card:hover .portfolio-info { transform: translateY(0); opacity: 1; }
.portfolio-info p { color: var(--primary); font-weight: 700; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 6px; }
.portfolio-info h3 { font-family: 'Lexend', sans-serif; font-size: 1.8rem; color: white; font-weight: 900; line-height: 1.1; }
.project-modal { cursor: none !important; position: fixed; inset: 0; background: rgba(255, 255, 255, 0.95); z-index: 2000; display: none; opacity: 0; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); overflow-y: auto; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.project-modal.active { display: block; opacity: 1; }
.modal-header { position: sticky; top: 0; width: 100%; padding: 30px 5%; display: flex; justify-content: flex-end; z-index: 10; }
.close-modal { color: var(--secondary); cursor: none !important; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; background: var(--gray-bg); border-radius: 50%; transition: 0.3s; }
.close-modal:hover { background: var(--primary); color: white; transform: rotate(90deg); }
.modal-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; padding: 0 5% 100px; max-width: 1600px; margin: 0 auto; }
.modal-images { display: flex; flex-direction: column; gap: 40px; }
.browser-mockup { width: 100%; background: #fff; border-radius: 10px; box-shadow: 0 30px 60px rgba(0,0,0,0.12); overflow: hidden; border: 1px solid #eee; }
.browser-top { height: 35px; background: #f1f1f1; display: flex; align-items: center; padding: 0 15px; gap: 8px; }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; background: #ddd; }
.browser-screen { height: 600px; overflow-y: scroll; position: relative; scrollbar-width: none; }
.browser-screen::-webkit-scrollbar { display: none; }
.browser-screen img { width: 100%; display: block; }
.modal-info { position: sticky; top: 150px; height: fit-content; }
.modal-info h2 { font-family: 'Lexend', sans-serif; font-size: 3.5rem; margin-bottom: 20px; line-height: 1; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.modal-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--primary); border: 1px solid var(--primary); padding: 5px 12px; border-radius: 4px; }
.modal-desc { font-size: 1.1rem; opacity: 0.8; margin-bottom: 40px; }
.modal-tech-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; border-top: 1px solid #eee; padding-top: 40px; }
.modal-tech-list li { font-weight: 700; font-size: 0.9rem; color: var(--secondary); display: flex; align-items: center; gap: 10px; }
.flipbook-wrapper { width: 100%; display: flex; flex-direction: column; align-items: center; padding: 40px; background: transparent; border-radius: 15px; min-height: 85vh; position: relative; }
#magazine-viewer { width: 100%; display: block; margin: 0 auto; opacity: 0; transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1); max-height: 85vh; }
#magazine-viewer.visible { opacity: 1; }
.page { width: 100%; height: 100%; background-color: white; overflow: hidden; box-shadow: 0 0 40px rgba(0,0,0,0.15); }
.page-content { width: 100%; height: 100%; display: center; justify-content: center; align-items: center; background: white; }
.page-content img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.flip-hint { text-align: center; font-size: 0.7rem; color: var(--primary); margin-top: 35px; text-transform: uppercase; letter-spacing: 2px; font-weight: 800; opacity: 0.5; display: none; }
.flip-loader { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 5; width: 100%; }
.loader-bar-container { width: 180px; height: 1px; background: rgba(99, 106, 175, 0.1); overflow: hidden; margin-top: 20px; }
#flip-progress-bar { width: 0%; height: 100%; background: var(--primary); transition: width 0.5s ease; }  
#load-progress-text { font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 0.65rem; color: var(--primary); letter-spacing: 4px; opacity: 0.6; }
#load-progress { font-family: 'Lexend', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--secondary); margin-top: 8px; opacity: 0.9; }

.cv-section { padding: 100px 10%; background: var(--gray-bg); }
.cv-row { display: grid; grid-template-columns: 250px 1fr; padding: 60px 0; border-bottom: 1px solid #ddd; }
.cv-row:first-child { padding-top: 0; }
.cv-row:last-child { border-bottom: none; }
.cv-date { font-family: 'Lexend', sans-serif; color: var(--primary); font-weight: 800; font-size: 1.1rem; }
.cv-info h3 { font-family: 'Lexend', sans-serif; font-size: 2.5rem; line-height: 1.1; margin-bottom: 5px; }
.cv-info h4 { font-size: 1.3rem; font-style: italic; opacity: 0.6; font-weight: 400; margin-bottom: 25px; }
.cv-info ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.cv-info li::before { font-family: 'Font Awesome 6 Free'; font-weight: 900; content: "\f061"; color: var(--primary); margin-right: 10px; font-size: 0.8rem; }
footer { background: var(--secondary); color: white; padding: 150px 10% 40px; text-align: center; }       
.footer-cta h2 { font-family: 'Lexend', sans-serif; font-size: clamp(2.5rem, 8vw, 5.5rem); margin-bottom: 50px; }
.cta-button { display: inline-block; padding: 22px 60px; background: var(--primary); color: white; text-decoration: none; border-radius: 50px; font-family: 'Lexend', sans-serif; font-size: 1.3rem; transition: 0.4s; }
.cta-button:hover { transform: scale(1.05); box-shadow: 0 10px 40px rgba(99, 106, 175, 0.4); }
.footer-social-links { margin-top: 40px; display: flex; justify-content: center; gap: 30px; }
.footer-social-links a { color: var(--white); font-weight: 700; text-transform: uppercase; text-decoration: none; font-size: 0.9rem; letter-spacing: 1px; transition: 0.3s; }
.footer-social-links a:hover { color: var(--primary); }
.footer-bottom { margin-top: 100px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; opacity: 0.4; font-size: 0.85rem; align-items: center; }
.footer-bottom > div:first-child { display: flex; gap: 5px; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: white; text-decoration: none; transition: 0.3s; }
.footer-legal-links a:hover { color: var(--primary); }

.nav-back-link { text-decoration: none; color: var(--secondary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; transition: color 0.3s; }
.nav-back-link:hover { color: var(--primary); }
.legal-content { padding: 200px 10% 150px; max-width: 1200px; margin: 0 auto; }
.legal-content h1 { font-family: 'Lexend', sans-serif; font-size: clamp(3rem, 10vw, 6rem); line-height: 0.85; text-transform: uppercase; letter-spacing: -4px; margin-bottom: 80px; }
.legal-content h1 span { color: var(--primary); }
.legal-content h2 { font-family: 'Lexend', sans-serif; font-size: 1.8rem; margin-top: 60px; margin-bottom: 25px; color: var(--primary); }
.legal-content h3 { font-family: 'Lexend', sans-serif; font-size: 1.2rem; margin-top: 35px; margin-bottom: 15px; color: var(--secondary); }
.legal-content p { font-size: 1.15rem; opacity: 0.8; margin-bottom: 20px; max-width: 900px; }
.legal-content ul { list-style: none; margin-bottom: 30px; }
.legal-content li { font-size: 1.15rem; opacity: 0.8; margin-bottom: 12px; padding-left: 25px; position: relative; }
.legal-content li::before { content: '\f111'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--primary); position: absolute; left: 0; font-size: 0.4rem; top: 10px; }
.legal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 60px; }    
.error-section { height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 10%; }
.error-code { font-family: 'Lexend', sans-serif; font-size: clamp(5rem, 20vw, 15rem); line-height: 0.8; letter-spacing: -10px; color: var(--secondary); opacity: 0.05; position: absolute; z-index: -1; }
.error-content h1 { font-family: 'Lexend', sans-serif; font-size: clamp(2.5rem, 8vw, 5rem); text-transform: uppercase; letter-spacing: -3px; margin-bottom: 20px; line-height: 1; }
.error-content h1 span { color: var(--primary); }
.error-content p { font-size: 1.2rem; opacity: 0.6; margin-bottom: 40px; max-width: 500px; }

@media (max-width: 1100px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .modal-content { grid-template-columns: 1fr; gap: 40px; padding: 0 5% 50px; }
    .modal-info { position: relative; top: 0; order: -1; padding-bottom: 20px; border-bottom: 1px solid #eee; }
    .modal-info h2 { font-size: 2.2rem; }
    .modal-tech-list { grid-template-columns: 1fr 1fr; }
    .flipbook-wrapper { padding: 20px 0; min-height: 50vh; width: 100%; }
    #magazine-viewer { max-height: 60vh; }
    .scroll-down { bottom: 80px; } .paint-hint { opacity: 0.75; background: rgba(99, 106, 175, 0.06); border: 1px solid rgba(99, 106, 175, 0.15); border-radius: 50px; }
}

@media (max-width: 1000px) {
    * { cursor: auto !important; }
    #cursor, #cursor-follower { display: none; }
    .nav-links, .sticky-socials { display: none; }
    .menu-toggle { display: flex; }
    .about-section, .cv-row { grid-template-columns: 1fr; gap: 40px; }
    .cv-info ul { grid-template-columns: 1fr; }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-card {
        height: 300px;
        border-radius: 20px;
    }
    .portfolio-card--featured {
        height: 300px;
    }

    .portfolio-card .portfolio-info { opacity: 1; transform: translateY(0); }
    .portfolio-card .portfolio-info h3 { font-size: 1.5rem; }
    .portfolio-card img { opacity: 0.4; transform: scale(1.05); }

    .footer-bottom { flex-direction: column; gap: 20px; align-items: center; }
    .footer-bottom > div:first-child { display: block; text-align: center; }
    .footer-legal-links { margin-top: 15px; }

    .legal-content { padding-top: 150px; }
    .legal-content h1 { font-size: clamp(2.5rem, 7.5vw, 5rem); }
    .footer-legal-links { display: flex; flex-direction: row; gap: 10px; margin-top: 15px; align-items: center; }
    .footer-legal-links a:not(:last-child)::after { content: '|'; margin-left: 10px; color: var(--white); opacity: 0.4; }
    .footer-legal-links a { margin: 0; }

    .parallax-group { top: -10px; }
}
.section-title { font-family: 'Lexend', sans-serif; font-size: 3.5rem; margin-bottom: 60px; }
.no-select { user-select: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.about-cta { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 40px; color: var(--primary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; text-decoration: none; border-bottom: 1.5px solid var(--primary); padding-bottom: 4px; transition: gap 0.3s ease, opacity 0.3s; }
.about-cta:hover { gap: 16px; opacity: 0.7; }
.about-cta svg { flex-shrink: 0; }
.stats-bar { display: flex; justify-content: center; background: var(--primary); }
.stat-item { flex: 1; text-align: center; color: #fff; padding: 50px 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Lexend', sans-serif; font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; display: block; line-height: 1; }
.stat-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; margin-top: 10px; display: block; font-weight: 700; }
.marquee-wrap { overflow: hidden; background: var(--secondary); padding: 16px 0; }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: marquee 22s linear infinite; font-family: 'Lexend', sans-serif; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: rgba(255,255,255,0.3); white-space: nowrap; }
.marquee-dot { color: var(--primary); opacity: 0.7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
@media (max-width: 1000px) { .stats-bar { flex-wrap: wrap; } .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); } .stat-item:nth-child(even) { border-bottom: 1px solid rgba(255,255,255,0.12); } .stat-item:nth-last-child(-n+2) { border-bottom: none; } }
