:root {
    --bg: #07090d;
    --bg-soft: #0b0e14;
    --surface: #0e1219;
    --surface-2: #121720;
    --line: rgba(255, 255, 255, 0.09);
    --line-strong: rgba(255, 255, 255, 0.16);
    --text: #f2f5f7;
    --text-soft: #a8b0ba;
    --text-muted: #6f7885;
    --mint: #8dffd2;
    --mint-strong: #50e6aa;
    --mint-dim: rgba(141, 255, 210, 0.12);
    --blue: #76a9ff;
    --danger: #ff6d78;
    --font-sans: Inter, "SF Pro Display", "Segoe UI", Arial, sans-serif;
    --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    --shell: 1240px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
    --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #303844 var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 85% 5%, rgba(75, 118, 145, 0.10), transparent 30%),
        var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--mint);
    color: #04110d;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: #303844;
    border-radius: 20px;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

svg {
    display: block;
}

.shell {
    width: min(calc(100% - 48px), var(--shell));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 10px 14px;
    transform: translateY(-150%);
    border-radius: 8px;
    background: var(--mint);
    color: #07100d;
    font-weight: 700;
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

.page-noise {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.cursor-glow {
    position: fixed;
    z-index: -1;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(105, 233, 185, .055), transparent 66%);
    transform: translate(-50%, -50%);
    transition: opacity .3s ease;
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 2000;
    height: 2px;
    pointer-events: none;
}

.scroll-progress i {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--mint-strong), var(--mint), var(--blue));
    box-shadow: 0 0 16px rgba(141, 255, 210, .45);
}

[data-reveal] {
    opacity: 1;
    transform: none;
}

.motion-ready [data-reveal] {
    opacity: 0;
    filter: blur(7px);
    transform: translateY(38px) scale(.988);
    transition:
        opacity .9s var(--ease),
        filter .9s var(--ease),
        transform .9s var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready [data-reveal].is-visible {
    opacity: 1;
    filter: none;
    transform: translateY(0);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: 82px;
    border-bottom: 1px solid transparent;
    transition:
        height .35s var(--ease),
        background .35s ease,
        border-color .35s ease,
        backdrop-filter .35s ease;
}

.site-header.is-scrolled {
    height: 70px;
    border-color: var(--line);
    background: rgba(7, 9, 13, .82);
    backdrop-filter: blur(22px);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 11px;
    color: var(--text);
    text-decoration: none;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(141, 255, 210, .24);
    border-radius: 11px;
    background: rgba(141, 255, 210, .055);
}

.brand-mark svg {
    width: 25px;
    fill: none;
    stroke: var(--mint);
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-copy {
    display: flex;
    align-items: baseline;
    letter-spacing: -.04em;
}

.brand-copy strong {
    font-size: 16px;
    font-weight: 850;
}

.brand-copy span {
    margin-left: 3px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(10, 14, 19, .52);
    backdrop-filter: blur(16px);
}

.desktop-nav a {
    position: relative;
    padding: 7px 12px;
    border-radius: 8px;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}

.desktop-nav a::after {
    display: none;
}

.desktop-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, .045);
}

.desktop-nav a:hover::after {
    transform: scaleX(1);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 12px;
    padding: 11px 16px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    color: var(--text);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition:
        border-color .25s ease,
        background .25s ease,
        color .25s ease;
}

.header-cta svg,
.text-link svg,
.button svg,
.form-submit svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s var(--ease);
}

.header-cta:hover {
    border-color: var(--mint);
    background: var(--mint);
    color: #06110d;
}

.header-cta:hover svg,
.text-link:hover svg,
.button-primary:hover svg,
.form-submit:hover svg {
    transform: translateX(3px);
}

.menu-toggle,
.mobile-menu {
    display: none;
}

.hero {
    position: relative;
    z-index: 0;
    isolation: isolate;
    min-height: 860px;
    overflow: hidden;
    padding: 178px 0 44px;
}

.matrix-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent 1%, #000 15%, #000 78%, transparent 98%);
}

.matrix-layer span {
    position: absolute;
    top: -62%;
    left: var(--left);
    color: rgba(92, 246, 180, var(--stream-opacity));
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.65;
    white-space: pre;
    text-align: center;
    text-shadow: 0 0 8px rgba(80, 230, 170, .26);
    animation: matrix-fall var(--duration) linear var(--delay) infinite;
}

.matrix-layer span:nth-child(3n) {
    color: rgba(168, 255, 220, var(--stream-opacity));
}

@keyframes matrix-fall {
    from { transform: translateY(-8%); }
    to { transform: translateY(380%); }
}

.hero-grid,
.contact-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.hero-grid::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.hero-orb-one {
    top: 70px;
    right: -220px;
    width: 630px;
    height: 630px;
    background: radial-gradient(circle, rgba(91, 161, 184, .11), transparent 68%);
}

.hero-orb-two {
    bottom: 0;
    left: -180px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(85, 229, 174, .055), transparent 70%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(520px, .98fr);
    gap: 76px;
    align-items: center;
}

.hero-copy {
    position: relative;
    isolation: isolate;
}

.hero-copy::before {
    position: absolute;
    inset: -55px -40px;
    z-index: -1;
    content: "";
    pointer-events: none;
    background: radial-gradient(ellipse at 38% 46%, rgba(7, 9, 13, .84), rgba(7, 9, 13, .45) 54%, transparent 78%);
    filter: blur(9px);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    color: var(--mint);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.status-dot {
    position: relative;
    width: 7px;
    height: 7px;
    margin-right: 11px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 16px rgba(141, 255, 210, .8);
}

.status-dot::after {
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(141, 255, 210, .35);
    border-radius: 50%;
    content: "";
    animation: status-pulse 2s ease-out infinite;
}

@keyframes status-pulse {
    0% { transform: scale(.6); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.hero h1 {
    max-width: 730px;
    margin: 24px 0 27px;
    font-size: clamp(48px, 5.4vw, 79px);
    font-weight: 770;
    letter-spacing: -.065em;
    line-height: .99;
}

.hero h1 span {
    background: linear-gradient(100deg, var(--mint) 10%, #d7fff0 52%, var(--blue) 100%);
    background-clip: text;
    color: transparent;
}

.hero-lead {
    max-width: 620px;
    margin: 0;
    color: var(--text-soft);
    font-size: 18px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    transition:
        transform .25s var(--ease),
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--mint);
    color: #06110d;
    box-shadow: 0 13px 40px rgba(82, 230, 174, .13);
}

.button-primary:hover {
    background: #a6ffdc;
    box-shadow: 0 18px 50px rgba(82, 230, 174, .2);
}

.button-ghost {
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, .025);
    color: var(--text);
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .05);
}

.hero-assurances {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin: 42px 0 0;
    padding: 0;
    color: var(--text-muted);
    list-style: none;
}

.hero-assurances li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

.hero-assurances span {
    color: var(--mint);
    font-family: var(--font-mono);
    font-size: 9px;
}

.hero-visual {
    position: relative;
    perspective: 1100px;
}

.visual-orbit {
    position: absolute;
    inset: -54px;
    z-index: -1;
    pointer-events: none;
    opacity: .34;
    animation: orbit-spin 34s linear infinite;
}

.visual-orbit svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.visual-orbit text {
    fill: var(--mint);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: .23em;
}

@keyframes orbit-spin {
    to { transform: rotate(360deg); }
}

.hero-visual::before {
    position: absolute;
    inset: 7% -7%;
    z-index: -1;
    border-radius: 50%;
    content: "";
    background: radial-gradient(circle, rgba(106, 205, 167, .12), transparent 67%);
    filter: blur(20px);
}

.visual-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(19, 25, 34, .94), rgba(9, 12, 17, .97));
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, .5),
        0 40px 110px rgba(0, 0, 0, .46);
    animation: visual-float 7s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes visual-float {
    0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
    50% { transform: translateY(-8px) rotateX(.5deg) rotateY(-.7deg); }
}

.visual-topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 48px;
    padding: 0 17px;
    border-bottom: 1px solid var(--line);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .12em;
}

.visual-dots {
    display: flex;
    gap: 5px;
}

.visual-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #39414d;
}

.visual-dots span:first-child {
    background: #705157;
}

.visual-live {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 6px;
    color: var(--mint);
}

.visual-live i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 8px var(--mint);
}

.visual-body {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 420px;
}

.radar-wrap {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding: 36px 18px 22px;
    border-right: 1px solid var(--line);
}

.radar {
    position: relative;
    width: min(245px, 100%);
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(141, 255, 210, .16);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(141, 255, 210, .06), transparent 65%),
        #09100f;
}

.radar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(141, 255, 210, .12);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.radar-ring-one { width: 72%; height: 72%; }
.radar-ring-two { width: 46%; height: 46%; }
.radar-ring-three { width: 20%; height: 20%; }

.radar-axis {
    position: absolute;
    background: rgba(141, 255, 210, .08);
}

.radar-axis-x {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
}

.radar-axis-y {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
}

.radar-sweep {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, transparent 0 79%, rgba(141, 255, 210, .19) 95%, rgba(141, 255, 210, .03) 100%);
    animation: radar-sweep 7s linear infinite;
}

@keyframes radar-sweep {
    to { transform: rotate(360deg); }
}

.radar-core {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(141, 255, 210, .32);
    border-radius: 18px;
    background: rgba(7, 15, 13, .88);
    box-shadow: 0 0 45px rgba(141, 255, 210, .13);
}

.radar-core svg {
    width: 32px;
    fill: none;
    stroke: var(--mint);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.radar-node {
    position: absolute;
    width: 7px;
    height: 7px;
    border: 2px solid #0a1110;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 12px var(--mint);
}

.node-one { top: 26%; left: 67%; }
.node-two { top: 66%; left: 24%; animation: node-blink 2s ease-in-out infinite; }
.node-three { top: 72%; left: 72%; animation: node-blink 2.4s .5s ease-in-out infinite; }

@keyframes node-blink {
    50% { opacity: .3; }
}

.radar-caption {
    position: absolute;
    bottom: 24px;
    left: 28px;
    display: none;
}

.visual-feed {
    display: flex;
    flex-direction: column;
    padding: 26px 22px 20px;
}

.feed-heading {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.visual-feed ol {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.visual-feed li {
    display: grid;
    grid-template-columns: 8px 1fr auto;
    gap: 9px;
    align-items: center;
    min-height: 41px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 9px;
    background: rgba(255, 255, 255, .018);
}

.visual-feed li i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 8px rgba(141, 255, 210, .5);
}

.visual-feed li span {
    color: #d6dce1;
    font-size: 10px;
    font-weight: 700;
}

.visual-feed li b {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 7px;
    font-weight: 500;
}

.visual-feed li.is-active {
    border-color: rgba(141, 255, 210, .22);
    background: rgba(141, 255, 210, .055);
}

.visual-feed li.is-active b {
    color: var(--mint);
}

.risk-signal {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    padding: 19px 4px 3px;
}

.risk-signal > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.risk-signal span {
    color: var(--text-muted);
    font-size: 8px;
}

.risk-signal strong {
    font-size: 12px;
}

.signal-bars {
    display: flex;
    height: 30px;
    align-items: flex-end;
    gap: 3px;
}

.signal-bars i {
    display: block;
    width: 4px;
    border-radius: 2px;
    background: var(--mint);
    opacity: .7;
}

.signal-bars i:nth-child(1) { height: 7px; }
.signal-bars i:nth-child(2) { height: 12px; }
.signal-bars i:nth-child(3) { height: 18px; }
.signal-bars i:nth-child(4) { height: 13px; }
.signal-bars i:nth-child(5) { height: 24px; }
.signal-bars i:nth-child(6) { height: 30px; }

.visual-footer {
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: space-around;
    border-top: 1px solid var(--line);
}

.visual-footer span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 7px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.visual-footer i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--mint);
}

.standards-strip {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 82px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.standards-strip > span {
    color: var(--text-muted);
    font-size: 11px;
}

.standards-strip > div {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
}

.standards-strip b {
    color: #7d8692;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
}

.scroll-cue {
    position: absolute;
    right: 18px;
    bottom: 64px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: rotate(90deg);
    transform-origin: right center;
    color: #697481;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .14em;
    text-decoration: none;
    text-transform: uppercase;
}

.scroll-cue i {
    position: relative;
    display: block;
    width: 44px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .15);
}

.scroll-cue i::after {
    position: absolute;
    inset: 0;
    content: "";
    background: var(--mint);
    animation: scroll-line 2s var(--ease) infinite;
}

@keyframes scroll-line {
    0% { transform: translateX(-105%); }
    55%, 100% { transform: translateX(105%); }
}

.signal-marquee {
    position: relative;
    z-index: 5;
    overflow: hidden;
    padding: 24px 0;
    border-block: 1px solid var(--line);
    background: #080b0f;
}

.marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 28px;
    color: var(--text);
    font-size: clamp(36px, 4.8vw, 70px);
    font-weight: 760;
    letter-spacing: -.055em;
    line-height: 1;
    white-space: nowrap;
    animation: marquee-left 34s linear infinite;
}

.marquee-track i {
    color: var(--mint);
    font-family: var(--font-mono);
    font-size: .42em;
    font-style: normal;
}

.marquee-track-reverse {
    margin-top: 14px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(242, 245, 247, .42);
    font-size: clamp(21px, 2.8vw, 40px);
    animation-name: marquee-right;
    animation-duration: 28s;
}

@keyframes marquee-left {
    to { transform: translateX(-50%); }
}

@keyframes marquee-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.section {
    position: relative;
    padding: 128px 0;
}

.services-section {
    border-top: 1px solid var(--line);
    background: #090c11;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 100px;
    align-items: end;
    margin-bottom: 62px;
}

.section-heading h2,
.approach-copy h2,
.deliverables-copy h2,
.about-copy h2,
.faq-heading h2,
.contact-copy h2 {
    margin: 18px 0 0;
    font-size: clamp(39px, 4.2vw, 60px);
    font-weight: 720;
    letter-spacing: -.055em;
    line-height: 1.05;
}

.section-heading > p,
.approach-copy > p,
.deliverables-copy > p,
.faq-heading > p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

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

.service-card {
    position: relative;
    display: flex;
    min-height: 355px;
    flex-direction: column;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .025), transparent 45%),
        var(--surface);
    transition:
        transform .35s var(--ease),
        border-color .35s ease,
        background .35s ease;
}

.service-card::before,
.deliverables-grid > div::before,
.code-card::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    content: "";
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(
        360px circle at var(--spot-x, 50%) var(--spot-y, 50%),
        rgba(141, 255, 210, .11),
        transparent 48%
    );
    transition: opacity .3s ease;
}

.service-card:hover::before,
.deliverables-grid > div:hover::before,
.code-card:hover::before {
    opacity: 1;
}

.service-card::after {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    content: "";
    background: radial-gradient(circle, rgba(141, 255, 210, .06), transparent 68%);
    transition: transform .5s var(--ease);
}

.service-card:hover {
    z-index: 2;
    transform: translateY(-6px);
    border-color: rgba(141, 255, 210, .26);
    background-color: #11161d;
}

.service-card:hover::after {
    transform: scale(1.35);
}

.service-card-wide {
    grid-column: span 2;
}

.service-card-accent {
    background:
        linear-gradient(145deg, rgba(141, 255, 210, .12), transparent 55%),
        #101a18;
}

.service-card-dark {
    background:
        linear-gradient(120deg, rgba(118, 169, 255, .08), transparent 60%),
        #0d1118;
}

.card-index {
    position: absolute;
    top: 26px;
    right: 27px;
    color: #444d59;
    font-family: var(--font-mono);
    font-size: 10px;
}

.card-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: auto;
    border: 1px solid rgba(141, 255, 210, .16);
    border-radius: 13px;
    background: rgba(141, 255, 210, .055);
    color: var(--mint);
}

.card-icon svg {
    width: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card-copy {
    position: relative;
    z-index: 2;
    margin-top: 38px;
}

.card-copy > span {
    color: var(--mint);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.card-copy h3 {
    margin: 9px 0 11px;
    font-size: 22px;
    font-weight: 680;
    letter-spacing: -.03em;
}

.card-copy p {
    max-width: 520px;
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.65;
}

.service-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 23px 0 0;
    padding: 0;
    list-style: none;
}

.service-card li,
.card-meta {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: #8e98a4;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .05em;
}

.card-meta {
    display: flex;
    align-items: center;
    align-self: flex-start;
    gap: 7px;
    margin-top: 23px;
}

.card-meta i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mint);
}

.approach-section {
    overflow: hidden;
    background: var(--bg);
}

.approach-section::before {
    position: absolute;
    top: 10%;
    right: -15%;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    content: "";
    background: radial-gradient(circle, rgba(118, 169, 255, .06), transparent 68%);
}

.approach-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 120px;
    align-items: start;
}

.approach-copy {
    position: sticky;
    top: 120px;
}

.approach-copy > p {
    max-width: 500px;
    margin-top: 28px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
    color: var(--mint);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.approach-stack {
    border-top: 1px solid var(--line);
}

.approach-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding: 32px 4px;
    border-bottom: 1px solid var(--line);
}

.approach-item > span {
    color: var(--mint);
    font-family: var(--font-mono);
    font-size: 10px;
}

.approach-item h3 {
    margin: -4px 0 9px;
    font-size: 21px;
    font-weight: 650;
    letter-spacing: -.025em;
}

.approach-item p {
    max-width: 620px;
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.7;
}

.deliverables-section {
    padding-top: 28px;
    background: var(--bg);
}

.deliverables-panel {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    padding: 66px;
    overflow: hidden;
    border: 1px solid rgba(141, 255, 210, .17);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 0 100%, rgba(141, 255, 210, .09), transparent 32%),
        linear-gradient(145deg, #111a19, #0d1217 70%);
    box-shadow: var(--shadow);
}

.deliverables-copy > p {
    max-width: 430px;
    margin-top: 24px;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.deliverables-grid > div {
    position: relative;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .025);
}

.deliverable-number {
    display: block;
    margin-bottom: 30px;
    color: var(--mint);
    font-family: var(--font-mono);
    font-size: 9px;
}

.deliverables-grid strong {
    display: block;
    font-size: 15px;
}

.deliverables-grid p {
    margin: 7px 0 0;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.55;
}

.process-section {
    background: #090c11;
}

.section-heading.compact {
    margin-bottom: 52px;
}

.process-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: 70px 1fr 1.15fr 90px;
    gap: 30px;
    align-items: center;
    padding: 31px 0;
    border-bottom: 1px solid var(--line);
    transition: background .25s ease;
}

.process-list li:hover {
    background: linear-gradient(90deg, transparent, rgba(141, 255, 210, .025), transparent);
}

.process-number {
    color: var(--mint);
    font-family: var(--font-mono);
    font-size: 10px;
}

.process-title > span {
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.process-title h3 {
    margin: 5px 0 0;
    font-size: 20px;
    font-weight: 650;
    letter-spacing: -.025em;
}

.process-list li > p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.65;
}

.process-duration {
    justify-self: end;
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 8px;
}

.about-section {
    background: var(--bg);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;
    align-items: center;
}

.about-visual {
    position: relative;
    padding-right: 40px;
}

.code-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 20px;
    background: #0b0f14;
    box-shadow: var(--shadow);
}

.code-card-head {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 9px;
}

.code-card-head i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 9px var(--mint);
}

.code-card pre {
    margin: 0;
    padding: 32px;
    overflow: auto;
    color: #87919d;
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.9;
}

.code-card code span {
    color: var(--blue);
}

.code-card code b {
    color: var(--mint);
    font-weight: 500;
}

.about-seal {
    position: absolute;
    right: -4px;
    bottom: -38px;
    display: flex;
    width: 150px;
    height: 150px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(141, 255, 210, .2);
    border-radius: 50%;
    background: #0c1413;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .4);
}

.about-seal svg {
    width: 34px;
    fill: none;
    stroke: var(--mint);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-seal span {
    color: var(--text-soft);
    font-family: var(--font-mono);
    font-size: 7px;
    line-height: 1.65;
    letter-spacing: .12em;
}

.about-lead {
    margin: 27px 0 0;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.75;
}

.about-points {
    display: grid;
    gap: 0;
    margin-top: 36px;
    border-top: 1px solid var(--line);
}

.about-points > div {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 28px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.about-points strong {
    font-size: 13px;
}

.about-points p {
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.6;
}

.faq-section {
    border-top: 1px solid var(--line);
    background: #090c11;
}

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 120px;
}

.faq-heading > p {
    max-width: 380px;
    margin-top: 24px;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 620;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    position: relative;
    flex: 0 0 auto;
    width: 25px;
    height: 25px;
    border: 1px solid var(--line-strong);
    border-radius: 7px;
}

.faq-list summary span::before,
.faq-list summary span::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px;
    height: 1px;
    content: "";
    transform: translate(-50%, -50%);
    background: var(--mint);
    transition: transform .25s ease;
}

.faq-list summary span::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
    max-width: 690px;
    margin: -4px 50px 27px 0;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.75;
}

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 128px 0;
    border-top: 1px solid rgba(141, 255, 210, .1);
    background:
        radial-gradient(circle at 18% 20%, rgba(141, 255, 210, .09), transparent 30%),
        #080d0c;
}

.contact-grid {
    mask-image: linear-gradient(to bottom, transparent, black 30%, black);
    opacity: .6;
}

.contact-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 110px;
    align-items: center;
}

.contact-copy > p {
    max-width: 490px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.75;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 36px;
}

.contact-direct span {
    color: var(--text-muted);
    font-size: 11px;
}

.contact-direct a {
    color: var(--mint);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
}

.contact-copy ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.contact-copy li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 12px;
}

.contact-copy li i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mint);
}

.form-panel {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 24px;
    background: rgba(12, 17, 22, .94);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
    backdrop-filter: blur(15px);
}

.form-panel-head {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    border-bottom: 1px solid var(--line);
}

.form-panel-head > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-panel-head > div span {
    color: var(--mint);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.form-panel-head > div strong {
    font-size: 19px;
}

.encrypted-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border: 1px solid rgba(141, 255, 210, .16);
    border-radius: 7px;
    color: var(--mint);
    font-family: var(--font-mono);
    font-size: 7px;
}

.encrypted-label svg {
    width: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#order-form {
    padding: 30px 32px 34px;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field {
    display: block;
    margin-bottom: 16px;
}

.field > span {
    display: block;
    margin-bottom: 7px;
    color: #89939f;
    font-size: 10px;
    font-weight: 650;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    outline: none;
    background: rgba(4, 7, 10, .72);
    color: var(--text);
    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.field input,
.field select {
    height: 48px;
    padding: 0 14px;
}

.field textarea {
    min-height: 100px;
    padding: 13px 14px;
    resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #515a66;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(141, 255, 210, .46);
    background: rgba(5, 10, 12, .9);
    box-shadow: 0 0 0 3px rgba(141, 255, 210, .055);
}

.field input.error,
.field select.error,
.field textarea.error {
    border-color: var(--danger);
}

.field select {
    cursor: pointer;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 2px 0 20px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 10px;
    line-height: 1.55;
}

.form-consent input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin: 1px 0 0;
    accent-color: var(--mint);
}

.form-consent input.error {
    outline: 2px solid var(--danger);
    outline-offset: 2px;
}

.form-consent a {
    color: var(--mint);
    text-underline-offset: 2px;
}

.form-submit {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 0;
    border-radius: 11px;
    cursor: pointer;
    background: var(--mint);
    color: #06110d;
    font-size: 13px;
    font-weight: 800;
    transition:
        transform .25s var(--ease),
        background .25s ease,
        box-shadow .25s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    background: #a5ffdc;
    box-shadow: 0 15px 45px rgba(141, 255, 210, .14);
}

.form-submit:disabled {
    cursor: wait;
    opacity: .65;
    transform: none;
}

.form-success {
    display: none;
    min-height: 535px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    text-align: center;
}

.form-success.show {
    display: flex;
}

.success-icon {
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid rgba(141, 255, 210, .3);
    border-radius: 20px;
    background: var(--mint-dim);
}

.success-icon svg {
    width: 35px;
    fill: none;
    stroke: var(--mint);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-success h3 {
    margin: 0;
    font-size: 24px;
}

.form-success p {
    max-width: 360px;
    margin: 10px 0 0;
    color: var(--text-soft);
    font-size: 13px;
}

.site-footer {
    padding: 78px 0 24px;
    border-top: 1px solid var(--line);
    background: #06080b;
}

.footer-main {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    padding-bottom: 70px;
}

.footer-brand {
    margin-bottom: 17px;
}

.footer-main > div:first-child > p {
    max-width: 320px;
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.footer-nav > div {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-nav span {
    margin-bottom: 5px;
    color: #555e69;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-nav a {
    color: var(--text-soft);
    font-size: 12px;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-nav a:hover {
    color: var(--mint);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    color: #565f6a;
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-status i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--mint);
    box-shadow: 0 0 8px rgba(141, 255, 210, .6);
}

/* Legal page */
.legal-body {
    min-height: 100vh;
    background: var(--bg);
}

.legal-header {
    height: 78px;
    border-bottom: 1px solid var(--line);
}

.legal-header .shell {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.legal-back {
    color: var(--text-soft);
    font-size: 12px;
    text-decoration: none;
}

.legal-back:hover {
    color: var(--mint);
}

.legal-page {
    width: min(calc(100% - 48px), 850px);
    margin: 0 auto;
    padding: 100px 0 120px;
}

.legal-page h1 {
    margin: 18px 0 12px;
    font-size: clamp(42px, 6vw, 68px);
    letter-spacing: -.06em;
    line-height: 1;
    overflow-wrap: anywhere;
}

.legal-updated {
    margin-bottom: 58px;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 10px;
}

.legal-page section {
    padding: 28px 0;
    border-top: 1px solid var(--line);
}

.legal-page h2 {
    margin: 0 0 13px;
    font-size: 19px;
    letter-spacing: -.02em;
}

.legal-page p {
    margin: 0 0 12px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.8;
}

.legal-page a {
    color: var(--mint);
}

@media (max-width: 1120px) {
    .hero-layout {
        grid-template-columns: 1fr 500px;
        gap: 40px;
    }

    .hero h1 {
        font-size: clamp(48px, 6.4vw, 68px);
    }

    .scroll-cue {
        display: none;
    }

    .visual-body {
        min-height: 390px;
    }

    .radar-wrap {
        padding-inline: 14px;
    }

    .approach-layout,
    .contact-layout {
        gap: 70px;
    }

    .deliverables-panel {
        gap: 50px;
        padding: 52px;
    }

    .about-layout,
    .faq-layout {
        gap: 70px;
    }
}

@media (max-width: 960px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border: 1px solid var(--line);
        border-radius: 10px;
        background: transparent;
    }

    .menu-toggle span {
        display: block;
        width: 17px;
        height: 1px;
        background: var(--text);
        transition: transform .3s var(--ease);
    }

    .menu-toggle[aria-expanded="true"] span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        inset: 70px 0 0;
        display: block;
        visibility: hidden;
        opacity: 0;
        background: rgba(7, 9, 13, .98);
        transition:
            opacity .3s ease,
            visibility .3s ease;
    }

    .mobile-menu.is-open {
        visibility: visible;
        opacity: 1;
    }

    .mobile-menu nav {
        display: flex;
        width: min(calc(100% - 48px), var(--shell));
        margin: 0 auto;
        padding: 30px 0;
        flex-direction: column;
    }

    .mobile-menu a {
        padding: 17px 0;
        border-bottom: 1px solid var(--line);
        color: var(--text);
        font-size: 22px;
        font-weight: 650;
        text-decoration: none;
    }

    .mobile-menu .mobile-menu-cta {
        margin-top: 18px;
        padding: 16px 20px;
        border: 0;
        border-radius: 12px;
        background: var(--mint);
        color: #06110d;
        font-size: 14px;
        text-align: center;
    }

    .hero {
        padding-top: 140px;
    }

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

    .hero-copy {
        max-width: 760px;
    }

    .hero-visual {
        width: min(100%, 660px);
        margin: 35px auto 0;
    }

    .standards-strip {
        align-items: flex-start;
        gap: 24px;
    }

    .standards-strip > div {
        justify-content: flex-end;
        gap: 20px 30px;
    }

    .section-heading,
    .section-heading.compact {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .section-heading > p {
        max-width: 650px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .approach-layout {
        grid-template-columns: 1fr;
    }

    .approach-copy {
        position: static;
    }

    .deliverables-panel {
        grid-template-columns: 1fr;
    }

    .process-list li {
        grid-template-columns: 50px 1fr 1.1fr;
    }

    .process-duration {
        display: none;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .about-visual {
        width: min(100%, 620px);
        padding-right: 35px;
    }

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-copy {
        max-width: 650px;
    }
}

@media (max-width: 680px) {
    .shell,
    .legal-page {
        width: min(calc(100% - 32px), var(--shell));
    }

    .site-header {
        height: 70px;
    }

    .brand-mark {
        width: 35px;
        height: 35px;
    }

    .hero {
        min-height: auto;
        padding: 118px 0 34px;
    }

    .matrix-layer {
        opacity: .7;
    }

    .hero h1 {
        margin-top: 20px;
        font-size: clamp(41px, 12vw, 58px);
        line-height: 1.02;
    }

    .hero h1 br {
        display: none;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-assurances {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-visual {
        margin-top: 20px;
    }

    .visual-orbit {
        inset: -24px;
    }

    .signal-marquee {
        padding: 18px 0;
    }

    .visual-topbar {
        grid-template-columns: 1fr 1fr;
    }

    .visual-topbar > span:nth-child(2) {
        display: none;
    }

    .visual-body {
        grid-template-columns: 1fr;
    }

    .radar-wrap {
        min-height: 300px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .visual-feed {
        min-height: 320px;
    }

    .visual-footer span:last-child {
        display: none;
    }

    .standards-strip {
        flex-direction: column;
        margin-top: 55px;
    }

    .standards-strip > div {
        justify-content: flex-start;
    }

    .section,
    .contact-section {
        padding: 88px 0;
    }

    .section-heading,
    .section-heading.compact {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .approach-copy h2,
    .deliverables-copy h2,
    .about-copy h2,
    .faq-heading h2,
    .contact-copy h2 {
        font-size: clamp(34px, 10.5vw, 48px);
    }

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

    .service-card,
    .service-card-wide {
        grid-column: auto;
        min-height: 330px;
    }

    .approach-item {
        grid-template-columns: 38px 1fr;
        gap: 10px;
        padding-block: 26px;
    }

    .deliverables-section {
        padding-top: 0;
    }

    .deliverables-panel {
        gap: 40px;
        padding: 34px 22px;
        border-radius: 22px;
    }

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

    .deliverable-number {
        margin-bottom: 18px;
    }

    .process-list li {
        grid-template-columns: 32px 1fr;
        gap: 15px;
        align-items: start;
        padding: 25px 0;
    }

    .process-list li > p {
        grid-column: 2;
    }

    .about-visual {
        padding: 0 18px 20px 0;
    }

    .code-card pre {
        padding: 22px;
        font-size: 10px;
    }

    .about-seal {
        right: -4px;
        bottom: -15px;
        width: 120px;
        height: 120px;
    }

    .about-seal svg {
        width: 27px;
    }

    .about-seal span {
        font-size: 6px;
    }

    .about-points > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .faq-list summary {
        min-height: 76px;
        font-size: 14px;
    }

    .form-panel-head {
        min-height: 74px;
        padding: 0 20px;
    }

    #order-form {
        padding: 24px 20px 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .legal-page {
        padding: 70px 0 90px;
    }

    .legal-page h1 {
        font-size: clamp(34px, 10vw, 44px);
        letter-spacing: -.045em;
    }

    .contact-direct a,
    .legal-page a {
        overflow-wrap: anywhere;
    }
}

@media (hover: none), (pointer: coarse) {
    .cursor-glow {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .motion-ready [data-reveal],
    .motion-ready [data-reveal].is-visible,
    [data-reveal] {
        opacity: 1;
        filter: none;
        transform: none;
    }

    .visual-frame {
        animation: none;
    }

    .visual-orbit,
    .marquee-track {
        animation: none;
    }

    .matrix-layer span {
        top: var(--static-top);
        animation: none;
    }
}
