*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; cursor: none; }
:root {
    --bg: #000000; --text: #FFFFFF; --text-dim: #888888; --accent: #CCFF00;
    --surface: #111111; --surface-hover: #1A1A1A; --border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif; --font-body: 'Space Grotesk', sans-serif;
}
html { scroll-behavior: smooth; background: var(--bg); color: var(--text); overflow-x: hidden; }
body { font-family: var(--font-body); min-height: 100vh; overflow-x: hidden; }

/* SWEEP EFFECTS */
.color-sweep { transition: all 0.3s ease; }
.color-sweep:not(.outline-text):hover { color: var(--accent) !important; }
.outline-text.color-sweep:hover { -webkit-text-stroke-color: var(--accent) !important; color: transparent !important; }
.highlight-tool { color: var(--accent) !important; }

/* UI BASE */
body::after { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"); pointer-events: none; z-index: 100; }
.cursor-follower { position: fixed; width: 20px; height: 20px; background: var(--accent); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); mix-blend-mode: difference; transition: width 0.3s, height 0.3s; }
#spotlight { position: fixed; width: 600px; height: 600px; background: radial-gradient(circle, rgba(204, 255, 0, 0.08) 0%, transparent 60%); border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); z-index: 0; opacity: 0; transition: opacity 1s; }

nav { position: fixed; top: 0; width: 100%; padding: 30px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 90; mix-blend-mode: difference; }
.logo { font-family: var(--font-heading); font-weight: 900; font-size: 24px; }
.nav-links { display: flex; gap: 40px; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 14px; text-transform: uppercase; }
.contact-btn { background: var(--accent); color: var(--bg); padding: 12px 24px; border-radius: 50px; font-weight: 600; text-decoration: none;}

/* HERO */
.hero { height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 0 5%; position: relative; z-index: 10; }
.huge-title { font-family: var(--font-heading); font-size: clamp(80px, 15vw, 200px); font-weight: 900; line-height: 0.9; text-transform: uppercase; margin: 0; will-change: transform; }
.outline-text { color: transparent; -webkit-text-stroke: 2px var(--border); }
.hero-sub { display: flex; gap: 15px; margin-top: 40px; }
.pill { padding: 8px 20px; border-radius: 100px; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.pill.outline { border: 1px solid var(--border); }
.pill.solid { background: var(--text); color: var(--bg); }
.hero-desc { margin-top: 30px; max-width: 500px; font-size: 18px; line-height: 1.6; color: var(--text-dim); }

.scroll-indicator { position: absolute; bottom: 40px; left: 5%; display: flex; align-items: center; gap: 15px; font-size: 10px; color: var(--text-dim); letter-spacing: 2px; }
.scroll-indicator .line { width: 50px; height: 1px; background: var(--text-dim); animation: stretch 2s infinite ease-in-out; transform-origin: left; }
@keyframes stretch { 0%, 100% { transform: scaleX(0.2); } 50% { transform: scaleX(1); } }

/* GLOBAL HEADINGS */
.section-title { font-family: var(--font-heading); font-size: clamp(40px, 8vw, 100px); font-weight: 900; line-height: 1; text-transform: uppercase; padding: 0 5%; display: block; width: 100%; margin-bottom: 60px; }

/* --- RESTORED: ABOUT & STACK HEADINGS --- */
.lined-header { display: flex; align-items: center; gap: 30px; margin-bottom: 60px; padding: 0 5%; }
.lined-header h2 { font-family: var(--font-heading); color: var(--accent); font-size: clamp(30px, 5vw, 45px); font-weight: 800; text-transform: uppercase; margin: 0; letter-spacing: 1px; }
.line-group { flex-grow: 1; display: flex; align-items: center; }
.line-base { flex-grow: 1; height: 2px; background: #222; }
.line-accent { width: 40px; height: 4px; background: var(--accent); }

/* --- RESTORED: ABOUT SECTION --- */
.about-section { padding: 100px 0 50px 0; position: relative; z-index: 10; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 0 10% 0 5%; }
.about-col:first-child p { color: var(--text-dim); font-size: 24px; line-height: 1.6; font-weight: 400; }
.about-col:last-child p { color: var(--text); font-size: 18px; line-height: 1.8; font-weight: 300; }

/* --- RESTORED: MY STACK SECTION (DARK CARDS) --- */
.stack-section { padding: 50px 0 100px 0; position: relative; z-index: 10; }
.stack-list { display: flex; flex-direction: column; gap: 20px; padding: 0 5%; max-width: 1300px; margin: 0 auto; }
.stack-card { background: var(--surface); color: var(--text); border: 1px solid var(--border); display: flex; align-items: center; padding: 35px 50px; border-radius: 12px; transition: all 0.3s ease; }
.stack-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 10px 30px rgba(204,255,0,0.05); }
.stack-info { flex-grow: 1; }
.stack-info h4 { font-family: var(--font-heading); font-size: 28px; font-weight: 800; margin-bottom: 8px; color: var(--text); letter-spacing: -0.5px; }
.stack-info p { font-size: 16px; font-weight: 500; color: var(--text-dim); margin: 0; }
.stack-divider { width: 1px; height: 60px; background: var(--border); margin: 0 40px; }
.stack-percent { font-family: var(--font-heading); font-size: 55px; font-weight: 800; color: var(--accent); width: 120px; text-align: right; }

/* BRANDS MARQUEE */
.brand-marquee-section { padding: 60px 0; border-bottom: 1px solid var(--border); overflow: hidden; position: relative; z-index: 10; }
.marquee-label { text-align: center; font-size: 10px; color: var(--text-dim); letter-spacing: 3px; margin-bottom: 40px; text-transform: uppercase; }
.brand-marquee { width: 100%; overflow: hidden; white-space: nowrap; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.brand-track { display: flex; align-items: center; width: max-content; animation: scroll-brands 30s linear infinite; }
.logo-card { background: #FFFFFF; height: 80px; width: auto; min-width: 100px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 20px; padding: 15px 30px; }
.logo-card.square-card { padding: 5px 20px; }
.logo-card.square-card img { transform: scale(1.15); }
.logo-card img { height: 100%; width: auto; object-fit: contain; }
.logo-card img.invert-logo { filter: invert(1); }
@keyframes scroll-brands { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* WORKS - NO BORDERS */
.works-section { padding: 120px 0; position: relative; z-index: 10; }
.section-header { width: 100%; display: block; }
.work-container { width: 100%; display: flex; flex-direction: column; gap: 150px; margin-top: 40px; }
.work-item { display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 80px; padding: 0 5%; width: 100%; }
.work-item.reverse { direction: rtl; }
.work-item.reverse > * { direction: ltr; }

/* Pure Image Container */
.work-img-wrapper { 
    width: 100%; 
    height: 600px; 
    overflow: hidden; 
    position: relative; 
    background: transparent; 
    border-radius: 24px; 
    border: none; 
}
.parallax-img { width: 100%; height: 130%; object-fit: cover; transform: translateY(-15%); will-change: transform; }
.work-info h3 { font-family: var(--font-heading); font-size: clamp(40px, 6vw, 90px); font-weight: 900; margin-bottom: 20px; line-height: 1; }
.work-info p { font-size: 18px; color: var(--text-dim); max-width: 480px; line-height: 1.6; }
.work-tags { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.work-tags .tag { font-size: 10px; padding: 6px 12px; border: 1px solid var(--border); border-radius: 100px; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; }
.accent-tag { border-color: var(--accent) !important; color: var(--accent) !important; }

/* GALLERY */
.scroll-gallery-section { padding: 100px 0 50px 0; overflow: hidden; position: relative; z-index: 10; }
.gallery-header { display: flex; flex-direction: column; gap: 15px; margin-bottom: 60px; }
.gallery-header .section-title { margin-bottom: 0; }
.gallery-header .hero-desc { padding: 0 5%; margin-top: 0; max-width: 600px; }
.gallery-marquee { width: 100%; overflow: hidden; white-space: nowrap; margin-bottom: 10px; mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent); }
.gallery-track { display: flex; width: max-content; }
.gallery-set { display: flex; gap: 10px; padding-right: 10px; } 
.track-left { animation: scroll-left 40s linear infinite; }
.track-right { animation: scroll-right 40s linear infinite; }
.gallery-set img { height: 400px; width: auto; border: 1px solid var(--border); border-radius: 0px; object-fit: cover; }
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* ARSENAL */
.toolkit-section { padding: 80px 0; overflow: hidden; position: relative; z-index: 10; }
.toolkit-header { display: block; margin-bottom: 20px; }
.typo-arsenal { display: flex; flex-direction: column; gap: 0px; } 
.arsenal-row { display: flex; white-space: nowrap; gap: 40px; padding: 0 5%; align-items: center; }
.typo-item { font-family: var(--font-heading); font-size: clamp(60px, 12vw, 180px); font-weight: 900; text-transform: uppercase; line-height: 0.85; transition: all 0.4s; }
.typo-item.outline { color: transparent; -webkit-text-stroke: 2px var(--border); }
.typo-item.outline:hover { -webkit-text-stroke-color: var(--accent); color: transparent; transform: scale(1.05) skewX(-5deg); }
.typo-item.solid { color: var(--surface-hover); }
.typo-item.solid:hover { color: var(--accent); transform: scale(1.05) skewX(-5deg); }

/* Fast Panning */
.slide-left { animation: drift-left 8s linear infinite alternate; }
.slide-right { animation: drift-right 8s linear infinite alternate; margin-left: -15vw; }
@keyframes drift-left { 0% { transform: translateX(0); } 100% { transform: translateX(-1000px); } }
@keyframes drift-right { 0% { transform: translateX(-1000px); } 100% { transform: translateX(0); } }

/* EXPERIENCE ACCORDION */
.exp-section { padding: 100px 5%; max-width: 1200px; margin: 0 auto; position: relative; z-index: 10; }
.accordion { border-top: 1px solid var(--border); }
.acc-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.acc-header { display: grid; grid-template-columns: 2fr 1.5fr 1fr auto; align-items: center; padding: 45px 0; cursor: pointer; transition: color 0.3s; }
.acc-header:hover { color: var(--accent); }
.acc-header .company { color: var(--accent); font-weight: 500; font-size: 18px; }
.acc-icon { font-size: 24px; transition: transform 0.4s; }
.acc-item.active .acc-icon { transform: rotate(45deg); color: var(--accent); }
.acc-content { max-height: 0; overflow: hidden; transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.acc-content p { padding-bottom: 40px; color: var(--text-dim); font-size: 17px; max-width: 800px; line-height: 1.7; }

/* FOOTER */
footer { padding: 120px 5% 60px; text-align: center; position: relative; z-index: 10; border-top: 1px solid var(--border); }
.contact-title { margin-bottom: 80px; display: block; line-height: 1; }
.footer-links { display: flex; justify-content: center; gap: 50px; margin-bottom: 100px; flex-wrap: wrap; }
.footer-links a { color: #FFF !important; text-decoration: none !important; font-weight: 700; text-transform: uppercase; font-size: 20px; transition: color 0.3s; z-index: 20; position: relative; }
.footer-links a:hover { color: var(--accent) !important; }
.copyright { display: flex; width: 100%; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 30px; color: var(--text-dim); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* CASE STUDY BUTTON */
.case-study-btn { display: inline-flex; align-items: center; gap: 10px; margin-top: 30px; padding: 12px 28px; border: 1px solid var(--border); border-radius: 50px; color: var(--text); text-decoration: none; font-family: var(--font-heading); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; position: relative; z-index: 10; }
.case-study-btn:hover { border-color: var(--accent); color: var(--bg); background: var(--accent); }

/* ANIMATION */
.reveal { opacity: 0; transform: translateY(80px); transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) { 
    .about-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 5%; }
    .work-item { grid-template-columns: 1fr; gap: 40px; } 
    .work-img-wrapper { height: 450px; } 
    .acc-header { grid-template-columns: 1fr; gap: 15px; }
}

@media (max-width: 768px) {
    .stack-card { flex-direction: column; align-items: flex-start; padding: 30px; gap: 15px; }
    .stack-divider { display: none; }
    .stack-percent { font-size: 40px; align-self: flex-end; margin-top: -30px; }
}