:root {
    --bg: #030303;
    --accent: #f2ff00;
    --text: #ffffff;
    --muted: #808080;
    --border: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; cursor: none !important; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg); color: var(--text);
    font-family: 'Inter', sans-serif; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

/* Cursor */
.cursor { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; position: fixed; z-index: 10000; pointer-events: none; transform: translate(-50%, -50%); }
.cursor-follower { width: 35px; height: 35px; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; position: fixed; z-index: 9999; pointer-events: none; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, background 0.3s; }

/* Background */
#mainCanvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.mesh-gradient {
    position: fixed; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(circle at 85% 15%, rgba(242, 255, 0, 0.08) 0%, transparent 45%),
                radial-gradient(circle at 15% 85%, rgba(242, 255, 0, 0.05) 0%, transparent 40%);
    filter: blur(100px);
}
.noise-overlay { position: fixed; inset: 0; z-index: 2; pointer-events: none; opacity: 0.04; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200'/%3E"); }

/* Nav */
.premium-nav { display: flex; justify-content: space-between; align-items: center; padding: 25px 6%; position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(3,3,3,0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 24px; height: 24px; color: var(--accent); }
.logo-text { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.15em; }
.logo-text span { font-weight: 400; color: var(--muted); }
.nav-links { display: flex; gap: 35px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; transition: 0.3s; }
.nav-links a:hover { color: var(--text); }
.btn-primary { border: 1px solid var(--border); color: white; padding: 10px 22px; text-decoration: none; font-size: 0.75rem; border-radius: 4px; text-transform: uppercase; font-weight: 600; }

/* Sections */
section { position: relative; padding: 140px 6%; border-bottom: 1px solid var(--border); z-index: 10; }
.sec-label { font-family: 'Space Grotesk'; color: var(--accent); font-size: 0.8rem; text-transform: uppercase; margin-bottom: 15px; }
.sec-title { font-family: 'Space Grotesk'; font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; text-transform: uppercase; line-height: 0.9; letter-spacing: -0.04em; }

/* Hero */
.hero-section { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; border: none; }
.hero-h1 { font-family: 'Space Grotesk'; font-size: clamp(3rem, 8.5vw, 8.5rem); font-weight: 700; line-height: 0.85; letter-spacing: -0.05em; margin-bottom: 30px; }
.highlight { color: var(--accent); text-shadow: 0 0 40px rgba(242, 255, 0, 0.15); }
.hero-sub { color: var(--muted); font-size: 1.2rem; max-width: 600px; margin: 0 auto 50px; font-weight: 300; }
.btn-main { background: white; color: black; padding: 20px 45px; text-decoration: none; font-weight: 700; text-transform: uppercase; border-radius: 4px; }
.badge { display: inline-flex; align-items: center; gap: 10px; border: 1px solid var(--border); padding: 10px 20px; border-radius: 100px; font-size: 0.65rem; margin-bottom: 25px; text-transform: uppercase; background: rgba(255,255,255,0.03); }
.dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); }

/* Experience & Process */
.exp-grid, .process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); margin-top: 60px; }
.exp-item, .step-item { padding: 60px 40px; border-right: 1px solid var(--border); }
.exp-item:last-child, .step-item:last-child { border-right: none; }
.exp-visual { height: 180px; margin-bottom: 40px; }
.exp-visual canvas { width: 100% !important; height: 100% !important; }

/* Services */
.service-row { display: flex; border-top: 1px solid var(--border); padding: 60px 0; }
.row-num { flex: 0 0 10%; font-family: 'Space Grotesk'; color: var(--muted); font-size: 1.2rem; }
.row-content { flex: 1; display: flex; justify-content: space-between; }
.row-title { font-family: 'Space Grotesk'; font-size: 2.2rem; text-transform: uppercase; }
.row-desc { flex: 0 0 40%; color: var(--muted); line-height: 1.6; }

/* Contact Form */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.field { margin-bottom: 35px; }
.field label { display: block; font-size: 0.75rem; color: var(--muted); text-transform: uppercase; margin-bottom: 15px; font-weight: 700; }
.field input, .field select, .field textarea { width: 100%; background: none; border: none; border-bottom: 1px solid var(--border); padding: 15px 0; color: white; font-family: inherit; font-size: 1.1rem; outline: none; }
.field select option { background: #111; color: white; }
.extra-fields { max-height: 0; opacity: 0; overflow: hidden; transition: 0.5s; }
.extra-fields.visible { max-height: 400px; opacity: 1; }
.submit-btn { width: 100%; padding: 25px; background: var(--accent); color: black; border: none; font-weight: 800; text-transform: uppercase; font-size: 1rem; }
.success-msg { display: none; text-align: center; color: var(--accent); font-family: 'Space Grotesk'; font-size: 1.5rem; padding: 40px 0; }

/* Footer */
.footer { padding: 40px 6%; display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--muted); border-top: 1px solid var(--border); text-transform: uppercase; }

/* Adaptive */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .exp-grid, .process-grid, .contact-wrap, .row-content, .service-row { grid-template-columns: 1fr; flex-direction: column; }
    .exp-item, .step-item { border-right: none; border-bottom: 1px solid var(--border); }
    .hero-h1 { font-size: 3.5rem; }
}

/* Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }