/* Palette: Black, White, Neon Yellow */
:root {
    --bg: #000000;
    --text: #FFFFFF;
    --neon: #CCFF00;
    --dark-grey: #1a1a1a;
    
    --font-display: 'Teko', sans-serif;
    --font-mono: 'Roboto Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none; } /* Custom cursor logic */

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-mono);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline { position: fixed; top: 0; left: 0; transform: translate(-50%, -50%); border-radius: 50%; z-index: 9999; pointer-events: none; }
.cursor-dot { width: 8px; height: 8px; background-color: var(--neon); }
.cursor-outline { width: 40px; height: 40px; border: 1px solid var(--neon); transition: width 0.2s, height 0.2s; }

body:hover .cursor-outline { width: 40px; height: 40px; }
a:hover ~ .cursor-outline { width: 60px; height: 60px; background: rgba(204, 255, 0, 0.1); }

.container { width: 90%; max-width: 1400px; margin: 0 auto; }
.section-padding { padding: 120px 0; }
a { text-decoration: none; color: inherit; cursor: none; }
img { max-width: 100%; height: auto; display: block; filter: grayscale(100%); transition: 0.3s; }
img:hover { filter: grayscale(0%); }

/* Header */
.header { padding: 30px 0; position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); border-bottom: 1px solid #333; }
.header-flex { display: flex; justify-content: space-between; align-items: flex-start; }

.logo { font-family: var(--font-display); font-size: 2.5rem; line-height: 0.8; font-weight: 700; letter-spacing: 1px; }
.hollow { -webkit-text-stroke: 1px var(--text); color: transparent; }

.nav a { margin-left: 40px; font-weight: 700; font-size: 1.1rem; position: relative; }
.nav a:hover { color: var(--neon); }
.nav a::after { content: ''; position: absolute; width: 0; height: 2px; background: var(--neon); bottom: -5px; left: 0; transition: 0.3s; }
.nav a:hover::after { width: 100%; }

.mobile-toggle { display: none; background: transparent; border: 1px solid var(--text); color: var(--text); padding: 5px 15px; font-family: var(--font-mono); cursor: none; }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--neon); z-index: 2000; padding: 50px; transition: 0.2s; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.mobile-menu.active { right: 0; }
.close-btn { position: absolute; top: 30px; right: 30px; background: none; border: 2px solid var(--bg); font-weight: 700; padding: 10px 20px; font-family: var(--font-mono); font-size: 1.2rem; cursor: none; color: var(--bg); }
.mobile-menu a { display: block; font-family: var(--font-display); font-size: 4rem; color: var(--bg); line-height: 1; margin-bottom: 20px; text-transform: uppercase; }
.mobile-menu a:hover { -webkit-text-stroke: 2px var(--bg); color: transparent; }

@media (max-width: 900px) {
    .nav { display: none; }
    .mobile-toggle { display: block; }
}

/* Hero */
.hero { height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; border-bottom: 1px solid #333; }
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-family: var(--font-display); font-size: 8rem; line-height: 0.85; margin-bottom: 30px; text-transform: uppercase; }
.neon-highlight { color: var(--neon); }
.hero-sub { font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 50px; color: #ccc; }

.btn-block { background: var(--text); color: var(--bg); padding: 20px 60px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; display: inline-block; transition: 0.3s; }
.btn-block:hover { background: var(--neon); color: var(--bg); transform: skewX(-10deg); }

/* Marquee */
.marquee-container { position: absolute; top: 15%; width: 100%; overflow: hidden; transform: rotate(-5deg) scale(1.1); opacity: 0.1; z-index: 0; pointer-events: none; }
.marquee { white-space: nowrap; animation: marquee 20s linear infinite; font-family: var(--font-display); font-size: 6rem; color: var(--text); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Manifesto */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.big-text h2 { font-family: var(--font-display); font-size: 5rem; line-height: 0.9; }
.desc-text p { margin-bottom: 20px; font-size: 1.1rem; }
.tag-list { list-style: none; display: flex; gap: 20px; margin-top: 30px; }
.tag-list li { border: 1px solid #333; padding: 5px 15px; font-size: 0.9rem; color: var(--neon); }

/* Clients Strip */
.clients-strip { border-top: 1px solid #333; border-bottom: 1px solid #333; padding: 40px 0; background: var(--dark-grey); }
.clients-strip p { font-family: var(--font-mono); font-size: 0.8rem; margin-bottom: 20px; color: #666; }
.logo-grid { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 2rem; color: #555; text-transform: uppercase; }

/* Services Page */
.page-title { font-family: var(--font-display); font-size: 6rem; margin-bottom: 60px; line-height: 0.8; border-bottom: 1px solid var(--neon); display: inline-block; }
.service-list { display: flex; flex-direction: column; }
.service-item { display: flex; align-items: flex-start; border-top: 1px solid #333; padding: 40px 0; transition: 0.3s; }
.service-item:last-child { border-bottom: 1px solid #333; }
.service-item:hover { background: #111; padding-left: 20px; }
.service-item .num { font-family: var(--font-display); font-size: 2rem; color: var(--neon); margin-right: 40px; }
.s-content h3 { font-family: var(--font-display); font-size: 3rem; margin-bottom: 10px; line-height: 1; }
.s-content p { max-width: 500px; color: #aaa; }
.arrow { margin-left: auto; font-size: 2rem; color: var(--neon); }

/* Portfolio Page */
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.work-card { margin-bottom: 40px; }
.work-img { position: relative; overflow: hidden; margin-bottom: 20px; }
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(204, 255, 0, 0.9); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.work-img:hover .overlay { opacity: 1; }
.overlay span { color: var(--bg); font-family: var(--font-display); font-size: 2rem; font-weight: 700; border: 2px solid var(--bg); padding: 10px 20px; }
.work-meta h3 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 5px; }
.work-meta span { color: var(--neon); font-size: 0.9rem; }

/* Contact Page */
.contact-split { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.c-text h1 { font-family: var(--font-display); font-size: 5rem; line-height: 0.9; margin-bottom: 40px; color: var(--neon); }
.details p { font-size: 1.1rem; margin-bottom: 10px; border-bottom: 1px solid #333; padding-bottom: 5px; display: inline-block; }

.brutal-form .form-row { margin-bottom: 30px; }
.brutal-form input, .brutal-form select, .brutal-form textarea { width: 100%; background: transparent; border: none; border-bottom: 2px solid #333; color: var(--text); padding: 15px 0; font-family: var(--font-mono); font-size: 1.2rem; border-radius: 0; }
.brutal-form input:focus, .brutal-form select:focus, .brutal-form textarea:focus { border-bottom-color: var(--neon); outline: none; }
.full { width: 100%; }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-family: var(--font-display); font-size: 4rem; color: var(--text); }
.line { width: 100%; height: 1px; background: #333; margin: 30px 0; }

/* Footer */
.footer { padding: 80px 0 20px; border-top: 1px solid #333; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.f-item h4 { font-family: var(--font-display); font-size: 1.5rem; color: var(--neon); margin-bottom: 20px; }
.f-item a { display: block; margin-bottom: 10px; transition: 0.3s; }
.f-item a:hover { color: var(--neon); padding-left: 10px; }
.copyright { text-align: center; font-size: 0.8rem; color: #555; }

@media (max-width: 900px) {
    .hero h1 { font-size: 4rem; }
    .grid-2, .portfolio-grid, .contact-split, .footer-grid { grid-template-columns: 1fr; }
    .marquee-container { display: none; }
    .hero-content { padding-top: 50px; }
}