@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Sans+JP:wght@400;500;700&family=IBM+Plex+Mono:wght@400;500;600&family=JetBrains+Mono:wght@400;500;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --ink-graphite: #0D1B2A;
    --lab-white: #FFFFFF;
    --water-blue: #0099FF;
    --signal-orange: #FF4D00;
    --warning-yellow: #FFD700;
    --diag-fuchsia: #FF00AA;
    --soft-mist: #F4F6F8;
    --line-rule: #0D1B2A;
    --shadow-passive: 4px 4px 0 0 rgba(13, 27, 42, 0.90);
    --shadow-active: 8px 8px 0 0 rgba(0, 153, 255, 0.95);
    --shadow-orange: 8px 8px 0 0 rgba(255, 77, 0, 0.95);
    --radius-hard: 2px;
    --border-stroke: 1.5px solid var(--line-rule);
    --border-stroke-bold: 2px solid var(--line-rule);
    --font-display: 'Inter', 'IBM Plex Sans', sans-serif;
    --font-body: 'IBM Plex Sans JP', 'IBM Plex Sans', sans-serif;
    --font-mono: 'JetBrains Mono', 'IBM Plex Mono', monospace;
}

strong, p, span, a, li, h1, h2, h3, h4, h5, h6 {
    color: inherit;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--lab-white);
    color: var(--ink-graphite);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--water-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 200ms ease;
}

a:hover {
    border-bottom-color: var(--water-blue);
}

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

.lab-shell {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

.pill-shell {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1320px;
    z-index: 80;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: var(--border-stroke);
    border-radius: 999px;
    height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-passive);
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    background: var(--lab-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-graphite);
    flex-shrink: 0;
}

.brand-mark svg {
    width: 32px;
    height: 32px;
}

.brand-text {
    line-height: 1.1;
    display: flex;
    flex-direction: column;
}

.brand-text .domain {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--ink-graphite);
    letter-spacing: -0.02em;
}

.brand-text .site-name {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--ink-graphite);
    opacity: 0.7;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-pill li {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-graphite);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.nav-pill li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--signal-orange);
    transition: width 220ms ease;
}

.nav-pill li:hover::after,
.nav-pill li.is-active::after {
    width: 100%;
}

.nav-pill li.is-active a {
    color: var(--ink-graphite);
    font-weight: 700;
}

.nav-pill li a {
    color: inherit;
    border-bottom: none;
}

.nav-pill li .dot-sep {
    color: var(--water-blue);
    margin: 0 8px;
    font-weight: 700;
}

.nav-pill li:last-child .dot-sep {
    display: none;
}

.burger-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    background: var(--lab-white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    padding: 0;
}

.burger-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink-graphite);
    transition: transform 240ms ease, opacity 200ms ease;
}

.burger-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.burger-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.burger-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 84px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: 12px;
    padding: 24px;
    z-index: 75;
    box-shadow: var(--shadow-orange);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 520ms cubic-bezier(0.65, 0, 0.35, 1);
}

.mobile-menu.is-open {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-menu a {
    color: var(--ink-graphite);
    font-family: var(--font-mono);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    border-bottom: none;
    padding: 10px 6px;
    display: block;
    border-bottom: var(--border-stroke);
}

main {
    padding-top: 110px;
    min-height: 60vh;
}

.hero-frame {
    min-height: calc(100vh - 110px);
    background: var(--lab-white);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    color: var(--ink-graphite);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: center;
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 88px;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--ink-graphite);
    margin: 0 0 28px 0;
}

.hero-headline .accent-blue {
    color: var(--water-blue);
}

.hero-headline .accent-orange {
    color: var(--signal-orange);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-graphite);
    max-width: 520px;
    margin: 0 0 36px 0;
}

.hero-cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-pop {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    cursor: pointer;
    background: var(--lab-white);
    color: var(--ink-graphite);
    box-shadow: var(--shadow-passive);
    transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
    white-space: nowrap;
    border-bottom: var(--border-stroke);
    min-height: 52px;
}

.btn-pop:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0 0 rgba(13, 27, 42, 0.95);
    border-bottom: var(--border-stroke);
}

.btn-pop.btn-orange {
    background: var(--signal-orange);
    color: var(--lab-white);
}

.btn-pop.btn-orange:hover {
    box-shadow: 7px 7px 0 0 var(--ink-graphite);
}

.btn-pop.btn-blue {
    background: var(--water-blue);
    color: var(--lab-white);
}

.btn-pop.btn-blue:hover {
    box-shadow: 7px 7px 0 0 var(--ink-graphite);
}

.btn-pop.btn-outline {
    background: var(--lab-white);
    color: var(--ink-graphite);
}

.live-dispatch {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    padding: 10px 14px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.04em;
    color: var(--ink-graphite);
    box-shadow: var(--shadow-passive);
    z-index: 3;
    line-height: 1.5;
}

.live-dispatch .live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--signal-orange);
    margin-right: 6px;
    vertical-align: middle;
    animation: livepulse 1400ms infinite ease-in-out;
}

@keyframes livepulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-canvas canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-spec-card {
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    padding: 26px;
    box-shadow: var(--shadow-passive);
    position: relative;
    color: var(--ink-graphite);
}

.hero-spec-card .label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--water-blue);
    margin-bottom: 10px;
}

.hero-spec-card .value {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--ink-graphite);
    margin-bottom: 8px;
}

.hero-spec-card .meta {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-graphite);
    opacity: 0.7;
}

.hero-right-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.section-pad {
    padding: 110px 0;
    position: relative;
}

.section-pad.compact {
    padding: 70px 0;
}

.section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 56px;
}

.eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--water-blue);
    margin-bottom: 14px;
    display: block;
}

.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink-graphite);
    margin: 0;
}

.section-title .accent {
    color: var(--signal-orange);
}

.section-lede {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink-graphite);
    margin: 0;
    max-width: 480px;
    justify-self: end;
}

.split-screen {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    border: var(--border-stroke);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-passive);
    background: var(--lab-white);
}

.split-photo {
    position: sticky;
    top: 110px;
    height: 540px;
    background: var(--soft-mist);
    border-right: var(--border-stroke);
    overflow: hidden;
}

.split-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1);
    transition: filter 360ms ease;
}

.split-photo:hover img {
    filter: grayscale(0) contrast(1);
}

.split-content {
    padding: 56px 48px;
    color: var(--ink-graphite);
    background: var(--lab-white);
}

.split-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 18px 0;
    color: var(--ink-graphite);
    letter-spacing: -0.02em;
}

.split-content p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-graphite);
    margin: 0 0 16px 0;
}

.tech-strip {
    display: flex;
    gap: 24px;
    padding: 16px 0;
    border-top: var(--border-stroke);
    border-bottom: var(--border-stroke);
    margin: 24px 0;
    flex-wrap: wrap;
}

.tech-strip .cell {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-graphite);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.tech-strip .cell strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--signal-orange);
    margin-top: 4px;
}

.pull-quote {
    border-left: 4px solid var(--signal-orange);
    padding: 14px 18px;
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--signal-orange);
    margin: 28px 0;
    background: var(--lab-white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 130px;
    gap: 22px;
    margin-top: 24px;
}

.bento-card {
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    box-shadow: var(--shadow-passive);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, z-index 0ms;
    z-index: 1;
    color: var(--ink-graphite);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    transform: scale(1.03) translate(-2px, -2px);
    box-shadow: var(--shadow-active);
    z-index: 10;
}

.bento-card.span-4 {
    grid-column: span 4;
    grid-row: span 3;
}

.bento-card.span-5 {
    grid-column: span 5;
    grid-row: span 3;
}

.bento-card.span-6 {
    grid-column: span 6;
    grid-row: span 3;
}

.bento-card.span-8 {
    grid-column: span 8;
    grid-row: span 2;
}

.bento-card.span-3 {
    grid-column: span 3;
    grid-row: span 3;
}

.bento-card .icon-tile {
    width: 56px;
    height: 56px;
    background: var(--water-blue);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lab-white);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 3px 3px 0 0 var(--ink-graphite);
}

.bento-card .icon-tile.orange {
    background: var(--signal-orange);
}

.bento-card .icon-tile.fuchsia {
    background: var(--diag-fuchsia);
}

.bento-card .icon-tile.yellow {
    background: var(--warning-yellow);
    color: var(--ink-graphite);
}

.bento-card .card-articul {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    color: var(--water-blue);
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink-graphite);
    margin: 0 0 10px 0;
    letter-spacing: -0.01em;
}

.bento-card .price {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 24px;
    color: var(--signal-orange);
    margin-top: 8px;
}

.bento-card .card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.bento-card .card-link {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-graphite);
    font-weight: 700;
    border-bottom: none;
}

.bento-card .card-link:hover {
    color: var(--signal-orange);
}

.node-graph {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
    margin-top: 36px;
    position: relative;
    align-items: start;
}

.node-step {
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    padding: 18px 14px;
    box-shadow: var(--shadow-passive);
    position: relative;
    z-index: 1;
    transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), z-index 0ms, box-shadow 280ms ease;
    color: var(--ink-graphite);
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.node-step:hover {
    transform: translateY(-6px) scale(1.04);
    z-index: 10;
    box-shadow: var(--shadow-active);
}

.node-step .num {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 800;
    color: var(--water-blue);
    margin-bottom: 10px;
}

.node-step:nth-child(odd) .num {
    color: var(--signal-orange);
}

.node-step h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--ink-graphite);
}

.node-step p {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.5;
    color: var(--ink-graphite);
    margin: 0;
}

.flex-grow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 32px;
}

.flex-card {
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    padding: 28px;
    box-shadow: var(--shadow-passive);
    transition: flex-grow 280ms ease, transform 280ms ease, box-shadow 280ms ease;
    color: var(--ink-graphite);
}

.flex-card:hover {
    background: var(--water-blue);
    color: var(--lab-white);
    box-shadow: var(--shadow-active);
    transform: translate(-4px, -4px);
}

.flex-card:hover .flex-num,
.flex-card:hover h4,
.flex-card:hover p {
    color: var(--lab-white);
}

.flex-card .flex-num {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--water-blue);
    margin-bottom: 12px;
}

.flex-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--ink-graphite);
}

.flex-card p {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-graphite);
    margin: 0;
}

.masonry-stream {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 32px;
}

.masonry-cell {
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    box-shadow: var(--shadow-passive);
    overflow: hidden;
    transition: transform 280ms ease, box-shadow 280ms ease;
    color: var(--ink-graphite);
}

.masonry-cell:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0 0 var(--signal-orange);
}

.masonry-cell .photo {
    height: 180px;
    background: var(--soft-mist);
    border-bottom: var(--border-stroke);
    overflow: hidden;
}

.masonry-cell .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.masonry-cell .meta {
    padding: 16px;
}

.masonry-cell .meta h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--ink-graphite);
}

.masonry-cell .meta p {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--water-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.team-canvas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.team-card {
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    box-shadow: var(--shadow-passive);
    overflow: hidden;
    transition: transform 320ms ease, box-shadow 320ms ease;
    color: var(--ink-graphite);
}

.team-card:hover {
    transform: translate(-4px, -4px) rotate(-1deg);
    box-shadow: var(--shadow-active);
}

.team-card .portrait {
    height: 240px;
    background: var(--soft-mist);
    border-bottom: var(--border-stroke);
    overflow: hidden;
    position: relative;
}

.team-card .portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card .portrait .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--water-blue);
    color: var(--lab-white);
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.team-card .info {
    padding: 20px;
}

.team-card .info h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--ink-graphite);
}

.team-card .info .role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--signal-orange);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    display: block;
}

.team-card .info p {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-graphite);
    margin: 0;
}

.faq-rail {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.faq-item {
    background: var(--lab-white);
    border: var(--border-stroke);
    border-left: 4px solid var(--signal-orange);
    border-radius: var(--radius-hard);
    box-shadow: var(--shadow-passive);
    overflow: hidden;
    transition: box-shadow 240ms ease, transform 240ms ease;
    color: var(--ink-graphite);
}

.faq-item.is-open {
    box-shadow: var(--shadow-orange);
    transform: translate(-2px, -2px);
    z-index: 5;
}

.faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 22px 24px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink-graphite);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.4;
    min-height: 44px;
}

.faq-q .indicator {
    width: 28px;
    height: 28px;
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    background: var(--water-blue);
    color: var(--lab-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    transition: background 200ms ease;
}

.faq-item.is-open .faq-q .indicator {
    background: var(--signal-orange);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 360ms ease, padding 360ms ease;
    padding: 0 24px;
}

.faq-item.is-open .faq-a {
    max-height: 600px;
    padding: 0 24px 24px;
}

.faq-a p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-graphite);
    margin: 0;
}

.coverflow-stage {
    margin-top: 40px;
    perspective: 1200px;
    padding: 40px 0;
}

.coverflow-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 12px;
    scrollbar-width: thin;
    scrollbar-color: var(--water-blue) var(--soft-mist);
}

.coverflow-card {
    flex: 0 0 360px;
    scroll-snap-align: center;
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    box-shadow: var(--shadow-passive);
    padding: 28px;
    color: var(--ink-graphite);
    transition: transform 280ms ease, box-shadow 280ms ease;
}

.coverflow-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-orange);
}

.coverflow-card .quote-mark {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 0.6;
    color: var(--water-blue);
    margin-bottom: 8px;
    display: block;
}

.coverflow-card blockquote {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-graphite);
    margin: 0 0 20px 0;
}

.coverflow-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: var(--border-stroke);
    padding-top: 16px;
}

.coverflow-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--water-blue);
    border: var(--border-stroke);
    color: var(--lab-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.coverflow-card .author-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-graphite);
    margin: 0;
}

.coverflow-card .author-loc {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--water-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.cta-block {
    background: var(--ink-graphite);
    color: var(--lab-white);
    padding: 80px 56px;
    border: var(--border-stroke);
    border-radius: 4px;
    box-shadow: var(--shadow-orange);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-block h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--lab-white);
    margin: 0 0 18px 0;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.cta-block h2 .accent {
    color: var(--warning-yellow);
}

.cta-block p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--lab-white);
    margin: 0 0 32px 0;
    max-width: 560px;
    opacity: 0.92;
}

.cta-block .btn-pop {
    background: var(--warning-yellow);
    color: var(--ink-graphite);
    border-color: var(--lab-white);
}

.cta-block .btn-pop:hover {
    box-shadow: 7px 7px 0 0 var(--water-blue);
}

.cta-block .live-strip {
    position: absolute;
    bottom: 16px;
    right: 24px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--water-blue);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-capsule {
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    box-shadow: var(--shadow-passive);
    padding: 40px;
    margin-top: 32px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.contact-grid .info-row {
    margin-bottom: 18px;
}

.contact-grid .info-row .label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--water-blue);
    margin-bottom: 4px;
    display: block;
}

.contact-grid .info-row .value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink-graphite);
    border-bottom: none;
}

.contact-grid .info-row a.value {
    color: var(--ink-graphite);
}

.contact-grid .info-row a.value:hover {
    color: var(--signal-orange);
}

.iso-map {
    width: 100%;
    height: 360px;
    background: var(--soft-mist);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    margin-top: 32px;
    position: relative;
    overflow: hidden;
}

.iso-map svg {
    width: 100%;
    height: 100%;
}

.form-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-stack .field-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-stack label {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-graphite);
    font-weight: 600;
}

.form-stack input,
.form-stack select,
.form-stack textarea {
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink-graphite);
    box-shadow: 2px 2px 0 0 var(--ink-graphite);
    min-height: 48px;
    transition: box-shadow 200ms ease;
    width: 100%;
}

.form-stack input:focus,
.form-stack select:focus,
.form-stack textarea:focus {
    outline: none;
    box-shadow: 4px 4px 0 0 var(--water-blue);
    border-color: var(--water-blue);
}

.form-stack textarea {
    min-height: 120px;
    resize: vertical;
}

.form-stack .req {
    color: var(--signal-orange);
}

.form-stack .submit-row {
    display: flex;
    justify-content: flex-start;
    margin-top: 8px;
}

.form-success {
    display: none;
    background: var(--water-blue);
    color: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    padding: 24px;
    font-family: var(--font-body);
    font-size: 16px;
    box-shadow: var(--shadow-passive);
}

.form-success.is-visible {
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 420px;
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: 4px;
    box-shadow: var(--shadow-orange);
    padding: 18px;
    z-index: 90;
    color: var(--ink-graphite);
}

.cookie-banner.is-hidden {
    display: none;
}

.cookie-banner h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--ink-graphite);
}

.cookie-banner p {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-graphite);
    margin: 0 0 14px 0;
}

.cookie-banner .cookie-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-banner .cookie-btn {
    padding: 8px 14px;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    cursor: pointer;
    background: var(--lab-white);
    color: var(--ink-graphite);
    min-height: 36px;
    white-space: nowrap;
}

.cookie-banner .cookie-btn:hover {
    background: var(--ink-graphite);
    color: var(--lab-white);
}

.cookie-banner .cookie-btn.accept {
    background: var(--signal-orange);
    color: var(--lab-white);
    border-color: var(--ink-graphite);
}

.cookie-banner .cookie-link {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--water-blue);
    text-decoration: underline;
    margin-top: 12px;
    display: inline-block;
}

footer.lab-footer {
    background: var(--ink-graphite);
    color: var(--lab-white);
    padding: 80px 0 30px;
    margin-top: 60px;
    border-top: 4px solid var(--signal-orange);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-grid h5 {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--water-blue);
    margin: 0 0 18px 0;
}

.footer-grid p,
.footer-grid li {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--lab-white);
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-grid a {
    color: var(--lab-white);
    border-bottom: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 14px;
}

.footer-grid a:hover {
    border-bottom-color: var(--warning-yellow);
    color: var(--warning-yellow);
}

.footer-grid address {
    font-style: normal;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--lab-white);
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--lab-white);
    margin: 0;
    letter-spacing: 0.06em;
}

.footer-bottom .legal-rail {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom .legal-rail a {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--lab-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.compact-hero {
    padding: 60px 0 50px;
    background: var(--lab-white);
    border-bottom: var(--border-stroke);
    color: var(--ink-graphite);
}

.compact-hero h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink-graphite);
    margin: 0 0 18px 0;
}

.compact-hero h1 .accent {
    color: var(--signal-orange);
}

.compact-hero p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-graphite);
    max-width: 720px;
    margin: 0;
}

.crumbs {
    display: flex;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-graphite);
    margin-bottom: 14px;
    opacity: 0.7;
}

.crumbs a {
    color: var(--ink-graphite);
    border-bottom: none;
}

.crumbs a:hover {
    color: var(--signal-orange);
}

.thanks-stage {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    color: var(--ink-graphite);
}

.thanks-card {
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: 4px;
    box-shadow: var(--shadow-orange);
    padding: 56px;
    text-align: left;
    max-width: 720px;
    position: relative;
}

.thanks-card .check-tag {
    width: 64px;
    height: 64px;
    background: var(--signal-orange);
    color: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-display);
    box-shadow: 4px 4px 0 0 var(--ink-graphite);
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    color: var(--ink-graphite);
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.thanks-card h1 .accent {
    color: var(--water-blue);
}

.thanks-card p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink-graphite);
    margin: 0 0 16px 0;
}

.thanks-card .specs {
    border-top: var(--border-stroke);
    margin-top: 28px;
    padding-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.thanks-card .specs .cell {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-graphite);
}

.thanks-card .specs .cell strong {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--water-blue);
    margin-top: 4px;
}

.legal-shell {
    padding: 60px 0 80px;
    color: var(--ink-graphite);
}

.legal-shell h1 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    color: var(--ink-graphite);
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.legal-shell h2 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink-graphite);
    margin: 32px 0 12px 0;
}

.legal-shell p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-graphite);
    margin: 0 0 14px 0;
}

.legal-shell ul {
    margin: 0 0 18px 0;
    padding-left: 22px;
}

.legal-shell li {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-graphite);
    margin-bottom: 8px;
}

.prose-flow {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-graphite);
}

.prose-flow p {
    margin: 0 0 18px 0;
}

.prose-flow h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink-graphite);
    margin: 28px 0 12px 0;
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.is-in {
    opacity: 1;
    transform: translateY(0);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    margin-top: 32px;
}

.service-detail-grid .main-pane {
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    padding: 36px;
    box-shadow: var(--shadow-passive);
    color: var(--ink-graphite);
}

.service-detail-grid .side-pane {
    background: var(--ink-graphite);
    color: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    padding: 36px;
    box-shadow: var(--shadow-orange);
}

.service-detail-grid .main-pane h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--ink-graphite);
    margin: 24px 0 14px 0;
}

.service-detail-grid .main-pane h2:first-child {
    margin-top: 0;
}

.service-detail-grid .main-pane p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-graphite);
    margin: 0 0 16px 0;
}

.service-detail-grid .main-pane ul {
    padding-left: 22px;
    margin: 0 0 18px 0;
}

.service-detail-grid .main-pane li {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-graphite);
    margin-bottom: 6px;
}

.service-detail-grid .side-pane h3 {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--warning-yellow);
    margin: 0 0 18px 0;
}

.service-detail-grid .side-pane .price-big {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--warning-yellow);
    margin-bottom: 12px;
}

.service-detail-grid .side-pane .row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--lab-white);
}

.service-detail-grid .side-pane .row:last-of-type {
    border-bottom: 0;
}

.service-detail-grid .side-pane .row strong {
    color: var(--lab-white);
    font-family: var(--font-mono);
}

.process-track {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
    margin-top: 40px;
    align-items: start;
}

.process-track .step {
    background: var(--lab-white);
    border: var(--border-stroke);
    border-radius: var(--radius-hard);
    box-shadow: var(--shadow-passive);
    padding: 22px 16px;
    position: relative;
    transition: transform 280ms ease, box-shadow 280ms ease;
    color: var(--ink-graphite);
}

.process-track .step:nth-child(even) {
    transform: translateY(28px);
}

.process-track .step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-active);
}

.process-track .step:nth-child(even):hover {
    transform: translateY(22px);
}

.process-track .step .num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--signal-orange);
    margin-bottom: 8px;
    line-height: 1;
}

.process-track .step:nth-child(3n) .num {
    color: var(--water-blue);
}

.process-track .step h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink-graphite);
    margin: 0 0 8px 0;
}

.process-track .step p {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.5;
    color: var(--ink-graphite);
    margin: 0;
}

@media (max-width: 1100px) {
    .hero-headline {
        font-size: 64px;
    }
    .section-title {
        font-size: 44px;
    }
    .node-graph,
    .process-track {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-track .step:nth-child(even) {
        transform: none;
    }
    .process-track .step:nth-child(even):hover {
        transform: translateY(-6px);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .pill-shell {
        height: 56px;
        padding: 0 14px;
        width: calc(100% - 40px);
        max-width: calc(100% - 40px);
    }
    .brand-text .site-name {
        display: none;
    }
    .nav-pill {
        display: none;
    }
    .burger-toggle {
        display: inline-flex;
    }
    main {
        padding-top: 86px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-headline {
        font-size: 48px;
    }
    .live-dispatch {
        position: static;
        display: inline-block;
        margin-bottom: 18px;
    }
    .hero-frame {
        padding: 40px 0 60px;
        min-height: auto;
    }
    .section-head {
        grid-template-columns: 1fr;
    }
    .section-lede {
        justify-self: start;
    }
    .split-screen {
        grid-template-columns: 1fr;
    }
    .split-photo {
        position: static;
        height: 320px;
    }
    .bento-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    .bento-card.span-4,
    .bento-card.span-6,
    .bento-card.span-8,
    .bento-card.span-3 {
        grid-column: span 6;
        grid-row: span 2;
    }
    .flex-grow-grid {
        grid-template-columns: 1fr;
    }
    .masonry-stream {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-canvas {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .thanks-card .specs {
        grid-template-columns: 1fr;
    }
    .compact-hero h1 {
        font-size: 38px;
    }
    .legal-shell h1 {
        font-size: 32px;
    }
    .cta-block {
        padding: 32px 20px;
    }
    .cta-block h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .lab-shell {
        padding: 0 18px;
    }
    .hero-headline {
        font-size: 36px;
    }
    .section-title {
        font-size: 32px;
    }
    .section-pad {
        padding: 70px 0;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card.span-4,
    .bento-card.span-6,
    .bento-card.span-8,
    .bento-card.span-3 {
        grid-column: span 1;
        grid-row: span 2;
    }
    .node-graph,
    .process-track {
        grid-template-columns: 1fr;
    }
    .masonry-stream,
    .team-canvas {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .node-step {
        min-height: auto;
    }
    .compact-hero h1 {
        font-size: 30px;
    }
    .thanks-card {
        padding: 32px 24px;
    }
    .thanks-card h1 {
        font-size: 28px;
    }
}
