:root {
    --bg-dark: #070707;
    --text-light: #f5f5f5;
    --text-dim: #666666;
    --accent: #ffffff;
    --accent-color: #00ff88;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-scroll-container] { will-change: transform; }

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
}

/* Grain Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: #000;
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preloader-content {
    display: flex; flex-direction: column; align-items: center; gap: 2rem;
}
.preloader-logo {
    width: 80px; filter: invert(1); animation: pulse 2s infinite ease-in-out;
}
.preloader-counter {
    font-size: 4rem; font-weight: 700; color: var(--text-dim);
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Custom Cursor */
.cursor {
    position: fixed; top: 0; left: 0;
    width: 15px; height: 15px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; z-index: 999999;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s;
}
.cursor.active { width: 60px; height: 60px; }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 1.5rem 4rem;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    background: rgba(3, 3, 3, 0.85); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo { height: 35px; filter: invert(1); }
.nav-links { display: flex; gap: 3rem; align-items: center; }
.nav-item {
    color: var(--accent); text-decoration: none; font-size: 1rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
}
.cta-nav {
    border: 1px solid var(--accent); padding: 0.5rem 1rem; border-radius: 20px;
}

/* Mobile Menu */
.hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: none; z-index: 1002;
}
.hamburger div {
    width: 25px; height: 2px; background: var(--accent); transition: 0.3s;
}
.mobile-menu {
    position: fixed; top: -100vh; left: 0; width: 100%; height: 100vh;
    background: #050505; z-index: 999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 2rem; transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { top: 0; }
.mobile-nav-item {
    color: var(--accent); text-decoration: none; font-size: 2rem; font-weight: 700; text-transform: uppercase;
}

/* Hero Section */
.hero {
    position: relative; height: 100vh; width: 100vw;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    overflow: hidden;
}
.hero-centerpiece {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; max-width: 800px; opacity: 0.12; z-index: 0; pointer-events: none;
}
.symbol-bg {
    width: 100%; height: auto; filter: invert(1);
    animation: autoSpin 60s linear infinite;
}
@keyframes autoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.hero-text-wrapper {
    position: relative; z-index: 2; display: flex; flex-direction: column;
    align-items: center; width: 100%;
}
.hero-title {
    font-size: clamp(4rem, 12vw, 15rem); font-weight: 900; line-height: 0.9;
    white-space: nowrap; text-transform: uppercase; color: var(--text-light);
}
.hero-title.left-text { transform: translateX(-10%); }
.hero-title.right-text { transform: translateX(10%); }
.scroll-indicator {
    position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 1rem;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px; z-index: 5;
}
.scroll-indicator .line {
    width: 2px; height: 50px; background: linear-gradient(to bottom, var(--text-dim) 50%, transparent 50%);
    background-size: 100% 200%; animation: lineDown 2s ease infinite;
}

/* Trust Marquee & General Marquees */
.trust-marquee, .marquee-section {
    padding: 2rem 0; background-color: var(--bg-dark);
    color: var(--text-dim); overflow: hidden; display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee-section { background-color: var(--accent-color); color: #000; padding: 4rem 0; }
.marquee-inner { display: flex; width: max-content; }
.marquee-part {
    font-size: 1.2rem; font-weight: 600; text-transform: uppercase; padding: 0 1rem; white-space: nowrap;
}
.marquee-section .marquee-part { font-size: 4rem; font-weight: 900; }
.client-logos span { margin: 0 2rem; color: #fff; opacity: 0.5; }

/* Visual Break */
.visual-break { height: 120vh; width: 100vw; position: relative; overflow: hidden; }
.parallax-media {
    position: absolute; top: -20%; left: 0; width: 100%; height: 140%;
    display: flex; justify-content: center; align-items: center;
}
.media-placeholder {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #050505 0%, #151515 50%, #0a0a0a 100%);
    background-size: 400% 400%; animation: gradMove 15s ease infinite;
}
@keyframes gradMove {
    0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; }
}
.media-text {
    position: relative; z-index: 2; font-size: clamp(3rem, 6vw, 6rem);
    text-align: center; font-weight: 700; mix-blend-mode: difference; color: #fff; line-height: 1.1;
}

/* Common Section Styles */
.section-title { font-size: 3rem; font-weight: 700; margin-bottom: 3rem; }


/* Manifesto */
.manifesto {
    padding: 15rem 10vw; min-height: 100vh; display: flex; align-items: center;
}
.scrub-text { font-size: clamp(2rem, 5vw, 4.5rem); font-weight: 500; line-height: 1.3; color: var(--text-dim); }

/* AI Core Focus */
.ai-core {
    position: relative; height: 100vh; width: 100vw; display: flex;
    justify-content: center; align-items: center; background-color: #030303; overflow: hidden;
}
.neural-net-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(0,255,136,0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: panNet 20s linear infinite; z-index: 0; opacity: 0.7;
    perspective: 1000px; transform: rotateX(60deg) scale(2); transform-origin: center top;
}
@keyframes panNet { 0% { background-position: 0 0; } 100% { background-position: 0 60px; } }
.ai-orb {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.4) 0%, transparent 70%);
    filter: blur(40px); z-index: 1; animation: orbBreath 6s infinite alternate ease-in-out;
}
@keyframes orbBreath {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}
.ai-content { position: relative; z-index: 2; text-align: center; max-width: 800px; padding: 0 2rem; pointer-events: none; }
.ai-heading { font-size: clamp(3rem, 7vw, 7rem); font-weight: 900; line-height: 1; margin-bottom: 2rem; }
.ai-subtext { font-size: 1.5rem; line-height: 1.6; color: #fff; }

/* Interactive AI Canvas Network */
.ai-canvas {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
    /* Allow mouse events to pass through if needed, though we track mouse globally */
}

/* Statistics */
.stats-section { padding: 5rem 10vw 10rem; }
.stats-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 5rem;
}
.stat-item h3 { display: inline-block; font-size: clamp(4rem, 8vw, 8rem); font-weight: 900; line-height: 1; }
.stat-suffix { font-size: clamp(2rem, 4vw, 4rem); font-weight: 700; color: var(--text-dim); }
.stat-label { margin-top: 1rem; font-size: 1.2rem; color: var(--text-dim); text-transform: uppercase; }

/* Horizontal Scroll (Expertise) */
.horizontal-scroll-section { position: relative; height: 100vh; background-color: #0c0c0c; }
.pin-wrap { height: 100vh; display: flex; align-items: center; overflow: hidden; }
.horizontal-container { display: flex; height: 100%; width: max-content; padding: 0 10vw; }
.h-panel { width: 80vw; height: 100%; display: flex; flex-direction: column; justify-content: center; padding-right: 15vw; }
.panel-content { 
    border-top: 2px solid var(--text-dim); padding-top: 3rem; position: relative; 
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.panel-text { position: relative; }
.panel-num { position: absolute; top: -2.5rem; left: 0; font-size: 1.5rem; font-weight: 700; color: var(--text-dim); }
.h-panel h2 { font-size: clamp(3rem, 6vw, 6rem); font-weight: 700; line-height: 1.1; margin-bottom: 2rem; }
.h-panel p { font-size: 1.5rem; max-width: 500px; line-height: 1.5; color: #999; }

.panel-graphic {
    width: 100%; max-width: 400px; justify-self: center; color: var(--text-dim);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.h-panel:hover .panel-graphic { color: var(--accent-color); transform: scale(1.05) rotate(2deg); }

.h-svg { width: 100%; height: auto; }

/* Expertise SVG Custom Hover Animations */
.h-panel:hover .ui-box { animation: scalePulse 2s ease-in-out infinite; }
.h-panel:hover .ui-line { animation: slideRight 2s ease-in-out infinite; }
.h-panel:hover .app-card.c1 { animation: scrollUp 3s linear infinite; }
.h-panel:hover .app-card.c2 { animation: scrollUp 3s linear infinite 1.5s; }
.h-panel:hover .node { animation: nodeGlow 1.5s ease-in-out infinite alternate; }
.h-panel:hover .link { stroke: var(--accent-color); opacity: 0.5; animation: dashMove 2s linear infinite; stroke-dasharray: 4; }
.h-panel:hover .wave { animation: radiate 2s ease-out infinite; }
.h-panel:hover .iot-chip { animation: nodeGlow 2s infinite; }

@keyframes scalePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1) translate(-2px, -2px); } }
@keyframes slideRight { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(10px); } }
@keyframes scrollUp { 0% { transform: translateY(30px); opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } 100% { transform: translateY(-40px); opacity: 0; } }
@keyframes nodeGlow { 0% { filter: drop-shadow(0 0 2px var(--accent-color)); transform: scale(1); } 100% { filter: drop-shadow(0 0 15px var(--accent-color)); transform: scale(1.3); } }
@keyframes dashMove { from { stroke-dashoffset: 8; } to { stroke-dashoffset: 0; } }
@keyframes radiate { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

/* Process Section */
.process-section { padding: 10rem 10vw; background-color: #030303; position: relative; overflow: hidden; }
.process-section::before {
    content: ''; position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%);
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 60%);
    filter: blur(80px); animation: drift 10s infinite alternate ease-in-out; pointer-events: none;
}
@keyframes drift {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-30%, -20%) scale(1.2); }
}
.process-container { position: relative; z-index: 1; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; perspective: 1000px; }
.process-step { 
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 1.5rem; border-radius: 16px; backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}
.process-step:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}
.step-number { font-size: 1.5rem; color: var(--accent-color); margin-bottom: 1.5rem; font-weight: 700; opacity: 0.8; }
.process-step h3 { font-size: 2rem; margin-bottom: 1rem; }
.process-step p { color: var(--text-dim); line-height: 1.5; }

/* Case Studies / Work & Interactive Symbols */
.work-section { padding: 10rem 10vw; background: #030303; }
.work-header { margin-bottom: 5rem; }
.work-header p { font-size: 1.2rem; color: var(--text-dim); margin-top: 1rem; }
.work-list { border-top: 1px solid rgba(255,255,255,0.1); }
.work-item {
    padding: 3rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: space-between; align-items: center;
    transition: padding 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: none; overflow: hidden;
}
.work-item:hover { padding-left: 3rem; padding-right: 3rem; background: rgba(255, 255, 255, 0.02); }
.work-title { font-size: clamp(2rem, 4vw, 4rem); font-weight: 700; transition: color 0.3s ease; margin-bottom: 0.5rem; }
.work-item:hover .work-title { color: var(--accent-color); }
.work-category { font-size: 1.2rem; color: var(--text-dim); }
.work-graphic {
    width: 80px; height: 80px; color: var(--text-dim); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex; justify-content: center; align-items: center; margin-left: 2rem;
}
.work-item:hover .work-graphic { color: var(--accent-color); transform: scale(1.3); }
/* Custom symbol animations on hover */
.work-item:nth-child(1):hover .work-graphic { animation: float-icon 2s ease-in-out infinite; }
.work-item:nth-child(2):hover .work-graphic { animation: pulse-icon 1.5s ease-in-out infinite; }
.work-item:nth-child(3):hover .work-graphic { animation: glow-icon 1.5s ease-in-out infinite; }
.work-item:nth-child(4):hover .work-graphic { animation: spin-icon 4s linear infinite; }

@keyframes float-icon { 0%, 100% { transform: translateY(0) scale(1.3); } 50% { transform: translateY(-10px) scale(1.3); } }
@keyframes pulse-icon { 0%, 100% { transform: scale(1.3); } 50% { transform: scale(1.5); } }
@keyframes glow-icon { 0%, 100% { filter: drop-shadow(0 0 5px var(--accent-color)); transform: scale(1.3); } 50% { filter: drop-shadow(0 0 20px var(--accent-color)); transform: scale(1.3); } }
@keyframes spin-icon { 100% { transform: rotate(360deg) scale(1.3); } }

/* Contact Form / Lead Gen */
.contact-section { padding: 10rem 10vw; background: #070707; }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: flex-start; }
.contact-info p { margin-top: 1rem; color: #999; }
.contact-details-grid { margin-top: 2rem; display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.contact-card {
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.8rem; border-radius: 12px; transition: 0.3s ease;
}
.contact-card:hover { border-color: rgba(255,255,255,0.2); transform: translateX(10px); }
.contact-card h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-dim); margin-bottom: 0.8rem; }
.contact-card a { color: var(--text-light); text-decoration: none; font-size: 1.3rem; font-weight: 500; transition: color 0.3s ease; }
.contact-card a:hover { color: var(--accent-color); }
.contact-card p { color: var(--text-light); font-size: 1.1rem; line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 2rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
    padding: 1.2rem 1.5rem; color: #fff; font-family: inherit; font-size: 1.1rem; cursor: none;
    transition: 0.3s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--accent-color); box-shadow: 0 0 15px rgba(0, 255, 136, 0.1); background: rgba(255,255,255,0.1);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select option { background: #111; }
.submit-btn {
    align-self: flex-start; background: transparent; border: 1px solid var(--accent);
    color: var(--accent); padding: 1.2rem 3rem; border-radius: 50px; font-size: 1.1rem;
    transition: 0.4s ease; cursor: none; overflow: hidden; position: relative; margin-top: 1rem;
}
.submit-btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--accent); z-index: -1; transform: scaleX(0); transform-origin: right; transition: transform 0.4s ease;
}
.submit-btn:hover { color: var(--bg-dark); }
.submit-btn:hover::before { transform: scaleX(1); transform-origin: left; }

/* Footer */
.footer {
    position: relative; height: 60vh; display: flex; flex-direction: column;
    justify-content: flex-end; overflow: hidden; background-color: #030303;
}
.footer-bg {
    position: absolute; top: -20%; left: 0; width: 100%; height: 120%;
    background: radial-gradient(circle at center top, #111 0%, #030303 80%); z-index: 0;
}
.footer-content {
    position: relative; z-index: 1; padding: 2rem 4rem; display: flex;
    flex-direction: column; justify-content: space-between; align-items: center; height: 100%;
}
.huge-footer-text {
    font-size: clamp(3rem, 14vw, 18rem); font-weight: 900; line-height: 1;
    text-align: center; margin: auto 0; letter-spacing: -2px; width: 100%;
}
.footer-bottom {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; color: var(--text-dim);
}
.footer-legal a { color: var(--text-dim); text-decoration: none; margin-left: 2rem; transition: 0.3s ease; }
.footer-legal a:hover { color: var(--text-light); }

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: -150%; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 650px; background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px);
    padding: 1.5rem; border-radius: 12px; z-index: 100000;
    display: flex; flex-direction: column; gap: 1rem;
    transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}
.cookie-banner.show { bottom: 2rem; }
.cookie-banner p { color: #aaa; font-size: 0.95rem; line-height: 1.5; margin: 0; }
.cookie-buttons { display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem; }
.cookie-btn {
    background: var(--accent-color); color: #000; border: none;
    padding: 0.6rem 1.5rem; border-radius: 5px; font-weight: 700; cursor: none;
    transition: 0.3s; font-family: inherit; font-size: 1rem;
}
.cookie-btn:hover { background: #fff; transform: scale(1.05); }
.cookie-link { color: #fff; text-decoration: none; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; }
.cookie-link:hover { border-color: #fff; }

/* --- Industries Bento Grid --- */
.industries-section { padding: 8rem 2rem; background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%); }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    text-decoration: none;
    color: white;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.bento-item::before {
    content: '→';
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 1.5rem;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.4s ease;
    z-index: 3;
    color: white;
}
.bento-item:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.bento-item:hover::before {
    opacity: 1;
    transform: translate(0, 0);
}
.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: auto;
    z-index: 2;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.bento-icon svg { width: 24px; height: 24px; stroke: #fff; }
.bento-item h3 { font-size: 1.8rem; font-weight: 500; margin-bottom: 0.5rem; z-index: 2; position: relative; margin-top: 2rem;}
.bento-item p { font-size: 1rem; color: #bbb; z-index: 2; position: relative; max-width: 90%; line-height: 1.5;}
.bento-large { grid-column: span 2; grid-row: span 2; min-height: 400px; }
.bento-large h3 { font-size: 2.5rem; }
.bento-wide { grid-column: span 2; }
.bento-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0.4; transition: opacity 0.5s ease, transform 0.8s ease; z-index: 1;
}
.bento-item:hover .bento-bg { opacity: 0.8; transform: scale(1.1) rotate(2deg); }
.healthcare-bg { background: radial-gradient(circle at top right, rgba(0, 255, 136, 0.4), transparent 50%); }
.factory-bg { background: radial-gradient(circle at bottom left, rgba(255, 170, 0, 0.4), transparent 60%); }
.startup-bg { background: radial-gradient(circle at top left, rgba(255, 0, 85, 0.4), transparent 50%); }
.education-bg { background: radial-gradient(circle at bottom right, rgba(0, 85, 255, 0.4), transparent 60%); }

/* Responsive Adjustments */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-title { 
        font-size: 11.5vw; 
        line-height: 1; 
        text-align: center; 
        width: 100%; 
        margin-top: 20vh; 
        padding: 0; 
        letter-spacing: 0; 
        word-break: keep-all;
    }
    .hero-subtitle { text-align: center; }
    .manifesto, .stats-section, .process-section, .work-section, .contact-section {
        padding-top: 5rem; padding-bottom: 5rem;
        padding-left: 5vw; padding-right: 5vw;
    }
    .contact-container, .process-grid, .stats-grid { grid-template-columns: 1fr; gap: 3rem; }
    .h-panel { width: 100vw; padding-right: 10vw; }
    .panel-content { grid-template-columns: 1fr; gap: 2rem; border-top: none; padding-top: 1rem; }
    .panel-num { position: relative; top: 0; display: block; margin-bottom: 1rem; }
    .panel-graphic { max-width: 250px; opacity: 0.5; }
    .work-item { flex-direction: column-reverse; align-items: flex-start; gap: 1.5rem; }
    .work-graphic { width: 50px; height: 50px; margin-left: 0; align-self: flex-end; margin-top: -3rem; }
    .contact-details-grid { gap: 1rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-wide { grid-column: span 1; grid-row: span 1; min-height: 250px; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-legal { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
    .footer-legal a { margin: 0; }
}

/* Disable Custom Cursor on Touch Devices */
@media (pointer: coarse) {
    .cursor { display: none !important; }
    * { cursor: auto !important; }
}
