:root {
    --neon: #32ff00;
    --black: #000;
    --base: #051A00;
    --muted: #9CA3AF;
    --white: #fff;
    --line: rgba(50, 255, 0, .22);
    --glow: 0 0 24px rgba(50, 255, 0, .65), 0 0 90px rgba(50, 255, 0, .26);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Rubik, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(50,255,0,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50,255,0,.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 70%);
    z-index: -2;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.site-header {
    position: sticky;
    top: 16px;
    z-index: 20;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    width: min(1240px, calc(100% - 48px));
    margin: 16px auto -88px;
    padding: 0;
    background: transparent;
    transition: transform .25s ease, filter .25s ease;
    isolation: isolate;
}
.site-header::before,
.site-header::after {
    content: "";
    position: absolute;
    inset: -10px -14px;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
    opacity: 0;
    transition: opacity .28s ease, transform .28s ease;
}
.site-header::before {
    background:
        linear-gradient(110deg, rgba(255,255,255,.16), rgba(255,255,255,.025) 28%, rgba(50,255,0,.1) 52%, rgba(255,255,255,.04) 74%);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 0 30px rgba(50,255,0,.08);
    backdrop-filter: blur(24px) saturate(1.55) contrast(1.08);
    -webkit-backdrop-filter: blur(24px) saturate(1.55) contrast(1.08);
}
.site-header::after {
    inset: -9px -12px;
    background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.18) 18%, transparent 34%, transparent 100%);
    transform: translateX(-18%);
    mix-blend-mode: screen;
}
.site-header.is-scrolled {
    filter: drop-shadow(0 18px 36px rgba(50,255,0,.1));
}
.site-header.is-scrolled::before,
.site-header.is-scrolled::after {
    opacity: 1;
}
.site-header.is-scrolled::after {
    animation: liquidSheen 5.8s ease-in-out infinite;
}
@keyframes liquidSheen {
    0%, 100% { transform: translateX(-22%); opacity: .28; }
    48% { transform: translateX(22%); opacity: .72; }
}

.brand {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.025) 42%, rgba(50,255,0,.045));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(50,255,0,.1);
    backdrop-filter: blur(22px) saturate(1.6);
    -webkit-backdrop-filter: blur(22px) saturate(1.6);
    text-decoration: none;
}
.brand img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.pill-nav {
    position: relative;
    isolation: isolate;
    justify-self: center;
    min-height: 56px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.025) 42%, rgba(50,255,0,.045));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), inset 0 -1px 0 rgba(50,255,0,.1);
    backdrop-filter: blur(24px) saturate(1.7) contrast(1.08);
    -webkit-backdrop-filter: blur(24px) saturate(1.7) contrast(1.08);
    transition: border-color .25s ease, box-shadow .25s ease;
}
.brand::before,
.pill-nav::before,
.pill-actions::before,
.nav-toggle::before {
    content: "";
    position: absolute;
    inset: 2px 10px auto;
    height: 42%;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
    pointer-events: none;
    mix-blend-mode: screen;
}
.site-header.is-scrolled .pill-nav,
.site-header.is-scrolled .pill-actions,
.site-header.is-scrolled .nav-toggle {
    background:
        linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.03) 38%, rgba(50,255,0,.06));
    border-color: rgba(255,255,255,.22);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        inset 0 -1px 0 rgba(50,255,0,.12),
        0 14px 42px rgba(50,255,0,.06);
    backdrop-filter: blur(30px) saturate(1.8) contrast(1.08);
    -webkit-backdrop-filter: blur(30px) saturate(1.8) contrast(1.08);
}
.pill-nav:hover, .pill-nav:focus-within {
    border-color: rgba(50,255,0,.42);
    box-shadow: 0 0 24px rgba(50,255,0,.1), inset 0 0 0 1px rgba(255,255,255,.06);
}
.pill-link {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 13px;
    overflow: hidden;
    border-radius: 999px;
    color: #d1d5db;
    text-decoration: none;
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .25s ease, transform .25s ease;
}
.pill-link::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -190%;
    z-index: -1;
    width: 132%;
    aspect-ratio: 1;
    border-radius: 999px;
    background: var(--neon);
    box-shadow: none;
    opacity: 0;
    transform: translateX(-50%) scale(.2);
    transition: bottom .42s cubic-bezier(.2,.9,.2,1), transform .42s cubic-bezier(.2,.9,.2,1), opacity .18s ease, box-shadow .25s ease;
}
.pill-link span { position: relative; z-index: 1; }
.pill-link:hover, .pill-link:focus-visible {
    color: #000;
    transform: translateY(-1px);
    text-shadow: none;
}
.pill-link:hover::before, .pill-link:focus-visible::before {
    bottom: -56%;
    opacity: 1;
    box-shadow: var(--glow);
    transform: translateX(-50%) scale(1);
}
.pill-link.active::after {
    content: "";
    position: absolute;
    bottom: 7px;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
}
.header-cta, .action-row, .footer-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.pill-actions {
    position: relative;
    isolation: isolate;
    justify-self: end;
    min-height: 56px;
    padding: 6px;
    border: 1px solid rgba(50,255,0,.26);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.022) 42%, rgba(50,255,0,.05));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.17), inset 0 -1px 0 rgba(50,255,0,.12);
    backdrop-filter: blur(24px) saturate(1.7) contrast(1.08);
    -webkit-backdrop-filter: blur(24px) saturate(1.7) contrast(1.08);
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.pill-action {
    min-height: 44px;
    padding-inline: 16px;
    position: relative;
    overflow: hidden;
    font-size: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    cursor: pointer;
}
.btn-neon { background: var(--neon); color: #000; box-shadow: var(--glow); border-color: var(--neon); }
.btn-ghost { background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.015)); color: var(--white); backdrop-filter: blur(18px) saturate(1.45); -webkit-backdrop-filter: blur(18px) saturate(1.45); }
.btn:hover { transform: translateY(-1px); }

.nav-toggle { position: relative; isolation: isolate; display: none; width: 56px; height: 56px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.02)); border-radius: 999px; box-shadow: inset 0 1px 0 rgba(255,255,255,.17), inset 0 -1px 0 rgba(50,255,0,.1); backdrop-filter: blur(24px) saturate(1.7); -webkit-backdrop-filter: blur(24px) saturate(1.7); }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--neon); transition: transform .25s ease, opacity .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero, .page-hero {
    position: relative;
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: center;
    padding: 136px 6vw 72px;
    overflow: hidden;
}
.hero > *:not(.hero-particles) {
    position: relative;
    z-index: 1;
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: .95;
    mix-blend-mode: screen;
}
.hero { grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr); gap: 48px; }
.hero::after, .page-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% 0;
    height: 44%;
    background: linear-gradient(to top, rgba(50,255,0,.13), transparent);
    pointer-events: none;
}
.compact-hero { min-height: 420px; align-content: end; padding-top: 112px; padding-bottom: 56px; background: radial-gradient(circle at 70% 10%, rgba(50,255,0,.18), transparent 34%); }

.eyebrow {
    margin: 0 0 12px;
    color: var(--neon);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: 0; }
h1 { max-width: 980px; font-size: clamp(46px, 6.5vw, 76px); font-weight: 900; text-transform: uppercase; }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; }
h3 { font-size: 20px; }
.hero p, .page-hero p:not(.eyebrow) { max-width: 680px; color: #d1d5db; font-size: 16px; margin: 16px 0 0; }
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 0;
}
.trust-row span {
    padding: 8px 12px;
    border: 1px solid rgba(50,255,0,.22);
    border-radius: 999px;
    color: #d1d5db;
    background: rgba(0,0,0,.5);
    font-size: 12px;
    font-weight: 800;
}
.hero-copy .trust-row {
    gap: 12px;
    margin-top: 24px;
}
.hero-copy .trust-row span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.02) 48%, rgba(50,255,0,.045));
    backdrop-filter: blur(16px) saturate(1.45);
    -webkit-backdrop-filter: blur(16px) saturate(1.45);
}
.hero-copy .action-row {
    gap: 14px;
    margin-top: 16px;
}
.hero-copy .action-row .btn {
    min-width: 214px;
    min-height: 52px;
    padding-inline: 24px;
}

.hero-home .hero-copy h1 {
    max-width: 720px;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -.035em;
}

.hero-trusted {
    min-width: 0;
    width: 100%;
    align-self: center;
}

.hero-orbit {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    perspective: 900px;
    pointer-events: none;
}
.hero-lottie-field {
    align-self: stretch;
    min-height: clamp(280px, 36vw, 500px);
    margin-right: 0;
    padding: clamp(28px, 4vw, 64px);
    opacity: .94;
}
.scroll-lottie {
    --lottie-progress: 0;
    position: relative;
    width: min(40vw, 480px);
    height: min(40vw, 480px);
    min-width: 300px;
    min-height: 300px;
    padding: clamp(30px, 4vw, 64px);
    background: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    filter: drop-shadow(0 0 16px rgba(50,255,0,.3)) drop-shadow(0 0 42px rgba(50,255,0,.14));
    mix-blend-mode: screen;
}
.scroll-lottie > svg {
    position: absolute;
    inset: clamp(30px, 4vw, 64px);
    display: block;
    width: calc(100% - (clamp(30px, 4vw, 64px) * 2)) !important;
    height: calc(100% - (clamp(30px, 4vw, 64px) * 2)) !important;
    overflow: visible;
    background: transparent !important;
}
.scroll-lottie.is-lottie-ready > svg {
    z-index: 2;
}
.hero-orbit strong {
    position: absolute;
    font-size: clamp(70px, 12vw, 150px);
    color: rgba(50,255,0,.09);
    -webkit-text-stroke: 1px rgba(50,255,0,.5);
}
.kx-cube {
    width: 230px;
    height: 230px;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeSpin 11s linear infinite;
}
.kx-cube span {
    position: absolute;
    inset: 0;
    border: 2px solid var(--neon);
    box-shadow: inset var(--glow), var(--glow);
    background: rgba(5,26,0,.2);
}
.kx-cube span:nth-child(1) { transform: rotateY(0deg) translateZ(115px); }
.kx-cube span:nth-child(2) { transform: rotateY(90deg) translateZ(115px); }
.kx-cube span:nth-child(3) { transform: rotateX(90deg) translateZ(115px); }
@keyframes cubeSpin { to { transform: rotateX(360deg) rotateY(360deg); } }
.scan-ring {
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(50,255,0,.38);
    transform: rotateX(66deg);
    animation: pulseRing 3.8s ease-in-out infinite;
}
.ring-two { width: 560px; height: 560px; animation-delay: 1.1s; opacity: .42; }
@keyframes pulseRing { 50% { box-shadow: var(--glow); transform: rotateX(66deg) scale(1.05); } }

.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--base); }
.ticker div { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.ticker span { padding: 18px 40px; color: var(--neon); font-size: 22px; font-weight: 900; text-transform: uppercase; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-35%); } }

.section { padding: 72px 6vw; position: relative; }
.section-heading {
    grid-column: 1 / -1;
    max-width: 860px;
    margin-bottom: 10px;
}
.answer-stack {
    display: grid;
    gap: 16px;
}
.answer-stack p {
    margin: 0;
    color: #cbd5e1;
}
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.visual-split {
    display: grid;
    grid-template-columns: .85fr 1fr;
    gap: 28px;
    align-items: stretch;
}
.visual-split .answer-stack {
    min-width: 0;
    align-self: center;
}
.section-visual {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    min-height: 300px;
    margin: 0;
    border: 1px solid rgba(50,255,0,.24);
    background: linear-gradient(145deg, rgba(5,26,0,.88), rgba(0,0,0,.94));
    box-shadow: 0 24px 80px rgba(50,255,0,.08);
}
.section-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent, rgba(0,0,0,.26)),
        radial-gradient(circle at 72% 22%, rgba(50,255,0,.18), transparent 34%);
}
.section-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.08);
}
.home-problem .section-visual {
    grid-column: 1 / -1;
    aspect-ratio: 21 / 8;
}
.mission-grid, .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sharp-card, .service-group, .solution-card, .case-card, .contact-form, .contact-command, .mega-panel, .metrics-wall, .process-node {
    background: linear-gradient(145deg, rgba(5,26,0,.9), rgba(0,0,0,.92));
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(255,255,255,.02);
}
.sharp-card { padding: 28px; min-height: 220px; }
.sharp-card span, .step { color: var(--neon); font-weight: 900; }
.sharp-card p, .solution-card p, .case-card p, .copy-stack p, .contact-command p, .mega-panel p { color: #cbd5e1; }

.battle-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 16px; }
.mega-panel { padding: 48px; min-height: 420px; display: grid; align-content: end; }
.metrics-wall { display: grid; grid-template-rows: repeat(3, 1fr); }
.metrics-wall div { padding: 28px; border-bottom: 1px solid var(--line); }
.metrics-wall strong { display: block; color: var(--neon); font-size: 56px; line-height: 1; text-shadow: var(--glow); }
.metrics-wall span { color: var(--muted); font-weight: 700; }
.text-link { display: inline-flex; margin-top: 18px; color: var(--neon); font-weight: 900; text-transform: uppercase; text-decoration: none; }

.service-index { display: grid; gap: 20px; }
.magic-bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    align-items: stretch;
    gap: 18px;
    perspective: 1200px;
}
.service-group { padding: 28px; }
.magic-card {
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-radius: 320px;
    position: relative;
    isolation: isolate;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform .18s ease, border-color .24s ease, box-shadow .24s ease;
    will-change: transform;
}
.magic-card.card-0, .magic-card.card-4 { grid-column: span 1; }
.magic-card.card-2 { grid-row: span 1; }
.magic-card:hover, .magic-card:focus-visible {
    border-color: rgba(50,255,0,.5);
    box-shadow: 0 0 0 1px rgba(50,255,0,.18), 0 24px 80px rgba(50,255,0,.1);
    outline: none;
}
.spotlight-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(var(--spotlight-radius) circle at var(--mouse-x) var(--mouse-y), rgba(50,255,0,.16), transparent 76%);
    opacity: 0;
    transition: opacity .24s ease;
}
.magic-card:hover .spotlight-overlay, .magic-card:focus-visible .spotlight-overlay { opacity: 1; }
.border-glow {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    padding: 1px;
    background: radial-gradient(220px circle at var(--mouse-x) var(--mouse-y), rgba(50,255,0,.95), transparent 48%);
    opacity: 0;
    transition: opacity .24s ease;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}
.magic-card:hover .border-glow, .magic-card:focus-visible .border-glow { opacity: 1; }
.card-grid-lines {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(rgba(50,255,0,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50,255,0,.045) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: .42;
}
.service-count {
    width: max-content;
    padding: 6px 10px;
    border: 1px solid rgba(50,255,0,.2);
    border-radius: 999px;
    color: var(--neon);
    background: rgba(0,0,0,.6);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}
.magic-card h2 {
    margin-top: 24px;
    max-width: 520px;
    font-size: clamp(25px, 2.9vw, 36px);
    line-height: 1.05;
}
.magic-card p {
    max-width: 520px;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.55;
}
.home-services .magic-card {
    min-height: 330px;
}
.home-services .service-visual {
    grid-column: span 3;
    aspect-ratio: 21 / 7;
}
.home-services .magic-card h3,
.process-node.magic-card h3 {
    margin-top: 24px;
    font-size: clamp(24px, 2.6vw, 34px);
    line-height: 1.08;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.service-tags a {
    padding: 7px 10px;
    color: #d1d5db;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    text-decoration: none;
    background: rgba(0,0,0,.45);
    font-size: 12px;
    line-height: 1.25;
}
.service-tags a:hover { border-color: var(--neon); color: var(--neon); }
.bento-particle {
    position: absolute;
    z-index: 4;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: var(--neon);
    box-shadow: 0 0 10px rgba(50,255,0,.9);
    pointer-events: none;
    animation: particleDrift 1.8s ease-out forwards;
}
.bento-ripple {
    position: absolute;
    z-index: 5;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(50,255,0,.8);
    background: rgba(50,255,0,.22);
    pointer-events: none;
    animation: bentoRipple .75s ease-out forwards;
}
@keyframes particleDrift {
    to { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(.1); }
}
@keyframes bentoRipple {
    to { opacity: 0; transform: translate(-50%, -50%) scale(46); }
}
.neon-band { margin: 0 6vw 72px; padding: 40px; border: 1px solid var(--neon); box-shadow: var(--glow); background: #061400; }

.solution-rail.magic-bento { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.solution-card { padding: 28px; }
.solution-card.magic-card { min-height: 380px; }
.solution-steps {
    width: max-content;
    max-width: 100%;
    padding: 9px 12px;
    border: 1px solid rgba(50,255,0,.24);
    border-radius: 999px;
    color: var(--neon);
    background: rgba(0,0,0,.58);
    font-size: 12px;
    font-weight: 900;
}
.process-map.magic-bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    padding-top: 12px;
    align-items: stretch;
}
.process-map .section-heading {
    max-width: 760px;
    margin-bottom: 12px;
}
.process-map .section-heading h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.08;
}
.process-node {
    padding: 22px;
}
.process-node.magic-card {
    min-height: 190px;
    justify-content: flex-start;
    gap: 16px;
}
.process-node.magic-card h3 {
    margin-top: 0;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.05;
}
.process-node.magic-card p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}
.parallel-scroll {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 32px;
    align-items: center;
    overflow: hidden;
}
.parallel-column {
    will-change: transform;
}
.parallel-column > p {
    color: #cbd5e1;
    max-width: 620px;
}
.parallel-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.horizontal-showcase {
    overflow: hidden;
}
.horizontal-viewport {
    overflow: hidden;
    margin-top: 22px;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.horizontal-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: dynamicHorizontal 34s linear infinite;
}
.horizontal-viewport:hover .horizontal-track {
    animation-play-state: paused;
}
.horizontal-card {
    width: min(78vw, 390px);
    min-height: 240px;
    padding: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(5,26,0,.95), rgba(0,0,0,.94));
}
.horizontal-card h3 {
    font-size: 30px;
}
.horizontal-card p {
    color: #cbd5e1;
}
@keyframes dynamicHorizontal {
    to { transform: translateX(calc(-50% - 9px)); }
}

.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.case-card { overflow: hidden; }
.case-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: saturate(1.12) contrast(1.08); }
.case-card div { padding: 28px; }
.case-card strong { display: block; color: var(--white); margin-top: 14px; }
.case-study-intro {
    display: grid;
    grid-template-columns: 1fr .9fr;
    gap: 32px;
    align-items: end;
    padding-bottom: 24px;
}
.case-study-intro p:not(.eyebrow) {
    color: #cbd5e1;
    max-width: 620px;
}
.portfolio-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding-top: 32px;
}
.portfolio-case-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(5,26,0,.92), rgba(0,0,0,.94));
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.portfolio-case-card:hover {
    border-color: rgba(50,255,0,.52);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(50,255,0,.08);
}
.case-media {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid rgba(50,255,0,.14);
    background: #061400;
}
.portfolio-case-card .case-media img {
    aspect-ratio: 16/10;
    transition: transform .35s ease, filter .35s ease;
}
.portfolio-case-card:hover .case-media img {
    transform: scale(1.035);
    filter: saturate(1.2) contrast(1.1);
}
.case-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
}
.case-body h2 {
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.05;
}
.case-body p:not(.eyebrow) {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.58;
}
.case-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 !important;
}
.case-meta span {
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    color: #d1d5db;
    background: rgba(0,0,0,.48);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}
.case-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: auto;
    padding: 0 !important;
}
.home-case-studies {
    display: grid;
    grid-template-columns: .72fr 1fr;
    gap: 24px;
    overflow: hidden;
}
.case-studies-head {
    align-self: end;
}
.case-studies-head p:not(.eyebrow) {
    max-width: 580px;
    color: #cbd5e1;
}
.case-stream-visual {
    min-height: 320px;
    aspect-ratio: 16 / 8;
}
.case-scroll-viewport {
    grid-column: 1 / -1;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 6vw;
    padding: 8px 0 22px;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: rgba(50,255,0,.75) rgba(255,255,255,.08);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.case-scroll-viewport:active {
    cursor: grabbing;
}
.case-scroll-track {
    display: flex;
    gap: 18px;
    width: max-content;
    padding-inline: 1px;
}
.home-case-card {
    position: relative;
    display: grid;
    align-content: end;
    width: min(78vw, 430px);
    min-height: 520px;
    padding: 24px;
    overflow: hidden;
    color: var(--white);
    text-decoration: none;
    scroll-snap-align: start;
    border: 1px solid rgba(50,255,0,.22);
    background: #030803;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.home-case-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.04) 10%, rgba(0,0,0,.55) 52%, rgba(0,0,0,.95));
}
.home-case-card:hover,
.home-case-card:focus-visible {
    transform: translateY(-5px);
    border-color: rgba(50,255,0,.65);
    box-shadow: 0 24px 80px rgba(50,255,0,.12);
    outline: none;
}
.home-case-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.12) contrast(1.08) brightness(.82);
    transition: transform .35s ease, filter .35s ease;
}
.home-case-card:hover img,
.home-case-card:focus-visible img {
    transform: scale(1.04);
    filter: saturate(1.18) contrast(1.12) brightness(.9);
}
.home-case-card .service-count,
.home-case-card h3,
.home-case-card p {
    position: relative;
    z-index: 2;
}
.home-case-card h3 {
    margin-top: 16px;
    font-size: clamp(28px, 3vw, 42px);
}
.home-case-card p {
    max-width: 340px;
    color: #d7dee8;
}
.muted-link {
    color: #d1d5db;
}
.copy-stack { display: grid; gap: 16px; }

.breadcrumbs {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: #94a3b8;
    font-size: .92rem;
}

.breadcrumbs a {
    color: #e2e8f0;
    text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
    color: #70ff98;
}

.related-services {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.related-services .section-heading {
    grid-column: 1 / -1;
}

@media (max-width: 980px) {
    .related-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .related-services {
        grid-template-columns: 1fr;
    }
}
.testimonials.magic-bento,
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.testimonials .section-heading,
.resources-grid .section-heading {
    grid-column: 1 / -1;
}
.testimonials .magic-card {
    min-height: 260px;
}
.faq-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.faq-section .section-heading {
    grid-column: 1 / -1;
}
.faq-item {
    padding: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(5,26,0,.9), rgba(0,0,0,.94));
}
.faq-item p {
    color: #cbd5e1;
}
.resources-grid a {
    color: inherit;
    text-decoration: none;
}

.client-ticker-section {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
    border-top: 1px solid rgba(50,255,0,.12);
    background:
        radial-gradient(circle at 50% 0%, rgba(50,255,0,.12), transparent 34%),
        linear-gradient(180deg, rgba(0,0,0,0), rgba(5,26,0,.34), rgba(0,0,0,0));
}
.client-ticker-heading {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto 28px;
}
.client-ticker-heading h2 {
    max-width: 720px;
}
.client-ticker {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 18px;
    mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.client-ticker::before,
.client-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 16vw;
    pointer-events: none;
}
.client-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #000, transparent);
}
.client-ticker::after {
    right: 0;
    background: linear-gradient(270deg, #000, transparent);
}
.client-track {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: max-content;
    padding-right: 16px;
    animation: clientMarquee 70s linear infinite;
}
.client-ticker .client-track,
.client-ticker:hover .client-track,
.client-ticker:focus-within .client-track,
.client-logo-tile:hover {
    animation-play-state: running !important;
}
.client-logo-tile {
    position: relative;
    display: grid;
    place-items: center;
    width: 176px;
    height: 92px;
    padding: 14px 18px;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.24), rgba(255,255,255,.08) 52%, rgba(50,255,0,.08)),
        rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.3);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.42),
        inset 0 -1px 0 rgba(50,255,0,.12),
        0 18px 44px rgba(0,0,0,.42),
        0 0 30px rgba(50,255,0,.08);
    backdrop-filter: blur(24px) saturate(1.7);
    -webkit-backdrop-filter: blur(24px) saturate(1.7);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.client-logo-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(50,255,0,.14), transparent);
    opacity: 0;
    transition: opacity .25s ease;
}
.client-logo-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(50,255,0,.8);
    box-shadow:
        inset 0 0 0 1px rgba(0,0,0,.05),
        0 18px 50px rgba(0,0,0,.5),
        0 0 34px rgba(50,255,0,.26);
}
.client-logo-tile:hover::after {
    opacity: 1;
}
.client-logo-tile img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
    filter: saturate(1.02) contrast(1.08) drop-shadow(0 3px 8px rgba(0,0,0,.2));
}
@keyframes clientMarquee {
    to { transform: translateX(-100%); }
}

.client-ticker-hero {
    padding: clamp(28px, 4vw, 48px) 0;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 32px;
    background:
        radial-gradient(circle at 20% 0%, rgba(255,255,255,.14), transparent 42%),
        radial-gradient(circle at 80% 100%, rgba(50,255,0,.12), transparent 40%),
        rgba(255,255,255,.035);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.2),
        0 30px 90px rgba(0,0,0,.42);
    backdrop-filter: blur(28px) saturate(1.45);
    -webkit-backdrop-filter: blur(28px) saturate(1.45);
}
.client-ticker-hero .client-ticker-heading {
    width: auto;
    margin: 0 clamp(24px, 4vw, 44px) 16px;
}
.client-ticker-hero .client-ticker-heading .eyebrow {
    font-size: 14px;
    margin-bottom: 0;
}
.client-ticker-hero .client-track {
    animation-duration: 52s;
}
.client-ticker-hero .client-logo-tile {
    width: 196px;
    height: 108px;
    padding: 18px 22px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.82), rgba(238,255,234,.62) 52%, rgba(255,255,255,.44)),
        rgba(255,255,255,.48);
    border-color: rgba(255,255,255,.72);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.95),
        inset 0 -1px 0 rgba(50,255,0,.18),
        0 20px 50px rgba(0,0,0,.48),
        0 0 34px rgba(50,255,0,.13);
    backdrop-filter: blur(32px) saturate(1.8);
    -webkit-backdrop-filter: blur(32px) saturate(1.8);
}
.client-ticker-hero .client-logo-tile img {
    max-height: 68px;
}
.client-ticker-hero .client-ticker::before {
    background: linear-gradient(90deg, rgba(2,12,0,.96), transparent);
}
.client-ticker-hero .client-ticker::after {
    background: linear-gradient(270deg, rgba(2,12,0,.96), transparent);
}

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 20px; align-items: start; }
.contact-command { padding: 36px; position: sticky; top: 100px; }
.contact-command .btn { width: 100%; margin-top: 12px; }
.contact-form { padding: 32px; display: grid; gap: 16px; }
label { display: grid; gap: 8px; color: var(--neon); font-weight: 800; text-transform: uppercase; font-size: 12px; }
input, textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: #020602;
    color: var(--white);
    font: inherit;
    border-radius: 0;
}
input:focus, textarea:focus { outline: 2px solid var(--neon); }
.form-success { padding: 14px 16px; background: rgba(50,255,0,.12); border: 1px solid var(--neon); color: var(--white); }

.site-footer { padding: 0 6vw 28px; background: #000; }
.footer-strike { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 32px; padding: 36px 0; }
.footer-grid p, .footer-bottom { color: var(--muted); }
.footer-grid nav, .footer-grid div:last-child { display: grid; gap: 10px; align-content: start; }
.footer-grid a { color: #d1d5db; text-decoration: none; font-weight: 700; }
.footer-grid a:hover { color: var(--neon); }
.footer-label { margin: 0; color: var(--neon) !important; font-weight: 900; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }

.koda-float {
    position: fixed;
    right: clamp(12px, 1.8vw, 24px);
    bottom: clamp(12px, 1.8vw, 24px);
    z-index: 9999;
    display: grid;
    justify-items: end;
    gap: 10px;
    pointer-events: none;
}
.koda-character-button,
.koda-chat-panel,
.koda-greeting {
    pointer-events: auto;
}
.koda-character-button {
    position: relative;
    width: clamp(58px, 5.6vw, 84px);
    height: clamp(58px, 5.6vw, 84px);
    padding: 0;
    border: 1px solid rgba(50,255,0,.32);
    border-radius: 999px;
    background: radial-gradient(circle at 42% 30%, rgba(255,255,255,.12), rgba(50,255,0,.08) 38%, rgba(255,255,255,.02));
    box-shadow: 0 0 28px rgba(50,255,0,.24), inset 0 1px 0 rgba(255,255,255,.2);
    backdrop-filter: blur(18px) saturate(1.55);
    -webkit-backdrop-filter: blur(18px) saturate(1.55);
    cursor: pointer;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.koda-character-button:hover,
.koda-character-button:focus-visible {
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(50,255,0,.75);
    box-shadow: 0 0 40px rgba(50,255,0,.36), inset 0 1px 0 rgba(255,255,255,.24);
    outline: none;
}
.koda-character-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
    filter: drop-shadow(0 0 16px rgba(50,255,0,.26));
}
.koda-online-dot {
    position: absolute;
    right: 7px;
    top: 8px;
    z-index: 2;
    width: 14px;
    height: 14px;
    border: 2px solid #001900;
    border-radius: 999px;
    background: var(--neon);
    box-shadow: 0 0 0 5px rgba(50,255,0,.15), 0 0 18px rgba(50,255,0,.9);
    animation: kodaOnlinePulse 1.8s ease-in-out infinite;
}
@keyframes kodaOnlinePulse {
    50% { box-shadow: 0 0 0 9px rgba(50,255,0,.04), 0 0 22px rgba(50,255,0,1); }
}
.koda-greeting {
    max-width: min(23vw, 270px);
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px 18px 4px 18px;
    color: var(--white);
    background: linear-gradient(135deg, rgba(255,255,255,.13), rgba(255,255,255,.035) 48%, rgba(50,255,0,.08));
    box-shadow: 0 18px 54px rgba(0,0,0,.32), 0 0 26px rgba(50,255,0,.12);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    opacity: 0;
    transform: translateY(8px) scale(.96);
    transition: opacity .28s ease, transform .28s ease;
}
.koda-greeting.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.koda-chat-panel {
    position: absolute;
    right: 0;
    bottom: calc(clamp(58px, 5.6vw, 84px) + clamp(12px, 1.5vw, 18px));
    width: clamp(300px, 30vw, 380px);
    height: clamp(420px, 68vh, 560px);
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 104px);
    overflow: hidden;
    border: 1px solid rgba(50,255,0,.28);
    border-radius: 22px;
    background:
        radial-gradient(circle at 78% 0%, rgba(50,255,0,.16), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.028) 32%, rgba(0,0,0,.72));
    box-shadow: 0 28px 90px rgba(0,0,0,.52), 0 0 45px rgba(50,255,0,.14);
    backdrop-filter: blur(26px) saturate(1.6);
    -webkit-backdrop-filter: blur(26px) saturate(1.6);
    display: flex;
    flex-direction: column;
    animation: kodaPanelIn .22s ease both;
}
.koda-chat-panel[hidden] {
    display: none !important;
}
@keyframes kodaPanelIn {
    from { opacity: 0; transform: translateY(14px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.koda-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.koda-chat-identity {
    display: flex;
    align-items: center;
    gap: 10px;
}
.koda-chat-identity img {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: contain;
    background: rgba(50,255,0,.08);
}
.koda-chat-identity strong {
    display: block;
    line-height: 1;
    font-size: 15px;
}
.koda-chat-identity span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #b7c4b7;
    font-size: 11px;
    font-weight: 700;
}
.koda-chat-identity i {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--neon);
    box-shadow: 0 0 10px rgba(50,255,0,.9);
}
.koda-close {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    color: var(--white);
    background: rgba(255,255,255,.06);
    cursor: pointer;
    font-weight: 900;
}
.koda-chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    padding: 16px;
}
.koda-msg {
    max-width: 84%;
    padding: 10px 13px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-word;
}
.koda-msg.bot {
    align-self: flex-start;
    color: #e9f3ea;
    background: rgba(255,255,255,.08);
    border-bottom-left-radius: 4px;
}
.koda-msg.user {
    align-self: flex-end;
    color: #031300;
    background: var(--neon);
    border-bottom-right-radius: 4px;
    font-weight: 700;
}
.koda-typing {
    align-self: flex-start;
    margin: 0 16px 10px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}
.koda-typing span {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 2px;
    border-radius: 999px;
    background: var(--neon);
    animation: kodaTyping 1s infinite ease-in-out;
}
.koda-typing span:nth-child(2) { animation-delay: .16s; }
.koda-typing span:nth-child(3) { animation-delay: .32s; }
@keyframes kodaTyping {
    50% { transform: translateY(-4px); opacity: .55; }
}
.koda-chat-form {
    display: flex;
    gap: 10px;
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.koda-chat-form input {
    min-width: 0;
    flex: 1;
    border-radius: 999px;
    background: rgba(0,0,0,.42);
}
.koda-chat-form button {
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    color: #031300;
    background: var(--neon);
    font-weight: 900;
    cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) and (min-width: 981px) {
    .site-header { width: min(100% - 32px, 1120px); gap: 8px; }
    .brand img { height: 36px; }
    .pill-link { padding-inline: 10px; font-size: 10px; }
    .pill-action { padding-inline: 13px; font-size: 11px; }
}

@media (max-width: 980px) {
    .site-header { grid-template-columns: 1fr auto; top: 10px; width: min(100% - 24px, 720px); margin-bottom: -82px; }
    .brand { justify-self: start; min-height: 56px; }
    .nav-toggle { display: block; justify-self: end; }
    .pill-nav, .pill-actions {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        justify-content: stretch;
        justify-self: stretch;
        border-radius: 28px;
    }
    .pill-nav.open, .pill-actions.open { display: grid; animation: pillMenuIn .28s ease both; }
    .pill-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 8px; }
    .pill-actions { grid-template-columns: 1fr; padding: 8px; }
    .pill-link, .pill-action { width: 100%; }
    .pill-link { min-height: 44px; }
    .hero { padding-top: 128px; }
    .hero, .split, .visual-split, .battle-grid, .home-case-studies, .contact-layout { grid-template-columns: 1fr; }
    .mission-grid, .values-grid, .solution-rail, .process-map, .case-grid, .footer-grid, .parallel-scroll { grid-template-columns: 1fr; }
    .parallel-cards, .testimonials.magic-bento, .resources-grid, .faq-section { grid-template-columns: 1fr; }
    .parallel-column { transform: none !important; }
    .case-study-intro { grid-template-columns: 1fr; }
    .portfolio-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .compact-hero { min-height: 360px; padding-top: 96px; padding-bottom: 48px; }
    .magic-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; gap: 16px; }
    .solution-rail.magic-bento, .process-map.magic-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
    .magic-card.card-0, .magic-card.card-4, .magic-card.card-2 { grid-column: span 1; grid-row: span 1; }
    .magic-card { min-height: 360px; }
    .home-services .magic-card { min-height: 300px; }
    .home-services .service-visual { grid-column: 1 / -1; aspect-ratio: 16 / 8; }
    .home-problem .section-visual { aspect-ratio: 16 / 8; }
    .home-case-card { width: min(72vw, 390px); min-height: 460px; }
    .solution-card.magic-card { min-height: 340px; }
    .process-node.magic-card { min-height: 190px; }
    .magic-card h2 { font-size: 28px; }
    .hero-copy .action-row .btn { min-width: 190px; }
    .hero-orbit { min-height: 360px; }
    .hero-lottie-field {
        min-height: 300px;
        margin-right: 0;
        padding: 28px;
        opacity: .86;
    }
    .scroll-lottie {
        width: min(64vw, 380px);
        height: min(64vw, 380px);
        min-width: 0;
        min-height: 280px;
    }
    .contact-command { position: static; }
}

@keyframes pillMenuIn {
    from { opacity: 0; transform: translateY(-8px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 640px) {
    .site-header { width: calc(100% - 20px); }
    .brand img { height: 34px; }
    .pill-nav { grid-template-columns: 1fr; }
    .magic-bento { grid-template-columns: 1fr; }
    .solution-rail.magic-bento, .process-map.magic-bento { grid-template-columns: 1fr; gap: 22px; }
    .portfolio-case-grid { grid-template-columns: 1fr; }
    .hero, .page-hero, .section { padding-inline: 20px; }
    .hero { padding-top: 120px; }
    .section { padding-top: 52px; padding-bottom: 52px; }
    .compact-hero { min-height: 330px; padding-top: 84px; padding-bottom: 40px; }
    h1 { font-size: 40px; }
    .hero p, .page-hero p:not(.eyebrow) { font-size: 16px; }
    .hero-copy .trust-row { gap: 10px; }
    .hero-copy .trust-row span { min-height: 38px; padding-inline: 13px; font-size: 11px; }
    .hero-copy .action-row { gap: 10px; }
    .hero-copy .action-row .btn { width: 100%; min-width: 0; min-height: 48px; }
    .service-group { padding: 22px; }
    .magic-card { min-height: auto; }
    .home-services .magic-card, .testimonials .magic-card { min-height: auto; }
    .section-visual, .case-stream-visual { min-height: 230px; }
    .home-case-card { width: 84vw; min-height: 420px; padding: 20px; }
    .home-case-card h3 { font-size: 28px; }
    .solution-card.magic-card, .process-node.magic-card { min-height: auto; }
    .magic-card h2 { font-size: 26px; margin-top: 20px; }
    .magic-card p { font-size: 13px; }
    .neon-band { margin-inline: 20px; padding: 28px; }
    .client-ticker-section { padding: 52px 0; }
    .client-ticker-heading { width: calc(100% - 40px); margin-bottom: 20px; }
    .client-track { gap: 10px; animation-duration: 55s; }
    .client-logo-tile { width: 136px; height: 74px; padding: 12px 14px; }
    .client-logo-tile img { max-height: 44px; }
    .scan-ring { width: 280px; height: 280px; }
    .ring-two { width: 340px; height: 340px; }
    .kx-cube { width: 160px; height: 160px; }
    .hero-lottie-field {
        min-height: 260px;
        padding: 22px;
        opacity: .8;
    }
    .scroll-lottie {
        width: min(82vw, 320px);
        height: min(82vw, 320px);
        min-height: 250px;
        transform: translateX(0);
    }
    .kx-cube span:nth-child(1) { transform: rotateY(0deg) translateZ(80px); }
    .kx-cube span:nth-child(2) { transform: rotateY(90deg) translateZ(80px); }
    .kx-cube span:nth-child(3) { transform: rotateX(90deg) translateZ(80px); }
    .footer-strike, .footer-bottom { display: grid; }
    .horizontal-card { width: 82vw; min-height: 210px; }
    .koda-float {
        right: 12px;
        bottom: 12px;
    }
    .koda-chat-panel {
        right: -2px;
        bottom: clamp(76px, 18vw, 92px);
        width: min(92vw, 360px);
        height: min(72vh, 520px);
        border-radius: 18px;
    }
    .koda-greeting {
        max-width: min(68vw, 260px);
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
    .reveal { opacity: 1; transform: none; }
    .site-header.is-scrolled::after { opacity: .35; }
    .client-ticker { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
    .horizontal-track { animation: none !important; overflow-x: auto; }
    .case-scroll-viewport { mask-image: none; -webkit-mask-image: none; }
    .hero-particles { display: none; }
}

/* Homepage hero balance: lighter copy and a larger, continuously moving client wall. */
.hero-home {
    grid-template-columns: minmax(0, .82fr) minmax(440px, 1.18fr);
    gap: clamp(40px, 5vw, 76px);
}
.hero-home .hero-copy h1 {
    max-width: 640px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -.025em;
}
.hero-home .client-ticker-hero {
    min-height: 330px;
    padding: 48px 0 54px;
}
.hero-home .client-ticker {
    padding-block: 16px 24px;
}
.hero-home .client-track {
    gap: 22px;
    padding-right: 22px;
    animation-play-state: running !important;
}
.hero-home .client-logo-tile {
    width: 238px;
    height: 132px;
    padding: 22px 28px;
}
.hero-home .client-logo-tile img {
    max-height: 82px;
}

@media (max-width: 900px) {
    .hero-home {
        grid-template-columns: 1fr;
    }
    .hero-home .hero-copy h1 {
        max-width: 15ch;
        font-size: clamp(32px, 7vw, 44px);
        font-weight: 500;
    }
    .hero-home .client-ticker-hero {
        min-height: 290px;
        padding: 38px 0 44px;
    }
    .hero-home .client-logo-tile {
        width: 210px;
        height: 118px;
        padding: 20px 24px;
    }
    .hero-home .client-logo-tile img {
        max-height: 72px;
    }
}

@media (max-width: 520px) {
    .hero-home,
    .hero-trusted,
    .hero-home .client-ticker-hero,
    .hero-home .client-ticker {
        min-width: 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-home .hero-copy h1 {
        font-size: 30px;
        line-height: 1.08;
    }

    .hero-home .client-track {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding-right: 0;
        animation: none;
        transform: none;
    }

    .hero-home .client-track[aria-hidden="true"] {
        display: none;
    }

    .hero-home .client-logo-tile {
        width: 100%;
        height: 92px;
        padding: 16px 18px;
    }

    .hero-home .client-logo-tile img {
        max-height: 58px;
    }
}

.cms-grid-section {
    padding-top: 96px;
}

.cms-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.cms-post-card {
    min-height: 360px;
    padding: 24px;
}

.cms-post-media {
    display: block;
    margin: -8px -8px 20px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(50, 255, 0, .18);
    background: #fff;
}

.cms-post-media img,
.cms-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cms-post-card h3 {
    margin: 0 0 14px;
    font-size: clamp(24px, 2.3vw, 38px);
    line-height: .95;
}

.cms-post-card h3 a {
    color: #fff;
    text-decoration: none;
}

.text-link {
    color: var(--neon);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0;
}

.cms-single-hero {
    align-items: end;
}

.cms-featured {
    position: relative;
    min-height: 360px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(50, 255, 0, .24);
    background: #fff;
}

.cms-content {
    max-width: 920px;
    margin: 0 auto;
    color: rgba(255,255,255,.84);
    font-size: 17px;
    line-height: 1.8;
}

.cms-content h2,
.cms-content h3,
.cms-content h4 {
    color: #fff;
    line-height: 1.05;
    margin: 36px 0 14px;
}

.cms-content h2 { font-size: clamp(32px, 4vw, 56px); }
.cms-content h3 { font-size: clamp(24px, 3vw, 38px); }
.cms-content p { margin: 0 0 18px; }
.cms-content a { color: var(--neon); }
.cms-content img {
    max-width: 100%;
    height: auto;
    background: #fff;
    border: 1px solid rgba(50, 255, 0, .18);
}

.cms-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.cms-terms span {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 6px 12px;
    border: 1px solid rgba(50, 255, 0, .22);
    border-radius: 999px;
    color: var(--neon);
    background: rgba(50, 255, 0, .06);
    font-size: 12px;
    font-weight: 800;
}

.cms-tags {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid rgba(50, 255, 0, .2);
}

.form-error {
    border-color: rgba(255, 80, 80, .6);
    color: #fff;
    background: rgba(255, 40, 40, .12);
}

@media (max-width: 960px) {
    .cms-post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .cms-post-grid { grid-template-columns: 1fr; gap: 18px; }
    .cms-post-card { min-height: auto; padding: 20px; }
    .cms-featured { min-height: 240px; }
    .cms-content { font-size: 15px; }
}

/* Responsive hardening layer: keeps the neon identity while making the site touch-first. */
:where(a, button, input, select, textarea, .btn, .pill-link, .pill-action) {
    touch-action: manipulation;
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 3px;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 18;
    background: rgba(0, 0, 0, .62);
}

select {
    width: 100%;
    min-height: 48px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--white);
    background: #020602;
    font: inherit;
}

button,
.btn,
.pill-link,
.pill-action,
.text-link,
input,
select,
textarea {
    min-height: 44px;
}

.section,
.hero,
.page-hero,
.site-footer {
    max-width: 100%;
}

.client-ticker-section,
.client-ticker,
.home-case-studies {
    max-width: 100%;
    overflow-x: hidden;
}

.client-ticker-section,
.client-ticker {
    contain: layout paint;
}

.client-track {
    contain: layout paint;
}

.footer-grid a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

.breadcrumbs a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
}

@media (max-width: 980px) {
    .site-header::before,
    .site-header::after {
        inset: 0;
    }
}

.horizontal-viewport,
.case-scroll-viewport,
.client-ticker,
.koda-chat-messages {
    -webkit-overflow-scrolling: touch;
}

@media (hover: none), (pointer: coarse) {
    .magic-card,
    .client-logo-tile,
    .btn,
    .pill-link,
    .koda-character-button {
        transition: none;
    }

    .magic-card {
        transform: none !important;
        will-change: auto;
    }

    .spotlight-overlay,
    .border-glow,
    .bento-particle,
    .bento-ripple {
        display: none !important;
    }
}

@media (max-width: 980px) {
    body::before {
        background-size: 48px 48px;
        opacity: .72;
    }

    .site-header {
        position: sticky;
        top: max(8px, env(safe-area-inset-top));
        z-index: 30;
        width: min(100% - 20px, 760px);
        margin-top: 8px;
        margin-bottom: -76px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px;
    }

    .brand {
        min-width: 0;
        min-height: 52px;
        padding-inline: 12px;
    }

    .brand img {
        max-width: min(36vw, 150px);
        height: auto;
        max-height: 36px;
    }

    .nav-toggle {
        display: inline-grid !important;
        place-content: center;
        width: 52px;
        height: 52px;
        min-width: 52px;
        z-index: 31;
        opacity: 1;
        visibility: visible;
    }

    .pill-nav,
    .pill-actions {
        position: relative;
        z-index: 31;
        grid-column: 1 / -1;
        max-height: calc(100dvh - 92px - env(safe-area-inset-top));
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .pill-nav.open,
    .pill-actions.open {
        display: grid;
    }

    .pill-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 6px;
        border-radius: 24px;
    }

    .pill-actions {
        grid-template-columns: 1fr 1fr;
        border-radius: 24px;
    }

    .pill-link,
    .pill-action {
        min-height: 48px;
        padding-inline: 12px;
        font-size: 11px;
        white-space: normal;
        text-align: center;
    }

    .hero,
    .page-hero {
        min-height: auto;
        padding: clamp(116px, 18vw, 148px) clamp(20px, 5vw, 48px) clamp(48px, 10vw, 80px);
        gap: 28px;
        overflow: clip;
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-particles {
        opacity: .42;
    }

    h1 {
        font-size: clamp(34px, 9vw, 64px);
        line-height: .98;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .hero-copy,
    .page-hero > * {
        min-width: 0;
        max-width: 100%;
    }

    .hero-copy h1,
    .page-hero h1 {
        max-width: 9.5ch;
    }

    h2 {
        font-size: clamp(28px, 7vw, 42px);
    }

    h3 {
        font-size: clamp(20px, 5.4vw, 28px);
    }

    .hero p,
    .page-hero p:not(.eyebrow) {
        font-size: clamp(15px, 3.8vw, 17px);
        line-height: 1.65;
    }

    .hero-copy .action-row,
    .footer-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .hero-copy .action-row .btn,
    .footer-actions .btn {
        width: 100%;
        min-width: 0;
        padding-inline: 14px;
    }

    .hero-orbit {
        min-height: clamp(220px, 62vw, 360px);
        order: -1;
        opacity: .74;
    }

    .hero-lottie-field {
        min-height: clamp(220px, 62vw, 360px);
        padding: 14px;
    }

    .scroll-lottie {
        width: min(78vw, 360px);
        height: min(78vw, 360px);
        min-width: 0;
        min-height: 0;
        padding: 18px;
    }

    .scroll-lottie > svg {
        inset: 18px;
        width: calc(100% - 36px) !important;
        height: calc(100% - 36px) !important;
    }

    .section {
        padding: clamp(48px, 10vw, 72px) clamp(20px, 5vw, 48px);
    }

    .split,
    .visual-split,
    .home-case-studies,
    .contact-layout,
    .footer-grid,
    .footer-strike,
    .footer-bottom,
    .parallel-scroll,
    .resources-grid,
    .faq-section,
    .mission-grid,
    .values-grid,
    .case-study-intro {
        grid-template-columns: 1fr !important;
    }

    .section-visual,
    .home-problem .section-visual,
    .home-services .service-visual,
    .case-stream-visual,
    .cms-featured {
        min-height: 220px;
        aspect-ratio: 16 / 9;
    }

    .magic-bento,
    .service-index,
    .solution-rail.magic-bento,
    .process-map.magic-bento,
    .portfolio-case-grid,
    .cms-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .magic-card,
    .home-services .magic-card,
    .solution-card.magic-card,
    .process-node.magic-card,
    .cms-post-card,
    .sharp-card {
        min-height: auto;
        padding: clamp(20px, 4vw, 28px);
    }

    .magic-card h2,
    .magic-card h3,
    .home-case-card h3,
    .cms-post-card h3 {
        font-size: clamp(24px, 5.5vw, 34px);
    }

    .service-tags a,
    .cms-terms span,
    .trust-row span {
        min-height: 34px;
        display: inline-flex;
        align-items: center;
    }

    .horizontal-viewport,
    .case-scroll-viewport {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .horizontal-track,
    .case-scroll-track {
        gap: 14px;
    }

    .horizontal-card,
    .home-case-card {
        width: min(78vw, 360px);
        min-height: auto;
        scroll-snap-align: start;
    }

    .contact-command {
        position: static;
        padding: 24px;
    }

    .contact-form {
        padding: 22px;
    }

    input,
    select,
    textarea {
        font-size: 16px;
    }

    .site-footer {
        padding-inline: clamp(20px, 5vw, 48px);
    }

    .footer-strike {
        display: grid;
        align-items: start;
        padding-block: 36px;
    }

    .footer-bottom {
        gap: 8px;
    }

    .koda-float {
        right: max(12px, env(safe-area-inset-right));
        bottom: max(12px, env(safe-area-inset-bottom));
    }

    .koda-character-button {
        width: clamp(58px, 16vw, 74px);
        height: clamp(58px, 16vw, 74px);
    }

    .koda-chat-panel {
        position: fixed;
        right: max(10px, env(safe-area-inset-right));
        bottom: calc(max(10px, env(safe-area-inset-bottom)) + clamp(72px, 18vw, 86px));
        width: min(420px, calc(100vw - 20px));
        height: min(620px, calc(100dvh - 112px - env(safe-area-inset-top) - env(safe-area-inset-bottom)));
        max-height: none;
        border-radius: 18px;
    }
}

@media (max-width: 640px) {
    .site-header {
        width: calc(100vw - 16px);
        grid-template-columns: minmax(0, 1fr) 52px;
        overflow: visible;
    }

    .pill-nav,
    .pill-actions {
        grid-template-columns: 1fr;
    }

    .pill-actions {
        gap: 8px;
    }

    .site-header .nav-toggle.pill-toggle {
        position: fixed !important;
        top: max(12px, env(safe-area-inset-top));
        right: 10px;
        z-index: 10001;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        min-width: 52px;
        padding: 0;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
        transform: none !important;
        background: rgba(2, 10, 2, .92);
        border-color: rgba(50,255,0,.75);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 0 24px rgba(50,255,0,.18);
    }

    .site-header .nav-toggle.pill-toggle::before {
        inset: 3px 9px auto;
    }

    .site-header .nav-toggle.pill-toggle span {
        display: block !important;
        flex: 0 0 auto;
        width: 20px;
        height: 2px;
        margin: 3px 0;
        background: var(--neon);
    }

    .site-header .primary-nav.pill-nav,
    .site-header .header-cta.pill-actions {
        display: none !important;
    }

    .site-header .primary-nav.pill-nav.open,
    .site-header .header-cta.pill-actions.open {
        display: grid !important;
    }

    .hero-copy {
        width: 100%;
        max-width: calc(100vw - 40px);
        overflow: visible;
    }

    .hero-copy p,
    .page-hero p:not(.eyebrow),
    .answer-stack p,
    .magic-card p,
    .sharp-card p,
    .cms-content p {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .hero-copy .trust-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-copy .action-row,
    .footer-actions {
        grid-template-columns: 1fr;
    }

    .magic-bento,
    .service-index,
    .solution-rail.magic-bento,
    .process-map.magic-bento,
    .portfolio-case-grid,
    .cms-post-grid {
        grid-template-columns: 1fr;
    }

    .ticker span {
        padding: 14px 24px;
        font-size: 16px;
    }

    .ticker {
        padding: 12px 20px;
    }

    .ticker div {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        animation: none;
        transform: none;
    }

    .ticker span {
        padding: 8px 10px;
        border: 1px solid rgba(50,255,0,.22);
        font-size: 11px;
        line-height: 1.2;
    }

    .client-logo-tile {
        width: 132px;
        height: 72px;
    }

    .neon-band {
        margin-inline: 20px;
        padding: 24px;
    }

    .koda-greeting {
        max-width: min(74vw, 260px);
    }

    .koda-chat-form {
        gap: 8px;
        padding: 10px;
    }

    .koda-chat-form button {
        min-width: 68px;
        padding-inline: 12px;
    }
}

@media (max-width: 360px) {
    h1 {
        font-size: 31px;
    }

    .section,
    .hero,
    .page-hero {
        padding-inline: 16px;
    }

    .btn,
    .pill-link,
    .pill-action {
        font-size: 11px;
    }
}

@media (prefers-reduced-motion: reduce), (max-width: 640px) {
    .hero-particles {
        display: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .client-track,
    .ticker div {
        animation-duration: 120s;
    }
}

/* Final homepage hero sizing overrides. */
.hero-home {
    grid-template-columns: minmax(0, .82fr) minmax(440px, 1.18fr);
    gap: clamp(40px, 5vw, 76px);
}
.hero-home .hero-copy h1 {
    max-width: 640px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.06;
    font-weight: 500;
    letter-spacing: -.025em;
}
.hero-home .client-ticker-hero {
    min-height: 330px;
    padding: 48px 0 54px;
}
.hero-home .client-track {
    gap: 22px;
    padding-right: 22px;
    animation-play-state: running !important;
}
.hero-home .client-logo-tile {
    width: 238px;
    height: 132px;
    padding: 22px 28px;
}
.hero-home .client-logo-tile img {
    max-height: 82px;
}

@media (max-width: 900px) {
    .hero-home {
        grid-template-columns: 1fr;
    }
    .hero-home .hero-copy h1 {
        max-width: 15ch;
        font-size: clamp(32px, 7vw, 44px);
        font-weight: 500;
    }
    .hero-home .client-ticker-hero {
        min-height: 290px;
        padding: 38px 0 44px;
    }
    .hero-home .client-logo-tile {
        width: 210px;
        height: 118px;
        padding: 20px 24px;
    }
    .hero-home .client-logo-tile img {
        max-height: 72px;
    }
}

@media (max-width: 520px) {
    .hero-home .hero-copy h1 {
        font-size: 30px;
        line-height: 1.08;
    }
    .hero-home .client-logo-tile {
        width: 188px;
        height: 108px;
    }
}
