/* --- VARIABLES --- */
:root {
    --c-black: #1a1a1a;
    --c-white: #ffffff;
    --c-neon-lime: #DEFF00; /* Acid Yellow */
    --c-neon-pink: #FF00A8;
    --c-grey: #f4f4f4;
    
    --font-head: 'Archivo Black', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    --border-thick: 3px solid var(--c-black);
    --shadow-hard: 6px 6px 0px var(--c-black);
    --shadow-hard-hover: 10px 10px 0px var(--c-black);
    
    --container: 1200px;
    --header-height: 80px;
}

/* --- RESET & BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--c-black);
    background-color: var(--c-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

/* --- UTILITIES --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.bg-white { background-color: var(--c-white); }
.bg-light { background-color: var(--c-grey); }
.bg-black { background-color: var(--c-black); color: var(--c-white); }
.bg-neon { background-color: var(--c-neon-lime); }
.text-neon { color: var(--c-neon-lime); }
.text-white { color: var(--c-white); }
.hidden { display: none !important; }
.w-full { width: 100%; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.max-w-md { max-width: 30rem; }
.align-center { align-items: center; }

/* Noise Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 900;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: var(--font-head); text-transform: uppercase; line-height: 1.1; }

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}
.section-desc { font-size: 1.2rem; max-width: 600px; margin-bottom: 3rem; }

/* --- LAYOUT GRIDS --- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.section-block { padding: 6rem 0; border-bottom: var(--border-thick); position: relative; z-index: 1; }

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-height);
    background: var(--c-neon-lime); /* Acid Yellow Header */
    border-bottom: var(--border-thick);
    z-index: 1000;
    display: flex;
    align-items: center;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo {
    font-family: var(--font-head);
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--c-black);
    letter-spacing: -1px;
}

/* Language Switcher Styling (Toggle Block) */
.lang-switch {
    display: inline-flex;
    border: 2px solid var(--c-black);
    background: var(--c-white);
    box-shadow: 4px 4px 0 var(--c-black);
    height: 40px;
    align-items: center;
    overflow: hidden;
    margin-left: 1rem; /* Space from Links */
    margin-right: 1rem; /* Space from CTA */
}

.lang-switch button {
    background: transparent;
    border: none;
    border-right: 1px solid var(--c-black);
    font-family: var(--font-head);
    font-weight: normal;
    padding: 0 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--c-black);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.lang-switch button:last-child { border-right: none; }
.lang-switch button:hover { background: #eee; }
.lang-switch button.active { background: var(--c-black); color: var(--c-neon-lime); }

/* Visibility Logic */
.lang-switch.desktop-nav-item { display: none; } /* Default Hidden */
.lang-switch.mobile-lang { display: flex; margin: 2rem 0; height: 50px; } /* Mobile styling */
.mobile-lang button { font-size: 1.2rem; padding: 0 2rem; }

/* NAVIGATION LOGIC (Mobile First) */
.desktop-nav { 
    display: none; 
    gap: 0.5rem; 
    align-items: center; 
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1200;
}
.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--c-black);
    transition: 0.3s;
}
/* Hamburger Animation */
body.menu-open .menu-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--c-neon-lime);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-nav-links a {
    display: block;
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--c-black);
    text-decoration: none;
    margin: 1rem 0;
    text-align: center;
}
.mobile-nav-links a:hover { color: var(--c-white); -webkit-text-stroke: 1px var(--c-black); }


/* Desktop State (Large Screens > 1024px) */
@media (min-width: 1024px) {
    .desktop-nav { display: flex; }
    .lang-switch.desktop-nav-item { display: inline-flex; } /* Show on Desktop */
    .menu-toggle { display: none; }
}

.desktop-nav a {
    text-decoration: none;
    color: var(--c-black);
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    padding: 0 0.5rem;
    text-transform: uppercase;
}
.desktop-nav a:not(.btn-small):hover { text-decoration: underline; text-decoration-thickness: 3px; text-decoration-color: var(--c-black); }

/* --- BUTTONS --- */
.btn-primary, .btn-black, .btn-small, .btn-secondary, .btn-arrow-link {
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-head);
    text-transform: uppercase;
    border: var(--border-thick);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
}

.btn-primary {
    background-color: var(--c-black);
    color: var(--c-white);
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    box-shadow: 6px 6px 0px var(--c-neon-pink);
    border: 3px solid var(--c-black);
}
.btn-primary:hover {
    transform: translate(-4px, -4px);
    box-shadow: 10px 10px 0px var(--c-neon-pink);
    background-color: #333;
}

.btn-black {
    background-color: var(--c-black);
    color: var(--c-white);
    padding: 1rem 2rem;
    font-size: 1.1rem;
}
.btn-black:hover { background-color: #333; }

.btn-small {
    background: var(--c-white);
    color: var(--c-black);
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    box-shadow: 4px 4px 0px var(--c-black);
}
.btn-small:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--c-black);
}

.btn-secondary {
    background: var(--c-white);
    color: var(--c-black);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.btn-arrow-link {
    background: transparent;
    border: none;
    box-shadow: none;
    color: var(--c-neon-pink);
    font-size: 2rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}
.btn-arrow-link:hover {
    transform: translateX(10px);
    background: transparent;
    box-shadow: none;
    color: var(--c-white);
}
.btn-arrow-link::after {
    content: '→';
    font-size: 3rem;
    line-height: 1;
}

/* --- HERO --- */
.hero-section {
    padding-top: calc(var(--header-height) + 4rem); 
    padding-bottom: 0;
    background-color: var(--c-neon-lime); /* Acid Yellow Background */
    /* Technical Grid Pattern */
    background-image:
        linear-gradient(rgba(26, 26, 26, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 26, 26, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    
    min-height: auto;
    /* Removed flex display for strict block alignment consistency with header */
    display: block;
    border-bottom: var(--border-thick);
}

.hero-content { 
    max-width: 1000px; 
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* STRICT LEFT ALIGNMENT */
    margin-bottom: 4rem; 
    width: 100%;
    margin-left: 0; 
    margin-right: auto;
    padding: 0;
}

.hero-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
    /* OPTICAL ALIGNMENT for Desktop - Matches headline */
    margin-left: -4px;
}

.badge {
    display: inline-block;
    background: var(--c-black);
    color: var(--c-neon-lime);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 2px solid var(--c-black);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.yt-certified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FF0000;
    color: #FFF;
    font-weight: 900;
    font-family: var(--font-head);
    padding: 0.5rem 1rem;
    border: 2px solid var(--c-black);
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 rgba(0,0,0,1);
}
.yt-play-shape {
    width: 0; height: 0; 
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid white;
}

#hero-headline {
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    hyphens: none;
    text-align: left;
    /* OPTICAL ALIGNMENT: Pulls large type left to visually align with grid/logo */
    margin-left: -4px; 
}
@media (max-width: 600px) {
    #hero-headline {
        hyphens: auto;
        font-size: 3.5rem;
        overflow-wrap: break-word;
        margin-left: 0; /* Reset on mobile */
    }
    .hero-meta-row {
        margin-left: 0; /* Reset on mobile */
    }
}

#hero-subheadline {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    max-width: 700px;
    font-weight: 500;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}
@media(min-width: 600px) {
    .hero-cta-wrapper {
        flex-direction: row;
        align-items: center;
    }
}

/* --- MARQUEE --- */
.marquee-wrapper {
    background: var(--c-black);
    color: var(--c-white);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: var(--border-thick);
    display: flex;
    margin-top: auto;
}
.marquee-content {
    display: inline-block;
    animation: marquee 40s linear infinite; 
    font-family: var(--font-head);
    font-size: 2rem;
    padding-right: 2rem;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* --- REALITY CHECK --- */
#reality-check {
    background-color: var(--c-white);
    padding-top: 3rem; 
}

.reality-narrative {
    text-align: left;
    width: 100%;
    padding-top: 2rem; 
}

.reality-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1;
}

.reality-sub {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    max-width: 800px;
}

.message-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 900px;
}

.message-card {
    background: var(--c-black);
    color: var(--c-neon-lime); /* Terminal Yellow Text */
    border-left: 10px solid var(--c-neon-pink);
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    box-shadow: var(--shadow-hard);
    position: relative;
}
.msg-header {
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    gap: 1rem;
}
.msg-body {
    font-size: 1.1rem;
    line-height: 1.4;
}

.reality-bridge {
    text-align: center;
    margin-top: 4rem;
}
.bridge-text {
    font-family: var(--font-head);
    font-size: 1.5rem;
    text-transform: uppercase;
}
.bridge-arrow {
    font-size: 4rem;
    font-weight: 900;
    color: var(--c-neon-pink);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

/* --- METHODOLOGY --- */
.trinity-card {
    background: var(--c-white);
    border: var(--border-thick);
    padding: 2rem;
    box-shadow: var(--shadow-hard);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.trinity-card:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 0px var(--c-neon-pink);
}

.visual-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed #ccc;
    padding-bottom: 1rem;
}

.visual-thumb-box {
    width: 160px; height: 90px;
    border: 3px solid var(--c-black);
    background: #eee;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.visual-play-btn {
    width: 0; height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid var(--c-black);
}
.visual-time-badge {
    position: absolute;
    bottom: 4px; right: 4px;
    background: var(--c-black);
    color: white;
    font-size: 0.6rem;
    padding: 1px 3px;
    font-family: sans-serif;
}

.visual-title-row {
    display: flex;
    gap: 10px;
    width: 180px;
    align-items: flex-start;
}
.visual-avatar {
    width: 36px; height: 36px;
    background: var(--c-black);
    border-radius: 50%;
    flex-shrink: 0;
}
.visual-text-col {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.visual-text-line { height: 10px; background: var(--c-black); }
.visual-text-line.long { width: 100%; }
.visual-text-line.short { width: 60%; }

.visual-chart-box {
    width: 180px; height: 80px;
    border-bottom: 2px solid var(--c-black);
    border-left: 2px solid var(--c-black);
    position: relative;
    display: flex;
    align-items: flex-end;
}
.visual-retention-curve {
    width: 100%; height: 100%;
    background: var(--c-neon-pink);
    clip-path: polygon(
        0% 100%,   
        0% 0%,     
        5% 30%,    
        10% 40%,   
        20% 50%,   
        40% 60%,   
        60% 65%,   
        80% 70%,   
        100% 75%,  
        100% 100%  
    );
    -webkit-clip-path: polygon(
        0% 100%,
        0% 0%,
        5% 30%,
        10% 40%,
        20% 50%,
        40% 60%,
        60% 65%,
        80% 70%,
        100% 75%,
        100% 100%
    );
}

.card-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.card-subtitle { font-size: 0.9rem; margin-bottom: 1rem; color: #666; font-weight: 400; }

/* --- THE CODE (Values) --- */
.value-card {
    background: var(--c-black);
    border: 2px solid var(--c-neon-lime);
    padding: 2rem;
    height: 100%;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: default;
}
.value-card:hover {
    background: var(--c-neon-lime);
    transform: translate(-5px, -5px);
    box-shadow: 10px 10px 0 var(--c-black);
}

.value-header {
    color: var(--c-neon-lime);
    font-family: monospace;
    margin-bottom: 1rem;
    font-weight: bold;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}
.value-card:hover .value-header {
    color: var(--c-black);
    border-bottom-color: var(--c-black);
}

.value-title {
    font-size: 1.8rem;
    color: var(--c-white);
    margin-bottom: 1rem;
    line-height: 1;
}
.value-card:hover .value-title { color: var(--c-black); }

.value-text {
    color: #ccc;
    font-size: 1rem;
}
.value-card:hover .value-text { color: var(--c-black); font-weight: 500; }

/* --- ABOUT SECTION --- */
.founder-card {
    background: var(--c-white);
    border: var(--border-thick);
    padding: 0;
    box-shadow: var(--shadow-hard);
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
    position: relative;
}
@media (min-width: 768px) {
    .founder-card { grid-template-columns: 220px 1fr; }
}

.founder-visual {
    background: var(--c-grey);
    border-bottom: var(--border-thick);
    position: relative;
    overflow: hidden;
    max-height: 300px; 
}
@media (min-width: 768px) {
    .founder-visual {
        border-bottom: none;
        border-right: var(--border-thick);
        max-height: none; 
        height: auto;
    }
}

.founder-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.3s;
    display: block;
}
.founder-card:hover .founder-visual img { filter: grayscale(0%) contrast(1); }

.founder-visual::after {
    content: '';
    position: absolute;
    top: -5px; left: 0; width: 100%; height: 5px;
    background: var(--c-neon-pink);
    opacity: 0.5;
}
.founder-card:hover .founder-visual::after { animation: scanline 2s linear infinite; }
@keyframes scanline { 0% { top: 0%; } 100% { top: 100%; } }

.founder-content { padding: 2rem; display: flex; flex-direction: column; }

.dossier-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid var(--c-black);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.founder-name { font-size: 2rem; line-height: 1; margin-bottom: 0.5rem; text-transform: uppercase; }
.founder-role {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    background: var(--c-black);
    color: var(--c-neon-lime);
    padding: 2px 6px;
    display: inline-block;
}

.dossier-meta {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #666;
    text-align: right;
}

.dossier-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    color: var(--c-black);
}
.status-dot {
    width: 10px; height: 10px;
    background: var(--c-neon-lime);
    border: 1px solid var(--c-black);
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink { 50% { opacity: 0.5; } }

.founder-bio { 
    font-size: 1.05rem; 
    line-height: 1.6; 
    margin-bottom: 1.5rem; 
    max-width: 700px; /* Restrict text width for readability on full-width card */
}

.founder-social {
    align-self: flex-start;
    font-family: var(--font-head);
    font-size: 0.9rem;
    color: var(--c-black);
    text-decoration: none;
    border: 2px solid var(--c-black);
    padding: 0.5rem 1rem;
    background: var(--c-white);
    box-shadow: 4px 4px 0 var(--c-black);
    transition: all 0.2s;
}
.founder-social:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--c-neon-pink);
    background: var(--c-black);
    color: var(--c-white);
}

/* Specific Founder Grid Layout for Single Item (Left Aligned) */
#about-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%; /* Full width */
    margin: 0; /* Left aligned */
    margin-bottom: 2rem;
}

.team-card {
    background: var(--c-white);
    border: var(--border-thick);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
    height: 100%;
}
.team-card:hover { transform: translateY(-5px); box-shadow: 8px 8px 0 var(--c-neon-pink); }

.team-visual {
    width: 100%; aspect-ratio: 1/1;
    border-bottom: var(--border-thick);
    background: var(--c-grey);
    position: relative;
    overflow: hidden;
}
.team-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    image-rendering: pixelated; 
    mix-blend-mode: multiply;
    filter: grayscale(100%);
    transition: all 0.3s;
}
.team-card:hover .team-visual img { mix-blend-mode: normal; filter: grayscale(0%); }

.team-info { padding: 1rem; flex-grow: 1; display: flex; flex-direction: column; }
.team-header { border-bottom: 1px solid #ccc; padding-bottom: 0.5rem; margin-bottom: 0.5rem; }
.team-name { font-size: 1.2rem; text-transform: uppercase; margin: 0; }
.team-role { font-family: 'Courier New', monospace; font-size: 0.75rem; font-weight: bold; color: var(--c-neon-pink); }
.team-desc { font-size: 0.9rem; line-height: 1.4; margin-bottom: 1rem; flex-grow: 1; }

/* --- SERVICES (Redesigned Matrix) --- */
.service-matrix { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width: 768px) { .service-matrix { grid-template-columns: repeat(3, 1fr); } }

.service-module {
    background: var(--c-white);
    border: var(--border-thick);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.module-header { background: var(--c-black); color: var(--c-white); padding: 1.5rem; border-bottom: var(--border-thick); }
.module-id { display: block; color: var(--c-neon-lime); font-weight: bold; font-family: monospace; margin-bottom: 0.5rem; }
.module-title { font-size: 1.8rem; line-height: 1; }
.module-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.module-desc { margin-bottom: 2rem; }
.module-tags { margin-top: auto; display: flex; flex-direction: column; gap: 1rem; }

/* Service Accordion Item */
.service-tag-wrapper.active .service-tag {
    background: var(--c-black);
    color: var(--c-neon-lime);
    border-color: var(--c-black);
}
.service-tag-wrapper.active .tag-icon { transform: rotate(45deg); }
.service-tag-wrapper.active .service-tag-desc { 
    display: block;
    max-height: 200px; 
    opacity: 1;
    padding: 0.8rem;
    border: 1px solid var(--c-black);
    border-top: none;
}

.service-tag {
    border: 1px solid var(--c-black);
    background: #eee;
    padding: 0.8rem;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
}
.service-tag:hover {
    background: #ddd;
}
.tag-icon {
    font-size: 1.2rem;
    font-weight: 900;
    transition: transform 0.3s ease;
}

.service-tag-desc {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    background: #333;
    color: #fff;
    line-height: 1.4;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.fount-badge { background: var(--c-black); color: #FFF; padding: 2px 5px; font-size: 0.6rem; margin-left: 5px; }
.service-tag-wrapper.active .fount-badge { background: var(--c-neon-lime); color: var(--c-black); }


/* --- RESULTS (KPI MATRIX) --- */
.kpi-matrix {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 600px) {
    .kpi-matrix { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
    .kpi-matrix { grid-template-columns: repeat(4, 1fr); }
}

.kpi-card {
    background: var(--c-black);
    border: 2px solid var(--c-neon-lime);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s;
    height: 100%;
}
.kpi-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 var(--c-neon-lime);
}

.kpi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #333;
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
}
.kpi-id {
    font-family: 'Courier New', monospace;
    color: #666;
    font-weight: bold;
}
.kpi-stat {
    font-family: var(--font-head);
    color: var(--c-neon-pink);
    font-size: 1.2rem;
}

.kpi-title {
    color: var(--c-white);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.1;
}

.kpi-desc {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.4;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.kpi-visual-line {
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(
        45deg,
        #333,
        #333 10px,
        transparent 10px,
        transparent 20px
    );
    margin-top: auto;
}
.kpi-card:hover .kpi-visual-line {
    background: repeating-linear-gradient(
        45deg,
        var(--c-neon-lime),
        var(--c-neon-lime) 10px,
        var(--c-black) 10px,
        var(--c-black) 20px
    );
}

/* --- NEW CLIENT LOGO GRID (REPLACES INDUSTRY GRID) --- */
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--c-black);
    border: 2px solid var(--c-neon-lime);
}

@media(min-width: 768px) {
    .client-logo-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

.client-logo-card {
    background: var(--c-white);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3/2;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    filter: grayscale(100%); /* Brutalist Style: B&W by default */
    text-decoration: none; /* No underline */
    color: inherit;
    cursor: pointer;
}

.client-logo-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    mix-blend-mode: multiply; /* Helps logo blend if not transparent PNG */
}

.client-logo-card:hover {
    filter: grayscale(0%);
    background: var(--c-neon-lime);
    box-shadow: inset 0 0 0 4px var(--c-black);
}

/* Updated Partner Grid for Single Item */
.partner-grid { 
    display: grid; 
    grid-template-columns: 1fr;
    gap: 1px;
    background: #333;
    border: 1px solid #333;
    max-width: 600px;
    margin: 0 auto;
}

.partner-card {
    background: var(--c-black);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s;
    height: auto;
    border: none; /* Handled by grid gap */
}
.partner-card:hover { background: var(--c-neon-lime); }
.partner-card:hover .partner-typographic { color: var(--c-black); }
.partner-card:hover .partner-desc { color: var(--c-black); border-color: var(--c-black); }

.partner-typographic {
    font-size: 2rem;
    color: var(--c-white);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-align: center;
}

.logo-fount {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
}

.partner-desc { 
    color: #888;
    font-size: 0.8rem;
    font-family: monospace;
    margin-top: 0.5rem;
    border-top: 1px solid #555;
    padding-top: 0.5rem;
    text-transform: uppercase;
}

/* --- INSIGHTS --- */
.insights-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width: 768px) { .insights-grid { grid-template-columns: repeat(3, 1fr); } }
.insight-card {
    border: var(--border-thick); padding: 2rem; cursor: pointer;
    transition: background 0.2s; display: flex; flex-direction: column; height: 100%;
}
.insight-card:hover { background: var(--c-black); color: var(--c-white); }
.insight-num { font-family: monospace; color: var(--c-neon-pink); margin-bottom: 1rem; display: block; }
.insight-title { font-size: 1.4rem; margin-bottom: 1rem; line-height: 1.2; }
.insight-excerpt { font-size: 0.9rem; margin-bottom: 2rem; flex-grow: 1; }
.insight-btn { font-weight: bold; text-decoration: underline; text-underline-offset: 4px; }

.article-content {
    max-width: 800px !important; width: 95%; padding: 3rem 2rem !important;
    border: 3px solid var(--c-black); box-shadow: 10px 10px 0 rgba(0,0,0,0.5);
}
#article-body h1 { font-size: 2.5rem; margin-bottom: 1rem; text-transform: uppercase; line-height: 1.1; }
#article-body h3 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 1rem; border-left: 5px solid var(--c-neon-pink); padding-left: 1rem; }
#article-body p { margin-bottom: 1rem; font-size: 1.1rem; }
#article-body ul, #article-body ol { margin-bottom: 1.5rem; padding-left: 1.5rem; }
#article-body li { margin-bottom: 0.5rem; }
#close-article-modal {
    position: sticky; top: 0; float: right; background: var(--c-black); color: white;
    border: none; width: 40px; height: 40px; font-size: 2rem; cursor: pointer; z-index: 10;
}

/* --- CONTACT --- */
.contact-wrapper { display: grid; gap: 3rem; }
@media(min-width: 768px) { .contact-wrapper { grid-template-columns: 1fr 1fr; } }

.maturity-matrix-container {
    background: var(--c-black); padding: 2rem; box-shadow: var(--shadow-hard);
    min-height: 300px; display: flex; flex-direction: column;
}
.matrix-grid { display: flex; justify-content: space-between; align-items: stretch; flex-grow: 1; margin-top: 2rem; gap: 10px; }
.matrix-step { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; cursor: pointer; min-width: 0; }
.matrix-bar-container {
    height: 150px; width: 100%; display: flex; align-items: flex-end;
    border-bottom: 2px solid var(--c-white); padding-bottom: 5px; margin-top: auto;
}
.matrix-bar {
    width: 100%; height: var(--bar-percent); background: var(--c-white);
    position: relative; transition: all 0.2s; border: 1px solid #000;
}
.matrix-step:hover .matrix-bar { background: var(--c-neon-lime); }
.matrix-step.highlight .matrix-bar { background: var(--c-neon-pink); }
.matrix-stage-num {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-weight: bold; font-family: var(--font-head); font-size: 1.5rem; color: var(--c-black);
}
.matrix-info { margin-top: 1rem; text-align: left; }
.matrix-title {
    color: var(--c-white); background: var(--c-black); font-size: 0.9rem; padding: 2px 4px;
    display: inline-block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}
.matrix-desc { font-size: 0.7rem; color: #ccc; line-height: 1.2; margin-top: 4px; }

@media (max-width: 768px) {
    .maturity-matrix-container { padding: 1rem; }
    /* Switch to Horizontal Bar Chart */
    .matrix-grid { flex-direction: column; gap: 1.5rem; height: auto; }
    .matrix-step { flex-direction: column; justify-content: flex-start; width: 100%; }
    .matrix-info { margin-top: 0; margin-bottom: 0.5rem; order: -1; /* Title above bar */ }
    
    .matrix-bar-container {
        height: 40px; width: 100%; display: block; border-bottom: none;
        border-left: 2px solid var(--c-white); padding-bottom: 0; padding-left: 10px; margin-top: 0;
        display: flex; align-items: center;
    }
    /* Use --bar-percent as Width instead of Height */
    .matrix-bar { 
        height: 30px !important; 
        width: var(--bar-percent); 
        border: 1px solid #000; 
    }
    .matrix-stage-num { font-size: 1rem; }
    
    .matrix-title { font-size: 1rem; white-space: normal; max-width: none; }
    .matrix-desc { display: none; /* Hide description on mobile to save space */ }
}

.neo-form { background: var(--c-white); border: var(--border-thick); padding: 2rem; box-shadow: var(--shadow-hard); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: 0.5rem; text-transform: uppercase; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 1rem; border: 2px solid var(--c-black); background: var(--c-grey);
    font-family: var(--font-body); font-size: 1rem; border-radius: 0; appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; background: var(--c-white); border-color: var(--c-neon-pink); box-shadow: 4px 4px 0px var(--c-neon-pink);
}

.success-box { text-align: center; padding: 2rem; background: var(--c-white); border: var(--border-thick); box-shadow: var(--shadow-hard); }
.success-box h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--c-neon-pink); }

/* --- MODALS --- */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8); z-index: 2000; display: flex; justify-content: center; align-items: center; backdrop-filter: blur(5px);
}
.modal-content {
    background: var(--c-white); width: 90%; max-width: 600px; max-height: 90vh; overflow-y: auto;
    border: var(--border-thick); padding: 4rem 2rem 2rem 2rem; box-shadow: var(--shadow-hard); position: relative;
}
#close-modal {
    position: absolute; top: 0; right: 0; background: var(--c-black); color: var(--c-white);
    border: none; border-bottom: var(--border-thick); border-left: var(--border-thick);
    width: 60px; height: 60px; font-size: 2.5rem; font-weight: bold; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
#close-modal:hover { background: var(--c-neon-pink); }
.legal-block { margin-bottom: 1.5rem; }
.legal-block h4 { border-bottom: 1px solid #000; margin-bottom: 0.5rem; }

.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%; background: var(--c-black); color: var(--c-white);
    border-top: 4px solid var(--c-neon-pink); z-index: 1500; padding: 1.5rem;
}
.cookie-inner {
    max-width: var(--container); margin: 0 auto; display: flex; flex-direction: column;
    gap: 1rem; align-items: center; text-align: center;
}
@media(min-width: 768px) { .cookie-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.cookie-actions { display: flex; gap: 1rem; }

/* --- FOOTER (REDESIGN) --- */
.site-footer {
    padding: 4rem 0;
    background: var(--c-black);
    color: var(--c-white);
    border-top: 4px solid var(--c-neon-lime);
}
.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}
@media(min-width: 768px) {
    .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer-brand h3 {
    font-size: 2rem;
    color: var(--c-neon-lime);
    margin-bottom: 0.5rem;
}
.footer-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
@media(min-width: 768px) {
    .footer-links { justify-content: flex-end; }
}

.footer-links a {
    display: inline-block;
    color: var(--c-white);
    text-decoration: none;
    border: 1px solid var(--c-white);
    padding: 0.5rem 1.5rem;
    font-family: monospace;
    font-weight: bold;
    transition: all 0.2s;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.footer-links a:hover {
    background: var(--c-neon-lime);
    color: var(--c-black);
    border-color: var(--c-neon-lime);
    box-shadow: 4px 4px 0 var(--c-white);
    transform: translate(-2px, -2px);
}

/* --- SECRET EASTER EGG (NEO-BRUTALIST) --- */
.secret-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}
@media(min-width: 600px) {
    .secret-grid { grid-template-columns: 1fr 1fr; }
}

.secret-header-box {
    background: var(--c-black);
    color: var(--c-neon-lime);
    padding: 1rem;
    text-align: center;
    border-bottom: 4px solid var(--c-neon-pink);
    margin-bottom: 2rem;
}
.secret-badge {
    display: inline-block;
    background: var(--c-neon-pink);
    color: #FFF;
    font-size: 0.8rem;
    padding: 2px 6px;
    margin-bottom: 0.5rem;
    font-family: monospace;
    letter-spacing: 2px;
}
.secret-main-title {
    font-size: 1.8rem;
    margin: 0;
    line-height: 1;
}

.secret-card {
    background: var(--c-black);
    color: var(--c-white);
    padding: 1.5rem;
    border: 1px solid #333;
    position: relative;
    transition: all 0.3s;
}
.secret-card:hover {
    border-color: var(--c-neon-lime);
    box-shadow: 6px 6px 0 var(--c-neon-lime);
    transform: translate(-3px, -3px);
}

.secret-num {
    position: absolute;
    top: -15px;
    right: 10px;
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--c-neon-lime);
    line-height: 1;
    opacity: 0.3;
    pointer-events: none;
}
.secret-card:hover .secret-num { opacity: 1; }

.secret-card h4 {
    color: var(--c-neon-lime);
    margin-bottom: 1rem;
    border-bottom: 1px solid #555;
    padding-bottom: 0.5rem;
    font-size: 1.1rem;
}
.secret-card p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}
.secret-highlight {
    color: var(--c-white);
    font-weight: bold;
    border-bottom: 1px solid var(--c-neon-pink);
}