:root {
    --kzm-bg: #050609;
    --kzm-surface: rgba(255, 255, 255, 0.065);
    --kzm-surface-strong: rgba(255, 255, 255, 0.1);
    --kzm-line: rgba(214, 232, 240, 0.14);
    --kzm-line-strong: rgba(126, 232, 255, 0.36);
    --kzm-text: #f6f8fb;
    --kzm-muted: rgba(226, 235, 241, 0.68);
    --kzm-soft: rgba(226, 235, 241, 0.48);
    --kzm-cyan: #75e8ff;
    --kzm-green: #8cf3bc;
    --kzm-amber: #ffd166;
    --kzm-coral: #ff8c6b;
    --kzm-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body.kzm-ai-landing {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.038), transparent 28rem),
        radial-gradient(circle at 52% 4%, rgba(117, 232, 255, 0.1), transparent 30rem),
        linear-gradient(135deg, #030407 0%, #090b10 44%, #080d0b 68%, #100d0a 100%);
    color: var(--kzm-text);
    font-family: var(--kzm-font);
    letter-spacing: 0;
}

body.kzm-ai-landing::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.62;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.86), transparent 74%);
}

body.kzm-ai-landing::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0 20%, rgba(117, 232, 255, 0.075) 37%, transparent 52%),
        linear-gradient(250deg, transparent 0 42%, rgba(255, 209, 102, 0.055) 56%, transparent 70%);
    opacity: 0.68;
}

.kzm-live-topology {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.kzm-live-topology span {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(100, 244, 214, 0.74);
    box-shadow: 0 0 32px rgba(100, 244, 214, 0.28);
    animation: kzmNodePulse 6.8s ease-in-out infinite;
}

.kzm-live-topology span:nth-child(1) { left: 16%; top: 20%; }
.kzm-live-topology span:nth-child(2) { left: 44%; top: 14%; animation-delay: .6s; }
.kzm-live-topology span:nth-child(3) { left: 77%; top: 24%; animation-delay: 1.2s; }
.kzm-live-topology span:nth-child(4) { left: 22%; top: 72%; animation-delay: 1.8s; }
.kzm-live-topology span:nth-child(5) { left: 58%; top: 66%; animation-delay: 2.4s; }
.kzm-live-topology span:nth-child(6) { left: 86%; top: 78%; animation-delay: 3s; }

.kzm-live-topology i {
    position: absolute;
    height: 1px;
    width: 50vw;
    background: linear-gradient(90deg, transparent, rgba(100, 244, 214, 0.2), rgba(117, 232, 255, 0.12), transparent);
    transform-origin: left center;
    animation: kzmSignalFlow 7s linear infinite;
}

.kzm-live-topology i:nth-of-type(1) { left: 14%; top: 22%; transform: rotate(12deg); }
.kzm-live-topology i:nth-of-type(2) { left: 38%; top: 48%; transform: rotate(-18deg); animation-delay: 1.2s; }
.kzm-live-topology i:nth-of-type(3) { left: 18%; top: 76%; transform: rotate(-8deg); animation-delay: 2.4s; }

.kzm-ai-landing .kzm-site-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 8%, rgba(117, 232, 255, 0.09), transparent 28rem),
        radial-gradient(circle at 24% 58%, rgba(140, 243, 188, 0.052), transparent 34rem),
        linear-gradient(115deg, transparent 0 25%, rgba(117, 232, 255, 0.033) 42%, transparent 59%);
    opacity: 0.82;
}

.kzm-ai-landing *,
.kzm-ai-landing *::before,
.kzm-ai-landing *::after {
    box-sizing: border-box;
}

.kzm-ai-landing a {
    color: inherit;
    text-decoration: none;
}

html[lang="zh-CN"] .kzm-hero h1,
html[dir="rtl"] .kzm-hero h1 {
    font-size: clamp(54px, 6.5vw, 92px);
    line-height: 1.02;
}

html[dir="rtl"] .kzm-language-switcher__menu {
    right: auto;
    left: 0;
}

html[dir="rtl"] .kzm-language-switcher__menu button {
    text-align: right;
}

.kzm-site-shell {
    width: min(1440px, 100%);
    margin: 0 auto;
    overflow: hidden;
}

.kzm-nav {
    position: sticky;
    top: 18px;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    width: min(1600px, calc(100% - 72px));
    min-height: 86px;
    margin: 0 auto;
    padding: 16px clamp(34px, 4vw, 64px);
    border: 1px solid rgba(214, 232, 240, 0.105);
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(117, 232, 255, 0.065), transparent 28%, transparent 78%, rgba(140, 243, 188, 0.045)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
        rgba(3, 5, 8, 0.66);
    backdrop-filter: blur(36px) saturate(136%);
    box-shadow:
        0 34px 110px rgba(0, 0, 0, 0.38),
        0 1px 0 rgba(255, 255, 255, 0.07) inset;
    transform: translateZ(0);
}

.kzm-nav::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(117, 232, 255, 0.18), transparent 42%, transparent 58%, rgba(140, 243, 188, 0.13), transparent),
        radial-gradient(circle at 11% 50%, rgba(117, 232, 255, 0.14), transparent 18%),
        radial-gradient(circle at 91% 50%, rgba(140, 243, 188, 0.12), transparent 18%);
    opacity: 0.56;
    animation: kzmHeaderBreath 8s ease-in-out infinite;
}

.kzm-nav::after {
    content: "";
    position: absolute;
    left: 46px;
    right: 46px;
    bottom: -1px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(117, 232, 255, 0.78), rgba(140, 243, 188, 0.42), transparent);
    opacity: 0.52;
    animation: kzmSignalFlow 7s linear infinite;
}

.kzm-brand {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    width: max-content;
    padding: 4px 8px 4px 0;
    border: 1px solid transparent;
    border-radius: 13px;
    background: transparent;
    transition: background 180ms ease, box-shadow 180ms ease;
}

.kzm-brand:hover {
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 0 28px rgba(117, 232, 255, 0.08);
}

.kzm-brand__mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(117, 232, 255, 0.42);
    border-radius: 14px;
    color: #061013;
    background: linear-gradient(135deg, var(--kzm-cyan), var(--kzm-green));
    box-shadow: 0 0 12px 4px rgba(100, 244, 214, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.48);
    font-weight: 900;
    transition: box-shadow 180ms ease;
}

.kzm-brand:hover .kzm-brand__mark {
    box-shadow: 0 0 16px 6px rgba(100, 244, 214, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.kzm-brand__copy {
    display: grid;
    gap: 4px;
}

.kzm-brand__copy strong {
    color: var(--kzm-text);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    white-space: nowrap;
}

.kzm-brand__copy em {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgb(100, 244, 214);
    font-size: 12px;
    font-style: normal;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.kzm-brand__copy i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgb(100, 244, 214);
    box-shadow: 0 0 12px rgba(100, 244, 214, 0.55);
    animation: kzmStatusBreath 2s ease-in-out infinite;
}

.kzm-nav__links {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #9CA3AF;
    background: transparent;
    font-size: 14px;
    box-shadow: none;
    justify-self: center;
}

.kzm-nav__links a {
    position: relative;
    min-height: 46px;
    padding: 0 2px;
    border: 0;
    border-radius: 0;
    display: inline-grid;
    place-items: center;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.kzm-nav__links a::before {
    display: none;
}

.kzm-nav__links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7px;
    height: 2px;
    background: rgb(100, 244, 214);
    opacity: 1;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.kzm-nav__links a span {
    position: relative;
    z-index: 1;
}

.kzm-nav__links a:hover {
    color: #E5E7EB;
    text-shadow: 0 0 14px rgba(100, 244, 214, 0.16);
}

.kzm-nav__links a:hover::after,
.kzm-nav__links a.is-active::after {
    transform: scaleX(1);
}

.kzm-nav__links a.is-active {
    color: #E5E7EB;
    font-weight: 500;
    text-shadow: 0 0 14px rgba(100, 244, 214, 0.16);
}

.kzm-nav__actions {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-self: end;
    gap: 12px;
}

.kzm-language-switcher {
    position: relative;
}

.kzm-language-switcher__trigger {
    display: inline-grid;
    min-width: 48px;
    min-height: 48px;
    place-items: center;
    border: 1px solid rgba(214, 232, 240, 0.16);
    border-radius: 12px;
    color: rgba(229, 231, 235, 0.88);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 760;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.kzm-language-switcher__trigger:hover,
.kzm-language-switcher.is-open .kzm-language-switcher__trigger {
    border-color: rgba(100, 244, 214, 0.5);
    color: #fff;
    background: rgba(100, 244, 214, 0.1);
    box-shadow: 0 0 18px rgba(100, 244, 214, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.kzm-language-switcher__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    min-width: 156px;
    padding: 8px;
    border: 1px solid rgba(214, 232, 240, 0.12);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(4, 7, 10, 0.92);
    backdrop-filter: blur(28px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.kzm-language-switcher.is-open .kzm-language-switcher__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.kzm-language-switcher__menu button {
    display: flex;
    justify-content: space-between;
    min-height: 38px;
    padding: 0 10px;
    border: 0;
    border-radius: 10px;
    color: rgba(229, 231, 235, 0.78);
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    text-align: left;
}

.kzm-language-switcher__menu button:hover,
.kzm-language-switcher__menu button.is-active {
    color: #fff;
    background: rgba(100, 244, 214, 0.09);
}

.kzm-language-switcher__menu button.is-active::after {
    content: "online";
    color: rgb(100, 244, 214);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.kzm-nav__cta {
    position: relative;
    z-index: 1;
    display: inline-grid;
    min-height: 48px;
    place-items: center;
    padding: 10px 24px;
    border: 1px solid rgba(100, 244, 214, 0.6) !important;
    border-radius: 12px;
    color: var(--kzm-text) !important;
    background: rgba(100, 244, 214, 0.1) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
    overflow: hidden;
}

.kzm-nav__cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(100, 244, 214, 0.2), transparent);
    opacity: 0;
    transform: translateX(-80%);
    transition: opacity 180ms ease;
}

.kzm-nav__cta span {
    position: relative;
    z-index: 1;
}

.kzm-nav__cta:hover {
    transform: translateY(-1px);
    border-color: rgba(100, 244, 214, 0.72) !important;
    color: #fff !important;
    background: rgba(100, 244, 214, 0.2) !important;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32), 0 0 12px 4px rgba(100, 244, 214, 0.4);
}

.kzm-nav__cta:hover::before {
    opacity: 1;
    animation: kzmCommandSweep 1.2s ease-out;
}

.kzm-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(460px, 0.97fr);
    gap: clamp(52px, 8vw, 118px);
    align-items: center;
    width: min(1320px, calc(100% - 72px));
    min-height: 720px;
    margin: 0 auto;
    padding: clamp(72px, 10vw, 132px) 0 clamp(88px, 12vw, 150px);
}

.kzm-hero--home {
    min-height: 110vh;
    padding-top: clamp(22px, 3vw, 46px);
}

.kzm-kicker {
    margin: 0 0 16px;
    color: var(--kzm-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.kzm-hero h1,
.kzm-section__head h2,
.kzm-demo-copy h2,
.kzm-final-cta h2 {
    margin: 0;
    color: var(--kzm-text);
    font-weight: 820;
    letter-spacing: 0;
}

.kzm-hero h1 {
    max-width: 820px;
    font-size: clamp(58px, 7vw, 104px);
    line-height: 0.92;
}

.kzm-hero__lead {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--kzm-muted);
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.58;
}

.kzm-hero__actions,
.kzm-final-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.kzm-hero__actions {
    margin-top: 30px;
}

.kzm-button {
    display: inline-grid;
    min-height: 52px;
    place-items: center;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 760;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.kzm-button--primary {
    border: 0;
    color: #071113;
    background: linear-gradient(135deg, var(--kzm-cyan), var(--kzm-green));
    box-shadow: 0 16px 50px rgba(117, 232, 255, 0.18);
    cursor: pointer;
}

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

.kzm-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.34), 0 0 34px rgba(117, 232, 255, 0.14);
}

.kzm-proof-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.kzm-proof-strip span {
    padding: 9px 13px;
    border: 1px solid rgba(214, 232, 240, 0.09);
    border-radius: 999px;
    color: var(--kzm-soft);
    background: rgba(255, 255, 255, 0.026);
    font-size: 12px;
}

.kzm-os-stack {
    position: relative;
    width: min(100%, 680px);
    min-height: 680px;
    margin-left: auto;
    padding: 22px;
    border: 1px solid rgba(117, 232, 255, 0.16);
    border-radius: 38px;
    background:
        radial-gradient(circle at 50% 42%, rgba(117, 232, 255, 0.16), transparent 19rem),
        radial-gradient(circle at 70% 18%, rgba(100, 244, 214, 0.09), transparent 16rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.018)),
        rgba(4, 6, 10, 0.58);
    backdrop-filter: blur(36px);
    box-shadow: 0 58px 160px rgba(0, 0, 0, 0.54), inset 0 1px 0 rgba(255, 255, 255, 0.09);
    transform: perspective(1100px) rotateX(7deg) rotateY(-9deg);
    overflow: hidden;
}

.kzm-os-stack::before,
.kzm-os-stack::after {
    content: "";
    position: absolute;
    inset: 82px 76px 168px;
    border: 1px solid rgba(117, 232, 255, 0.12);
    border-radius: 50%;
    animation: kzmFactorySpin 38s linear infinite;
}

.kzm-os-stack::after {
    inset: 128px 108px 204px;
    transform: rotate(-22deg);
    animation-duration: 52s;
    animation-direction: reverse;
}

.kzm-os-stack__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--kzm-soft);
    font-size: 12px;
    text-transform: uppercase;
}

.kzm-os-stack__top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.kzm-os-stack__top span:nth-child(1) { background: var(--kzm-coral); }
.kzm-os-stack__top span:nth-child(2) { background: var(--kzm-amber); }
.kzm-os-stack__top span:nth-child(3) { background: var(--kzm-green); }
.kzm-os-stack__top strong {
    margin-left: auto;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.kzm-os-topology {
    position: relative;
    z-index: 1;
    height: 410px;
    margin-top: 14px;
}

.kzm-os-core {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    gap: 3px;
    width: 148px;
    height: 148px;
    place-items: center;
    border: 1px solid rgba(100, 244, 214, 0.5);
    border-radius: 42px;
    color: var(--kzm-text);
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.16), transparent 48%),
        linear-gradient(145deg, rgba(117, 232, 255, 0.17), rgba(100, 244, 214, 0.09)),
        rgba(255, 255, 255, 0.052);
    box-shadow: 0 0 120px rgba(100, 244, 214, 0.18), 0 0 58px rgba(117, 232, 255, 0.14) inset;
    transform: translate(-50%, -50%);
    text-align: center;
    animation: kzmCoreBreath 5.6s ease-in-out infinite;
}

.kzm-os-core span {
    font-size: 44px;
    font-weight: 920;
    line-height: 1;
}

.kzm-os-core em {
    color: var(--kzm-green);
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.kzm-os-node {
    position: absolute;
    z-index: 2;
    display: grid;
    min-width: 118px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(100, 244, 214, 0.26);
    border-radius: 14px;
    color: rgba(229, 231, 235, 0.86);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2), 0 0 24px rgba(100, 244, 214, 0.07);
    font-size: 11px;
    font-weight: 760;
    animation: kzmNodePulse 6.4s ease-in-out infinite;
}

.kzm-os-node--a { left: 5%; top: 20%; }
.kzm-os-node--b { right: 4%; top: 16%; animation-delay: .7s; }
.kzm-os-node--c { left: 4%; bottom: 22%; animation-delay: 1.4s; }
.kzm-os-node--d { right: 3%; bottom: 25%; animation-delay: 2.1s; }
.kzm-os-node--e { left: 50%; bottom: 5%; transform: translateX(-50%); animation-delay: 2.8s; }

.kzm-os-topology > i {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 50%;
    height: 1px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(100, 244, 214, 0.62), rgba(117, 232, 255, 0.32), transparent);
    transform: rotate(-18deg);
    animation: kzmSignalFlow 4.8s linear infinite;
}

.kzm-os-topology > i:nth-of-type(2) {
    transform: rotate(18deg);
    animation-delay: 1.1s;
}

.kzm-os-topology > i:nth-of-type(3) {
    left: 22%;
    right: 22%;
    transform: rotate(90deg);
    animation-delay: 2.2s;
}

.kzm-os-panels {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(214, 232, 240, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
}

.kzm-os-panels article {
    min-height: 136px;
    padding: 18px;
    border: 0;
    border-radius: 0;
    background: rgba(3, 5, 8, 0.58);
}

.kzm-os-panels article > span {
    display: block;
    color: var(--kzm-soft);
    font-size: 11px;
    text-transform: uppercase;
}

.kzm-os-panels article > strong {
    display: block;
    margin: 10px 0 14px;
    color: var(--kzm-text);
    font-size: 22px;
}

.kzm-os-streams {
    position: absolute;
    inset: auto 26px 26px;
    z-index: 1;
    display: grid;
    gap: 9px;
    pointer-events: none;
}

.kzm-os-streams span {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 244, 214, 0.6), rgba(117, 232, 255, 0.24), transparent);
    animation: kzmSignalFlow 5.8s linear infinite;
}

.kzm-os-streams span:nth-child(2) { width: 82%; animation-delay: .8s; }
.kzm-os-streams span:nth-child(3) { width: 68%; animation-delay: 1.6s; }
.kzm-os-streams span:nth-child(4) { width: 91%; animation-delay: 2.4s; }

.kzm-home-grid,
.kzm-page-hero,
.kzm-split-hero,
.kzm-two-col,
.kzm-output-grid,
.kzm-timeline,
.kzm-belief-grid,
.kzm-contact-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.kzm-page-hero {
    display: grid;
    align-content: end;
    min-height: 460px;
    padding: 72px 0 52px;
}

.kzm-page-hero h1,
.kzm-split-hero h1,
.kzm-contact-layout h1 {
    max-width: 860px;
    margin: 0;
    color: var(--kzm-text);
    font-size: clamp(44px, 5.8vw, 72px);
    line-height: 1;
    letter-spacing: 0;
}

.kzm-page-hero p,
.kzm-split-hero p,
.kzm-contact-layout p {
    max-width: 760px;
    margin: 22px 0 0;
    color: var(--kzm-muted);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.65;
}

.kzm-solutions-hero,
.kzm-industry-intelligence,
.kzm-agent-collab-layer,
.kzm-delivery-pipeline,
.kzm-solution-architecture,
.kzm-business-value {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.kzm-solutions-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.88fr);
    gap: clamp(54px, 8vw, 116px);
    align-items: center;
    min-height: 820px;
    padding: 110px 0 132px;
}

.kzm-solutions-hero h1 {
    max-width: 840px;
    margin: 0;
    color: var(--kzm-text);
    font-size: clamp(56px, 7vw, 98px);
    line-height: 0.94;
}

.kzm-solutions-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--kzm-muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
}

.kzm-solution-orbit {
    position: relative;
    min-height: 500px;
    border: 1px solid rgba(214, 232, 240, 0.12);
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 42%, rgba(117, 232, 255, 0.16), transparent 18rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
        rgba(5, 7, 10, 0.72);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.kzm-solution-orbit i {
    position: absolute;
    inset: 86px;
    border: 1px solid rgba(117, 232, 255, 0.14);
    border-radius: 50%;
    animation: kzmFactorySpin 28s linear infinite;
}

.kzm-solution-orbit i:nth-of-type(2) {
    inset: 132px 68px;
    transform: rotate(-22deg);
    animation-duration: 36s;
    animation-direction: reverse;
}

.kzm-solution-orbit i:nth-of-type(3) {
    inset: 178px 118px;
    animation-duration: 42s;
}

.kzm-solution-orbit__core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    gap: 12px;
    place-items: center;
    transform: translate(-50%, -50%);
}

.kzm-solution-orbit__core span {
    display: grid;
    width: 92px;
    height: 92px;
    place-items: center;
    border: 1px solid rgba(100, 244, 214, 0.42);
    border-radius: 28px;
    color: #061014;
    background: linear-gradient(135deg, var(--kzm-cyan), var(--kzm-green));
    box-shadow: 0 0 58px rgba(100, 244, 214, 0.24);
    font-size: 30px;
    font-weight: 940;
}

.kzm-solution-orbit__core strong {
    color: var(--kzm-text);
}

.kzm-solution-orbit__node {
    position: absolute;
    z-index: 3;
    display: grid;
    min-width: 136px;
    min-height: 42px;
    place-items: center;
    padding: 0 14px;
    border: 1px solid rgba(117, 232, 255, 0.22);
    border-radius: 999px;
    color: rgba(226, 235, 241, 0.82);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 0 28px rgba(117, 232, 255, 0.08);
    font-size: 12px;
    font-style: normal;
    animation: kzmNodePulse 5s ease-in-out infinite;
}

.kzm-solution-orbit__node--a { left: 9%; top: 17%; }
.kzm-solution-orbit__node--b { right: 8%; top: 22%; animation-delay: .6s; }
.kzm-solution-orbit__node--c { left: 8%; bottom: 25%; animation-delay: 1.2s; }
.kzm-solution-orbit__node--d { right: 9%; bottom: 21%; animation-delay: 1.8s; }
.kzm-solution-orbit__node--e { left: 50%; bottom: 7%; transform: translateX(-50%); animation-delay: 2.4s; }

.kzm-industry-intelligence,
.kzm-agent-collab-layer,
.kzm-delivery-pipeline,
.kzm-solution-architecture,
.kzm-business-value {
    padding: 112px 0;
}

.kzm-solution-system-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.kzm-solution-system {
    position: relative;
    display: grid;
    min-height: 430px;
    padding: 30px;
    border: 1px solid rgba(214, 232, 240, 0.095);
    border-radius: 30px;
    background:
        radial-gradient(circle at 76% 18%, rgba(100, 244, 214, 0.07), transparent 13rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.016)),
        rgba(6, 8, 12, 0.6);
    backdrop-filter: blur(22px);
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.kzm-solution-system::before {
    content: "";
    position: absolute;
    inset: 104px 30px 30px;
    background-image:
        linear-gradient(rgba(117, 232, 255, 0.052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(117, 232, 255, 0.052) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.78), transparent 78%);
}

.kzm-solution-system:hover {
    border-color: rgba(100, 244, 214, 0.42);
    transform: translateY(-4px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3), 0 0 42px rgba(100, 244, 214, 0.08);
}

.kzm-solution-system > * {
    position: relative;
    z-index: 1;
}

.kzm-solution-system__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(100, 244, 214);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.kzm-solution-system__header span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgb(100, 244, 214);
    box-shadow: 0 0 14px rgba(100, 244, 214, 0.55);
    animation: kzmStatusBreath 2s ease-in-out infinite;
}

.kzm-solution-system h3 {
    max-width: 520px;
    margin: 28px 0 12px;
    color: var(--kzm-text);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
}

.kzm-solution-system p {
    margin: 0;
    color: var(--kzm-muted);
    line-height: 1.65;
}

.kzm-solution-system__flow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.kzm-solution-system__flow span {
    padding: 7px 10px;
    border: 1px solid rgba(117, 232, 255, 0.18);
    border-radius: 999px;
    color: var(--kzm-soft);
    background: rgba(255, 255, 255, 0.045);
    font-size: 11px;
}

.kzm-solution-system__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.kzm-solution-system__metrics strong {
    padding: 12px;
    border: 1px solid rgba(214, 232, 240, 0.1);
    border-radius: 14px;
    color: var(--kzm-text);
    background: rgba(0, 0, 0, 0.22);
    font-size: 13px;
}

.kzm-solution-system > em {
    align-self: end;
    margin-top: 22px;
    color: rgb(100, 244, 214);
    font-style: normal;
    font-weight: 760;
}

.kzm-agent-collab-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
    padding: 42px;
    border: 1px solid rgba(214, 232, 240, 0.085);
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 50%, rgba(100, 244, 214, 0.07), transparent 24rem),
        rgba(5, 7, 10, 0.5);
    overflow: hidden;
}

.kzm-agent-collab-map article {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 210px;
    align-content: space-between;
    padding: 20px;
    border: 1px solid rgba(117, 232, 255, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.032);
}

.kzm-agent-collab-map article span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgb(100, 244, 214);
    box-shadow: 0 0 16px rgba(100, 244, 214, 0.45);
    animation: kzmStatusBreath 2.4s ease-in-out infinite;
}

.kzm-agent-collab-map strong {
    color: var(--kzm-text);
    font-size: 14px;
    line-height: 1.25;
}

.kzm-agent-collab-map em {
    color: rgb(100, 244, 214);
    font-style: normal;
    font-size: 11px;
}

.kzm-agent-collab-map__line {
    position: absolute;
    left: 4%;
    right: 4%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 244, 214, 0.72), transparent);
    animation: kzmSignalFlow 4.8s linear infinite;
}

.kzm-delivery-pipeline__track,
.kzm-architecture-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.kzm-delivery-pipeline__track::before,
.kzm-architecture-flow::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 244, 214, 0.72), transparent);
}

.kzm-delivery-pipeline__track article,
.kzm-architecture-flow article {
    position: relative;
    min-height: 210px;
    padding: 22px;
    border: 1px solid rgba(214, 232, 240, 0.09);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.032);
}

.kzm-delivery-pipeline__track span,
.kzm-architecture-flow span {
    display: inline-grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(100, 244, 214, 0.32);
    border-radius: 12px;
    color: rgb(100, 244, 214);
    background: rgba(100, 244, 214, 0.06);
}

.kzm-delivery-pipeline__track strong,
.kzm-architecture-flow strong {
    display: block;
    margin-top: 38px;
    color: var(--kzm-text);
    font-size: 15px;
    line-height: 1.25;
}

.kzm-architecture-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 30px;
}

.kzm-architecture-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kzm-architecture-agents {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(214, 232, 240, 0.085);
    border-radius: 28px;
    background: rgba(5, 7, 10, 0.52);
}

.kzm-architecture-agents article {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(117, 232, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
}

.kzm-architecture-agents i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgb(100, 244, 214);
    box-shadow: 0 0 14px rgba(100, 244, 214, 0.45);
    animation: kzmStatusBreath 2s ease-in-out infinite;
}

.kzm-architecture-agents strong {
    color: var(--kzm-text);
    font-size: 13px;
}

.kzm-architecture-agents em {
    color: rgb(100, 244, 214);
    font-style: normal;
    font-size: 11px;
}

.kzm-business-value {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    padding-top: 0;
    border: 1px solid rgba(214, 232, 240, 0.085);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.035);
    overflow: hidden;
}

.kzm-business-value article {
    padding: 34px;
    background: rgba(5, 7, 10, 0.64);
}

.kzm-business-value span {
    color: rgb(100, 244, 214);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.kzm-business-value strong {
    display: block;
    margin: 10px 0;
    color: var(--kzm-text);
    font-size: 24px;
}

.kzm-business-value p {
    margin: 0;
    color: var(--kzm-muted);
    line-height: 1.6;
}

.kzm-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: 0 0 86px;
}

.kzm-orchestration-section,
.kzm-live-systems,
.kzm-system-backplane,
.kzm-runtime-layer {
    width: min(1320px, calc(100% - 72px));
    margin: 0 auto;
    padding: 132px 0;
}

.kzm-system-backplane {
    position: relative;
    padding-top: 150px;
}

.kzm-system-backplane::before {
    content: "";
    position: absolute;
    inset: 48px -7% 0;
    pointer-events: none;
    border-top: 1px solid rgba(117, 232, 255, 0.11);
    background:
        linear-gradient(rgba(117, 232, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(117, 232, 255, 0.04) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.88), transparent 72%);
}

.kzm-system-map {
    position: relative;
    min-height: 780px;
    margin-top: 58px;
    border: 1px solid rgba(214, 232, 240, 0.075);
    border-radius: 44px;
    background:
        radial-gradient(circle at 50% 48%, rgba(117, 232, 255, 0.105), transparent 25rem),
        radial-gradient(circle at 20% 18%, rgba(100, 244, 214, 0.045), transparent 16rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.043), rgba(255, 255, 255, 0.011)),
        rgba(4, 6, 9, 0.48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 58px 150px rgba(0, 0, 0, 0.36);
    overflow: hidden;
}

.kzm-system-map::before,
.kzm-system-map::after {
    content: "";
    position: absolute;
    inset: 116px 15%;
    border: 1px solid rgba(117, 232, 255, 0.105);
    border-radius: 50%;
    animation: kzmFactorySpin 46s linear infinite;
}

.kzm-system-map::after {
    inset: 182px 24%;
    transform: rotate(-18deg);
    animation-duration: 58s;
    animation-direction: reverse;
}

.kzm-system-map__core {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    display: grid;
    width: min(300px, 46vw);
    min-height: 196px;
    place-items: center;
    padding: 30px;
    border: 1px solid rgba(100, 244, 214, 0.38);
    border-radius: 36px;
    background:
        radial-gradient(circle at 50% 0, rgba(117, 232, 255, 0.2), transparent 70%),
        rgba(7, 10, 14, 0.72);
    box-shadow: 0 0 120px rgba(100, 244, 214, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: translate(-50%, -50%);
    text-align: center;
}

.kzm-system-map__core span {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    border-radius: 24px;
    color: #061014;
    background: linear-gradient(135deg, var(--kzm-cyan), var(--kzm-green));
    box-shadow: 0 0 58px rgba(117, 232, 255, 0.34);
    font-size: 22px;
    font-weight: 940;
}

.kzm-system-map__core strong {
    color: var(--kzm-text);
    font-size: 22px;
    line-height: 1.1;
}

.kzm-system-map__core em,
.kzm-system-node i,
.kzm-system-telemetry em {
    color: var(--kzm-soft);
    font-style: normal;
}

.kzm-system-node {
    position: absolute;
    z-index: 4;
    display: grid;
    gap: 8px;
    width: 256px;
    padding: 22px;
    border: 1px solid rgba(214, 232, 240, 0.095);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.018)),
        rgba(6, 8, 12, 0.58);
    backdrop-filter: blur(30px);
    box-shadow: 0 28px 86px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.kzm-system-node::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--kzm-green);
    box-shadow: 0 0 28px rgba(140, 243, 188, 0.48);
    animation: kzmNodePulse 4s ease-in-out infinite;
}

.kzm-system-node:hover {
    border-color: rgba(117, 232, 255, 0.52);
    transform: translateY(-4px);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.32), 0 0 42px rgba(117, 232, 255, 0.12);
}

.kzm-system-node span {
    color: var(--kzm-soft);
    font-size: 12px;
    font-weight: 780;
    text-transform: uppercase;
}

.kzm-system-node strong {
    color: var(--kzm-text);
    font-size: 18px;
    line-height: 1.15;
}

.kzm-system-node i {
    width: max-content;
    padding: 5px 9px;
    border: 1px solid rgba(140, 243, 188, 0.24);
    border-radius: 999px;
    background: rgba(140, 243, 188, 0.07);
    color: var(--kzm-green);
    font-size: 11px;
    font-weight: 760;
}

.kzm-system-node--req { left: 6%; top: 8%; }
.kzm-system-node--auto { right: 7%; top: 9%; }
.kzm-system-node--dealer { left: 4%; top: 42%; }
.kzm-system-node--erp { right: 5%; top: 42%; }
.kzm-system-node--workflow { left: 15%; bottom: 8%; }
.kzm-system-node--data { right: 15%; bottom: 8%; }
.kzm-system-node--demo { left: 50%; bottom: 5%; transform: translateX(-50%); }
.kzm-system-node--demo:hover { transform: translateX(-50%) translateY(-4px); }

.kzm-system-map__rail {
    position: absolute;
    z-index: 2;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(117, 232, 255, 0.72), rgba(140, 243, 188, 0.38), transparent);
    animation: kzmSignalFlow 5s linear infinite;
}

.kzm-system-map__rail--one {
    left: 10%;
    right: 10%;
    top: 31%;
    transform: rotate(7deg);
}

.kzm-system-map__rail--two {
    left: 11%;
    right: 11%;
    top: 61%;
    transform: rotate(-8deg);
    animation-delay: 1.2s;
}

.kzm-system-map__rail--three {
    left: 26%;
    right: 26%;
    top: 50%;
    transform: rotate(90deg);
    animation-delay: 2.4s;
}

.kzm-system-telemetry {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 28px;
    border: 1px solid rgba(214, 232, 240, 0.075);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.032);
    overflow: hidden;
}

.kzm-system-telemetry article {
    padding: 32px;
    background: rgba(5, 7, 10, 0.58);
}

.kzm-system-telemetry span {
    color: var(--kzm-green);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.kzm-system-telemetry strong {
    display: block;
    margin: 10px 0 8px;
    color: var(--kzm-text);
    font-size: 24px;
}

.kzm-runtime-layer {
    position: relative;
}

.kzm-runtime-console {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
    gap: 48px;
    align-items: stretch;
}

.kzm-runtime-console__screen {
    position: relative;
    min-height: 560px;
    padding: 26px;
    border: 1px solid rgba(117, 232, 255, 0.14);
    border-radius: 38px;
    background:
        radial-gradient(circle at 28% 24%, rgba(117, 232, 255, 0.13), transparent 19rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
        rgba(5, 7, 10, 0.68);
    box-shadow: 0 54px 140px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.kzm-runtime-console__screen::before {
    content: "";
    position: absolute;
    inset: 70px 24px 24px;
    background-image:
        linear-gradient(rgba(117, 232, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(117, 232, 255, 0.07) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.82), transparent 72%);
}

.kzm-runtime-console__top,
.kzm-runtime-grid,
.kzm-runtime-stream {
    position: relative;
    z-index: 1;
}

.kzm-runtime-console__top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--kzm-muted);
    font-size: 12px;
}

.kzm-runtime-console__top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--kzm-coral);
}

.kzm-runtime-console__top span:nth-child(2) { background: var(--kzm-amber); }
.kzm-runtime-console__top span:nth-child(3) { background: var(--kzm-green); }
.kzm-runtime-console__top strong { margin-left: auto; }

.kzm-runtime-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 58px;
}

.kzm-runtime-grid article {
    min-height: 158px;
    padding: 24px;
    border: 1px solid rgba(214, 232, 240, 0.075);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.034);
}

.kzm-runtime-grid span {
    color: var(--kzm-soft);
    font-size: 12px;
}

.kzm-runtime-grid strong {
    display: block;
    margin: 12px 0 18px;
    color: var(--kzm-text);
    font-size: 28px;
}

.kzm-runtime-grid i {
    display: block;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--kzm-cyan), var(--kzm-green), transparent);
    animation: kzmScan 4s linear infinite;
}

.kzm-runtime-stream {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}

.kzm-runtime-stream span {
    display: block;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(117, 232, 255, 0.9), rgba(140, 243, 188, 0.42), transparent);
    animation: kzmSignalFlow 4.4s linear infinite;
}

.kzm-runtime-stream span:nth-child(2) { width: 82%; animation-delay: .6s; }
.kzm-runtime-stream span:nth-child(3) { width: 68%; animation-delay: 1.2s; }
.kzm-runtime-stream span:nth-child(4) { width: 90%; animation-delay: 1.8s; }

.kzm-runtime-copy {
    display: grid;
    align-content: end;
    min-height: 560px;
    padding: 36px 0 36px 42px;
    border-left: 1px solid rgba(117, 232, 255, 0.18);
}

.kzm-runtime-copy p {
    margin: 0;
    color: var(--kzm-muted);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.14;
}

.kzm-runtime-copy a {
    width: max-content;
    margin-top: 24px;
    color: var(--kzm-green);
    font-weight: 820;
}

.kzm-orchestration-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.kzm-orchestration-grid::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(117, 232, 255, 0.8), rgba(140, 243, 188, 0.7), transparent);
    animation: kzmSignalFlow 5.8s linear infinite;
}

.kzm-orchestration-grid article,
.kzm-live-system-card {
    position: relative;
    min-height: 190px;
    padding: 22px;
    border: 1px solid var(--kzm-line);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.034));
    backdrop-filter: blur(22px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.kzm-orchestration-grid article::before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    margin-bottom: 46px;
    border-radius: 50%;
    background: var(--kzm-green);
    box-shadow: 0 0 26px rgba(140, 243, 188, 0.34);
}

.kzm-orchestration-grid span,
.kzm-live-system-card p {
    color: var(--kzm-muted);
    line-height: 1.65;
}

.kzm-orchestration-grid strong {
    display: block;
    margin-top: 10px;
    color: var(--kzm-text);
    font-size: 18px;
    line-height: 1.2;
}

.kzm-live-system-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 16px;
}

.kzm-live-system-card {
    min-height: 320px;
}

.kzm-live-system-card--wide {
    grid-row: span 1;
}

.kzm-live-system-card h3 {
    margin: 24px 0 10px;
    color: var(--kzm-text);
    font-size: 24px;
    line-height: 1.1;
}

.kzm-live-bars {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 120px;
}

.kzm-live-bars span {
    flex: 1;
    border-radius: 999px 999px 5px 5px;
    background: linear-gradient(180deg, var(--kzm-cyan), var(--kzm-green));
    animation: kzmBars 4.2s ease-in-out infinite;
}

.kzm-live-bars span:nth-child(1) { height: 42%; }
.kzm-live-bars span:nth-child(2) { height: 84%; animation-delay: .2s; }
.kzm-live-bars span:nth-child(3) { height: 58%; animation-delay: .4s; }
.kzm-live-bars span:nth-child(4) { height: 74%; animation-delay: .6s; }
.kzm-live-bars span:nth-child(5) { height: 52%; animation-delay: .8s; }

.kzm-live-bars--mini {
    height: 38px;
    gap: 6px;
}

.kzm-live-node-map {
    position: relative;
    height: 120px;
    border: 1px solid rgba(117, 232, 255, 0.14);
    border-radius: 50%;
}

.kzm-live-node-map span {
    position: absolute;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(117, 232, 255, 0.38);
    border-radius: 12px;
    background: rgba(117, 232, 255, 0.1);
    animation: kzmNodePulse 4s ease-in-out infinite;
}

.kzm-live-node-map span:nth-child(1) { left: 12%; top: 12%; }
.kzm-live-node-map span:nth-child(2) { right: 18%; top: 10%; animation-delay: .5s; }
.kzm-live-node-map span:nth-child(3) { left: 30%; bottom: 8%; animation-delay: 1s; }
.kzm-live-node-map span:nth-child(4) { right: 10%; bottom: 18%; animation-delay: 1.5s; }

.kzm-live-status {
    display: grid;
    gap: 12px;
}

.kzm-live-status i {
    display: block;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(117, 232, 255, 0.85), rgba(140, 243, 188, 0.28), transparent);
    animation: kzmScan 3.6s linear infinite;
}

.kzm-live-status i:nth-child(2) { width: 76%; animation-delay: .7s; }
.kzm-live-status i:nth-child(3) { width: 54%; animation-delay: 1.4s; }

.kzm-feature-link,
.kzm-output-card {
    min-height: 280px;
    padding: 26px;
    border: 1px solid var(--kzm-line);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
        rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(22px);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.kzm-feature-link--wide {
    grid-column: span 1;
}

.kzm-feature-link:hover,
.kzm-output-card:hover {
    border-color: var(--kzm-line-strong);
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.kzm-feature-link span,
.kzm-output-card span {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(117, 232, 255, 0.36);
    border-radius: 14px;
    color: var(--kzm-cyan);
    background: rgba(117, 232, 255, 0.08);
    font-weight: 800;
}

.kzm-feature-link h2,
.kzm-output-card h2,
.kzm-panel-list h2,
.kzm-contact-card h2 {
    margin: 26px 0 12px;
    color: var(--kzm-text);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: 0;
}

.kzm-feature-link p,
.kzm-output-card p,
.kzm-panel-list p {
    margin: 0;
    color: var(--kzm-muted);
    line-height: 1.65;
}

.kzm-page-grid {
    padding-bottom: 72px;
}

.kzm-solution-card em {
    display: inline-block;
    margin-top: 18px;
    color: var(--kzm-green);
    font-style: normal;
    font-size: 13px;
    font-weight: 760;
}

.kzm-split-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: center;
    min-height: 650px;
    padding: 58px 0 72px;
}

.kzm-split-hero .kzm-button {
    margin-top: 30px;
}

.kzm-split-hero .kzm-hero__visual {
    min-height: 480px;
}

.kzm-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-bottom: 82px;
}

.kzm-panel-list {
    padding: 28px;
    border: 1px solid var(--kzm-line);
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.036));
    backdrop-filter: blur(20px);
}

.kzm-panel-list article {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.kzm-panel-list article span {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--kzm-green);
    box-shadow: 0 0 18px rgba(140, 243, 188, 0.4);
}

.kzm-output-grid,
.kzm-belief-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 82px;
}

.kzm-belief-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kzm-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-bottom: 82px;
}

.kzm-timeline::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--kzm-cyan), var(--kzm-green), transparent);
    opacity: 0.6;
}

.kzm-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: center;
    min-height: 680px;
    padding: 62px 0 82px;
}

.kzm-contact-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.kzm-contact-points span {
    padding: 9px 12px;
    border: 1px solid var(--kzm-line);
    border-radius: 999px;
    color: var(--kzm-soft);
    background: rgba(255, 255, 255, 0.045);
    font-size: 12px;
}

.kzm-contact-card {
    padding: 28px;
    border: 1px solid var(--kzm-line-strong);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(117, 232, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(6, 8, 12, 0.78);
    backdrop-filter: blur(24px);
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.kzm-contact-card h2 {
    margin-top: 0;
    margin-bottom: 22px;
}

.kzm-page-contact .kzm-inquiry-rail {
    display: none;
}

.kzm-hero__visual {
    position: relative;
    min-height: 460px;
    perspective: 1200px;
}

.kzm-dashboard {
    position: relative;
    width: min(100%, 560px);
    min-height: 450px;
    margin-left: auto;
    padding: 18px;
    border: 1px solid rgba(117, 232, 255, 0.24);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(8, 10, 14, 0.72);
    backdrop-filter: blur(28px);
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    transform: rotateX(6deg) rotateY(-9deg);
}

.kzm-float-card {
    animation: kzmFloat 7s ease-in-out infinite;
}

.kzm-dashboard__top {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--kzm-soft);
    font-size: 12px;
}

.kzm-dashboard__top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.kzm-dashboard__top span:nth-child(1) { background: var(--kzm-coral); }
.kzm-dashboard__top span:nth-child(2) { background: var(--kzm-amber); }
.kzm-dashboard__top span:nth-child(3) { background: var(--kzm-green); }
.kzm-dashboard__top strong {
    margin-left: auto;
    color: var(--kzm-muted);
}

.kzm-dashboard__grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 14px;
    margin-top: 18px;
}

.kzm-panel,
.kzm-flow-card,
.kzm-solution-card,
.kzm-why-card,
.kzm-case-card,
.kzm-ai-console {
    border: 1px solid var(--kzm-line);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.038));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.kzm-panel {
    min-height: 150px;
    padding: 16px;
    overflow: hidden;
}

.kzm-panel p,
.kzm-flow-card p,
.kzm-solution-card p,
.kzm-why-card p,
.kzm-case-card p,
.kzm-demo-copy p,
.kzm-section__head p {
    color: var(--kzm-muted);
    line-height: 1.65;
}

.kzm-panel p {
    margin: 0 0 12px;
    font-size: 12px;
}

.kzm-panel strong {
    display: block;
    margin-bottom: 12px;
    font-size: 44px;
    line-height: 1;
}

.kzm-meter {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.kzm-meter i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--kzm-cyan), var(--kzm-green));
    animation: kzmPulse 3.4s ease-in-out infinite;
}

.kzm-mini-table {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-top: 16px;
    color: var(--kzm-soft);
    font-size: 11px;
}

.kzm-mini-table em {
    color: var(--kzm-green);
    font-style: normal;
}

.kzm-panel--graph,
.kzm-panel--approval {
    min-height: 204px;
}

.kzm-flow-map {
    position: relative;
    height: 138px;
}

.kzm-flow-map b {
    position: absolute;
    display: block;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(117, 232, 255, 0.48);
    border-radius: 12px;
    background: rgba(117, 232, 255, 0.13);
    box-shadow: 0 0 24px rgba(117, 232, 255, 0.14);
}

.kzm-flow-map b:nth-child(1) { left: 5%; top: 14%; }
.kzm-flow-map b:nth-child(2) { right: 10%; top: 7%; }
.kzm-flow-map b:nth-child(3) { left: 28%; bottom: 7%; }
.kzm-flow-map b:nth-child(4) { right: 20%; bottom: 19%; }

.kzm-flow-map i {
    position: absolute;
    inset: 28px 32px;
    border: 1px solid rgba(117, 232, 255, 0.22);
    border-radius: 50%;
    transform: rotate(-18deg);
}

.kzm-panel--approval ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--kzm-muted);
    font-size: 12px;
}

.kzm-panel--approval li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
}

.kzm-panel--approval li span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--kzm-green);
}

.kzm-bars {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 108px;
}

.kzm-bars span {
    flex: 1;
    border-radius: 999px 999px 4px 4px;
    background: linear-gradient(180deg, var(--kzm-amber), var(--kzm-coral));
    animation: kzmBars 4s ease-in-out infinite;
}

.kzm-bars span:nth-child(1) { height: 42%; }
.kzm-bars span:nth-child(2) { height: 70%; animation-delay: .2s; }
.kzm-bars span:nth-child(3) { height: 55%; animation-delay: .4s; }
.kzm-bars span:nth-child(4) { height: 86%; animation-delay: .6s; }
.kzm-bars span:nth-child(5) { height: 64%; animation-delay: .8s; }

.kzm-data-stream {
    position: absolute;
    inset: auto 28px 26px;
    display: grid;
    gap: 8px;
}

.kzm-data-stream span {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(117, 232, 255, 0.84), transparent);
    animation: kzmScan 3.2s linear infinite;
}

.kzm-data-stream span:nth-child(2) { animation-delay: .7s; }
.kzm-data-stream span:nth-child(3) { animation-delay: 1.4s; }

.kzm-section,
.kzm-demo-section,
.kzm-final-cta {
    width: min(1240px, calc(100% - 72px));
    margin: 0 auto;
    padding: clamp(104px, 14vw, 168px) 0;
}

.kzm-section__head {
    max-width: 820px;
    margin-bottom: 56px;
}

.kzm-section__head h2,
.kzm-demo-copy h2,
.kzm-final-cta h2 {
    font-size: clamp(42px, 5.8vw, 82px);
    line-height: 0.96;
}

.kzm-section__head p,
.kzm-demo-copy p {
    max-width: 690px;
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.72;
}

.kzm-workflow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.kzm-workflow::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 54px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--kzm-cyan), var(--kzm-green), transparent);
    opacity: 0.72;
}

.kzm-flow-card {
    position: relative;
    min-height: 210px;
    padding: 22px;
    transition: transform 180ms ease, border-color 180ms ease;
}

.kzm-flow-card:hover,
.kzm-solution-card:hover,
.kzm-case-card:hover {
    border-color: var(--kzm-line-strong);
    transform: translateY(-4px);
}

.kzm-flow-card span {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(117, 232, 255, 0.36);
    border-radius: 14px;
    color: var(--kzm-cyan);
    background: rgba(117, 232, 255, 0.08);
    font-weight: 800;
}

.kzm-flow-card h3,
.kzm-solution-card h3,
.kzm-why-card h3,
.kzm-case-card h3 {
    margin: 22px 0 10px;
    color: var(--kzm-text);
    font-size: 18px;
    letter-spacing: 0;
}

.kzm-flow-card p,
.kzm-solution-card p,
.kzm-why-card p,
.kzm-case-card p {
    margin: 0;
    font-size: 14px;
}

.kzm-solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.kzm-solution-card,
.kzm-why-card,
.kzm-case-card {
    padding: 20px;
}

.kzm-solution-card:nth-child(1),
.kzm-solution-card:nth-child(7) {
    grid-column: span 2;
}

.kzm-card-preview {
    display: grid;
    align-content: end;
    gap: 10px;
    height: 128px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(117, 232, 255, 0.13), transparent 42%),
        rgba(0, 0, 0, 0.18);
}

.kzm-card-preview span {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(117, 232, 255, 0.9), rgba(140, 243, 188, 0.5));
}

.kzm-demo-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.kzm-ai-console {
    padding: 18px;
    border-radius: 28px;
}

.kzm-prompt {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(117, 232, 255, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
}

.kzm-prompt span {
    color: var(--kzm-green);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.kzm-prompt strong {
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.2;
}

.kzm-generated-ui {
    display: grid;
    grid-template-columns: 86px 1fr;
    min-height: 360px;
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid var(--kzm-line);
    border-radius: 22px;
    background: #090c11;
}

.kzm-generated-ui__sidebar {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 20px;
    border-right: 1px solid var(--kzm-line);
    background: rgba(255, 255, 255, 0.035);
}

.kzm-generated-ui__sidebar span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.075);
}

.kzm-generated-ui__main {
    padding: 22px;
}

.kzm-ui-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.kzm-ui-row b {
    font-size: 20px;
}

.kzm-ui-row em {
    color: var(--kzm-green);
    font-size: 12px;
    font-style: normal;
}

.kzm-ui-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.kzm-ui-cards i {
    display: grid;
    align-content: space-between;
    min-height: 82px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(117, 232, 255, 0.16), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.035);
    font-style: normal;
}

.kzm-ui-cards i b,
.kzm-mini-system b {
    position: relative;
    z-index: 1;
    display: block;
    color: rgba(246, 248, 251, 0.92);
    font-size: 12px;
    line-height: 1.2;
}

.kzm-ui-cards i em,
.kzm-mini-system em {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: max-content;
    margin-top: 10px;
    padding: 4px 7px;
    border: 1px solid rgba(100, 244, 214, 0.24);
    border-radius: 999px;
    color: rgb(100, 244, 214);
    background: rgba(100, 244, 214, 0.065);
    font-size: 10px;
    font-style: normal;
    font-weight: 760;
    text-transform: uppercase;
}

.kzm-ui-table {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    color: var(--kzm-muted);
    font-size: 12px;
}

.kzm-ui-table span {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.kzm-ui-table span:nth-child(-n+3) {
    color: var(--kzm-text);
    background: rgba(255, 255, 255, 0.06);
}

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

.kzm-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.kzm-case-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    height: 160px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.18);
}

.kzm-case-preview span {
    position: relative;
    display: grid;
    align-content: space-between;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background:
        radial-gradient(circle at 20% 18%, rgba(100, 244, 214, 0.14), transparent 4rem),
        linear-gradient(145deg, rgba(117, 232, 255, 0.13), rgba(255, 209, 102, 0.08));
    overflow: hidden;
}

.kzm-case-preview span::after,
.kzm-scenario-card__visual span::after,
.kzm-showcase-card__screen span::after,
.kzm-ui-cards i::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    height: 1px;
    background: linear-gradient(90deg, rgba(100, 244, 214, 0.76), transparent);
    opacity: 0.5;
    animation: kzmSignalFlow 5.4s linear infinite;
}

.kzm-case-card p {
    display: grid;
    gap: 5px;
    margin-top: 12px;
}

.kzm-case-card strong {
    color: var(--kzm-green);
    font-size: 11px;
    text-transform: uppercase;
}

.kzm-final-cta {
    position: relative;
    display: grid;
    justify-items: center;
    min-height: 560px;
    margin-bottom: 96px;
    padding: clamp(78px, 10vw, 126px);
    border: 1px solid rgba(126, 232, 255, 0.22);
    border-radius: 44px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 18%, rgba(100, 244, 214, 0.12), transparent 22rem),
        linear-gradient(115deg, rgba(117, 232, 255, 0.09), transparent 34%),
        linear-gradient(245deg, rgba(255, 209, 102, 0.055), transparent 42%),
        rgba(255, 255, 255, 0.034);
    overflow: hidden;
}

.kzm-final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 36px 36px;
    opacity: 0.6;
}

.kzm-final-cta > * {
    position: relative;
}

.kzm-final-cta h2 {
    max-width: 900px;
    margin-bottom: 28px;
}

.kzm-final-cta--compact {
    min-height: 420px;
    margin-top: 0;
}

.kzm-workflow-hero,
.kzm-pipeline-section,
.kzm-agents-section,
.kzm-scenario-section,
.kzm-72-section,
.kzm-dashboard-showcase {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.kzm-workflow-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.98fr);
    gap: clamp(36px, 6vw, 82px);
    align-items: center;
    min-height: 640px;
    padding: 46px 0 64px;
}

.kzm-workflow-hero h1 {
    max-width: 820px;
    margin: 0;
    color: var(--kzm-text);
    font-size: clamp(46px, 5.5vw, 68px);
    line-height: 1;
    letter-spacing: 0;
}

.kzm-workflow-hero__copy > p:not(.kzm-kicker) {
    max-width: 700px;
    margin: 24px 0 0;
    color: var(--kzm-muted);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.62;
}

.kzm-ai-factory {
    position: relative;
    min-height: 480px;
    padding: 18px;
    border: 1px solid rgba(117, 232, 255, 0.28);
    border-radius: 30px;
    background:
        radial-gradient(circle at 48% 38%, rgba(117, 232, 255, 0.18), transparent 17rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.036)),
        rgba(7, 9, 13, 0.76);
    box-shadow: 0 44px 120px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(255, 255, 255, 0.14);
    overflow: hidden;
    backdrop-filter: blur(28px);
}

.kzm-ai-factory::before {
    content: "";
    position: absolute;
    inset: 58px;
    border: 1px solid rgba(117, 232, 255, 0.16);
    border-radius: 50%;
    animation: kzmFactorySpin 18s linear infinite;
}

.kzm-ai-factory::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: radial-gradient(circle at center, black, transparent 72%);
    opacity: 0.55;
}

.kzm-ai-factory__header,
.kzm-ai-factory__stage,
.kzm-ai-factory__metrics {
    position: relative;
    z-index: 1;
}

.kzm-ai-factory__header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--kzm-muted);
    font-size: 12px;
}

.kzm-ai-factory__header span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--kzm-coral);
}

.kzm-ai-factory__header span:nth-child(2) { background: var(--kzm-amber); }
.kzm-ai-factory__header span:nth-child(3) { background: var(--kzm-green); }
.kzm-ai-factory__header strong { margin-left: auto; }

.kzm-ai-factory__stage {
    height: 300px;
}

.kzm-agent-core {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: 132px;
    height: 132px;
    place-items: center;
    border: 1px solid rgba(117, 232, 255, 0.45);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(117, 232, 255, 0.18), rgba(140, 243, 188, 0.09)),
        rgba(255, 255, 255, 0.06);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 70px rgba(117, 232, 255, 0.22);
}

.kzm-agent-core b {
    color: var(--kzm-text);
    font-size: 42px;
}

.kzm-agent-core i {
    position: absolute;
    inset: -18px;
    border: 1px solid rgba(140, 243, 188, 0.24);
    border-radius: 44px;
    animation: kzmPulseRing 3.4s ease-in-out infinite;
}

.kzm-orbit-node {
    position: absolute;
    display: grid;
    width: 76px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(117, 232, 255, 0.36);
    border-radius: 999px;
    color: var(--kzm-cyan);
    background: rgba(255, 255, 255, 0.07);
    font-size: 12px;
    font-weight: 800;
}

.kzm-orbit-node--one { left: 12%; top: 24%; }
.kzm-orbit-node--two { right: 14%; top: 22%; }
.kzm-orbit-node--three { left: 16%; bottom: 18%; }
.kzm-orbit-node--four { right: 12%; bottom: 20%; }

.kzm-orbit-line {
    position: absolute;
    inset: 62px 72px;
    border: 1px solid rgba(117, 232, 255, 0.22);
    border-radius: 50%;
    transform: rotate(-16deg);
}

.kzm-ai-factory__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.kzm-ai-factory__metrics article {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
}

.kzm-ai-factory__metrics span {
    display: block;
    color: var(--kzm-soft);
    font-size: 11px;
}

.kzm-ai-factory__metrics strong {
    display: block;
    margin-top: 7px;
    color: var(--kzm-text);
    font-size: 22px;
}

.kzm-pipeline-section,
.kzm-agents-section,
.kzm-scenario-section,
.kzm-72-section,
.kzm-dashboard-showcase {
    padding: 78px 0;
}

.kzm-agent-pipeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(9, minmax(120px, 1fr));
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0 18px;
}

.kzm-agent-pipeline::before {
    content: "";
    position: absolute;
    left: 4%;
    right: 4%;
    top: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--kzm-cyan), var(--kzm-green), transparent);
}

.kzm-agent-pipeline article,
.kzm-agent-card,
.kzm-scenario-card,
.kzm-72-timeline article,
.kzm-showcase-card {
    position: relative;
    border: 1px solid var(--kzm-line);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.035));
    backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.kzm-agent-pipeline article {
    min-height: 150px;
    padding: 18px;
}

.kzm-agent-pipeline span,
.kzm-72-timeline span {
    display: inline-grid;
    min-width: 44px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(117, 232, 255, 0.34);
    border-radius: 999px;
    color: var(--kzm-green);
    background: rgba(117, 232, 255, 0.08);
    font-size: 12px;
    font-weight: 800;
}

.kzm-agent-pipeline h3,
.kzm-agent-card h3,
.kzm-scenario-card h3,
.kzm-72-timeline h3,
.kzm-showcase-card h3 {
    margin: 18px 0 0;
    color: var(--kzm-text);
    font-size: 17px;
    line-height: 1.18;
}

.kzm-agent-grid,
.kzm-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.kzm-agent-card {
    min-height: 250px;
    padding: 24px;
    overflow: hidden;
}

.kzm-agent-card::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(117, 232, 255, 0.74), transparent);
    animation: kzmScan 3.8s linear infinite;
}

.kzm-agent-card__icon {
    display: flex;
    gap: 7px;
}

.kzm-agent-card__icon span {
    width: 16px;
    height: 16px;
    border-radius: 6px;
    background: rgba(117, 232, 255, 0.22);
    box-shadow: 0 0 20px rgba(117, 232, 255, 0.16);
}

.kzm-agent-card p,
.kzm-scenario-card p,
.kzm-72-timeline p {
    margin: 12px 0 0;
    color: var(--kzm-muted);
    line-height: 1.65;
}

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

.kzm-scenario-card {
    padding: 24px;
}

.kzm-scenario-card__visual,
.kzm-showcase-card__screen {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    min-height: 170px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background:
        radial-gradient(circle at 25% 15%, rgba(117, 232, 255, 0.18), transparent 9rem),
        rgba(0, 0, 0, 0.18);
}

.kzm-scenario-card__visual span,
.kzm-showcase-card__screen span {
    position: relative;
    display: grid;
    align-content: space-between;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(117, 232, 255, 0.18);
    border-radius: 14px;
    background:
        radial-gradient(circle at 22% 18%, rgba(100, 244, 214, 0.13), transparent 4rem),
        linear-gradient(145deg, rgba(117, 232, 255, 0.14), rgba(255, 209, 102, 0.08));
    overflow: hidden;
}

.kzm-mini-system span:nth-child(2)::after,
.kzm-mini-system i:nth-child(2)::after {
    animation-delay: .9s;
}

.kzm-mini-system span:nth-child(3)::after,
.kzm-mini-system i:nth-child(3)::after {
    animation-delay: 1.8s;
}

.kzm-mini-system span:nth-child(4)::after {
    animation-delay: 2.7s;
}

.kzm-scenario-card ol {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.kzm-scenario-card li {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--kzm-muted);
    background: rgba(255, 255, 255, 0.04);
    font-size: 13px;
}

.kzm-72-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.kzm-72-timeline::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 46px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--kzm-cyan), var(--kzm-green), transparent);
}

.kzm-72-timeline article {
    padding: 28px;
}

.kzm-showcase-card {
    padding: 18px;
}

.kzm-showcase-card:nth-child(1) {
    grid-column: span 2;
}

.kzm-showcase-card__screen {
    min-height: 220px;
}

.kzm-final-cta--workflow {
    margin-top: 30px;
}

.kzm-inquiry-rail {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 9997;
    display: grid;
    gap: 10px;
    width: min(188px, calc(100vw - 32px));
}

.kzm-inquiry-rail__button,
.kzm-inquiry-rail__link {
    display: grid;
    gap: 3px;
    align-items: center;
    min-height: 58px;
    padding: 12px 15px;
    border: 1px solid rgba(117, 232, 255, 0.46);
    border-radius: 14px;
    color: var(--kzm-text);
    background: rgba(7, 10, 14, 0.86);
    box-shadow: 0 20px 58px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    backdrop-filter: blur(22px);
    font-family: inherit;
}

.kzm-inquiry-rail__button span {
    color: var(--kzm-muted);
    font-size: 11px;
    text-transform: uppercase;
}

.kzm-inquiry-rail__button strong,
.kzm-inquiry-rail__link {
    font-size: 15px;
    font-weight: 760;
}

.kzm-inquiry-rail__link {
    display: none;
    min-height: 42px;
    place-items: center;
    text-align: center;
}

.kzm-inquiry-drawer {
    position: fixed;
    inset: 0;
    z-index: 9998;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.kzm-inquiry-drawer:target,
.kzm-inquiry-drawer.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.kzm-inquiry-drawer__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(16px);
    cursor: pointer;
}

.kzm-inquiry-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(560px, 100vw);
    overflow: auto;
    padding: clamp(28px, 5vw, 54px);
    border-left: 1px solid rgba(117, 232, 255, 0.28);
    background:
        linear-gradient(145deg, rgba(117, 232, 255, 0.13), transparent 32%),
        linear-gradient(320deg, rgba(255, 209, 102, 0.1), transparent 30%),
        #07090d;
    color: var(--kzm-text);
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.45);
}

.kzm-inquiry-drawer__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: var(--kzm-text);
    background: rgba(255, 255, 255, 0.06);
    font-size: 28px;
    font-family: inherit;
    line-height: 1;
    cursor: pointer;
}

.kzm-inquiry-drawer__eyebrow {
    margin: 0 0 12px;
    color: var(--kzm-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.kzm-inquiry-drawer h2 {
    margin: 0;
    color: var(--kzm-text);
    font-size: clamp(28px, 5vw, 46px);
    line-height: 1.04;
}

.kzm-inquiry-drawer__intro {
    margin: 16px 0 26px;
    color: var(--kzm-muted);
    line-height: 1.75;
}

.kzm-inquiry-form {
    display: grid;
    gap: 16px;
}

.kzm-inquiry-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.kzm-inquiry-form label {
    display: grid;
    gap: 8px;
    color: var(--kzm-muted);
    font-size: 13px;
}

.kzm-inquiry-form input,
.kzm-inquiry-form select,
.kzm-inquiry-form textarea {
    width: 100%;
    border: 1px solid rgba(126, 232, 255, 0.25);
    border-radius: 12px;
    padding: 13px 14px;
    color: var(--kzm-text);
    background: rgba(255, 255, 255, 0.055);
    outline: none;
}

.kzm-inquiry-form input:focus,
.kzm-inquiry-form select:focus,
.kzm-inquiry-form textarea:focus {
    border-color: rgba(117, 232, 255, 0.78);
    box-shadow: 0 0 0 3px rgba(117, 232, 255, 0.12);
}

.kzm-inquiry-form option {
    color: #111;
}

.kzm-inquiry-form__submit {
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    color: #061014;
    background: linear-gradient(135deg, var(--kzm-cyan), var(--kzm-green));
    font-weight: 820;
    cursor: pointer;
}

.kzm-inquiry-form__note {
    margin: 0;
    color: rgba(226, 236, 241, 0.58);
    font-size: 12px;
}

.kzm-inquiry-toast {
    position: fixed;
    right: 22px;
    bottom: 100px;
    z-index: 9999;
    max-width: min(380px, calc(100vw - 32px));
    padding: 14px 16px;
    border: 1px solid rgba(140, 243, 188, 0.45);
    border-radius: 14px;
    color: var(--kzm-text);
    background: rgba(6, 14, 10, 0.92);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.36);
}

.kzm-inquiry-toast[data-kind="invalid"] {
    border-color: rgba(255, 209, 102, 0.54);
    background: rgba(26, 15, 4, 0.94);
}

@keyframes kzmFloat {
    0%, 100% { transform: rotateX(6deg) rotateY(-9deg) translateY(0); }
    50% { transform: rotateX(4deg) rotateY(-7deg) translateY(-14px); }
}

@keyframes kzmPulse {
    0%, 100% { opacity: 0.74; }
    50% { opacity: 1; }
}

@keyframes kzmBars {
    0%, 100% { transform: scaleY(0.84); transform-origin: bottom; }
    50% { transform: scaleY(1); transform-origin: bottom; }
}

@keyframes kzmScan {
    from { transform: translateX(-24%); opacity: 0; }
    35% { opacity: 1; }
    to { transform: translateX(24%); opacity: 0; }
}

@keyframes kzmFactorySpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes kzmPulseRing {
    0%, 100% { opacity: 0.35; transform: scale(0.96); }
    50% { opacity: 0.9; transform: scale(1.04); }
}

@keyframes kzmNodePulse {
    0%, 100% { opacity: 0.52; transform: translateY(0) scale(0.98); }
    50% { opacity: 1; transform: translateY(-3px) scale(1.04); }
}

@keyframes kzmSignalFlow {
    0% { opacity: 0; filter: blur(0); }
    30% { opacity: 0.95; }
    100% { opacity: 0; filter: blur(1px); }
}

@keyframes kzmHeaderBreath {
    0%, 100% { opacity: 0.44; }
    50% { opacity: 0.78; }
}

@keyframes kzmCommandSweep {
    from { transform: translateX(-90%); }
    to { transform: translateX(90%); }
}

@keyframes kzmStatusBreath {
    0%, 100% { opacity: 0.45; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.08); }
}

@keyframes kzmCoreBreath {
    0%, 100% { box-shadow: 0 0 90px rgba(100, 244, 214, 0.14), 0 0 46px rgba(117, 232, 255, 0.12) inset; }
    50% { box-shadow: 0 0 140px rgba(100, 244, 214, 0.24), 0 0 68px rgba(117, 232, 255, 0.18) inset; }
}

@media (max-width: 1060px) {
    .kzm-hero,
    .kzm-demo-section,
    .kzm-split-hero,
    .kzm-contact-layout,
    .kzm-workflow-hero {
        grid-template-columns: 1fr;
    }

    .kzm-hero {
        min-height: auto;
    }

    .kzm-dashboard {
        margin: 0 auto;
    }

    .kzm-workflow,
    .kzm-why-grid,
    .kzm-home-grid,
    .kzm-output-grid,
    .kzm-timeline,
    .kzm-belief-grid,
    .kzm-two-col,
    .kzm-agent-grid,
    .kzm-showcase-grid,
    .kzm-orchestration-grid,
    .kzm-live-system-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kzm-workflow::before {
        display: none;
    }

    .kzm-solution-grid,
    .kzm-case-grid,
    .kzm-scenario-grid,
    .kzm-72-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kzm-solution-card:nth-child(1),
    .kzm-solution-card:nth-child(7),
    .kzm-showcase-card:nth-child(1) {
        grid-column: span 1;
    }

    .kzm-orchestration-grid::before {
        display: none;
    }

    .kzm-os-stack {
        margin: 0 auto;
    }

    .kzm-system-map {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        min-height: auto;
        padding: 18px;
    }

    .kzm-system-map::before,
    .kzm-system-map::after,
    .kzm-system-map__rail {
        display: none;
    }

    .kzm-system-map__core,
    .kzm-system-node,
    .kzm-system-node--req,
    .kzm-system-node--auto,
    .kzm-system-node--dealer,
    .kzm-system-node--erp,
    .kzm-system-node--workflow,
    .kzm-system-node--data,
    .kzm-system-node--demo {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: auto;
        transform: none;
    }

    .kzm-system-map__core {
        grid-column: span 2;
        min-height: 180px;
    }

    .kzm-system-node--demo:hover {
        transform: translateY(-4px);
    }

    .kzm-runtime-console {
        grid-template-columns: 1fr;
    }

    .kzm-runtime-copy {
        min-height: auto;
        border-left: 0;
        border-top: 1px solid rgba(117, 232, 255, 0.18);
    }

    .kzm-solutions-hero,
    .kzm-architecture-grid {
        grid-template-columns: 1fr;
    }

    .kzm-solution-orbit {
        min-height: 440px;
    }

    .kzm-solution-system-grid,
    .kzm-agent-collab-map,
    .kzm-business-value {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kzm-delivery-pipeline__track,
    .kzm-architecture-flow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .kzm-agent-collab-map__line,
    .kzm-delivery-pipeline__track::before,
    .kzm-architecture-flow::before {
        display: none;
    }
}

@media (max-width: 720px) {
    body.kzm-ai-landing,
    .kzm-site-shell {
        overflow-x: hidden;
    }

    .kzm-nav {
        grid-template-columns: 1fr;
        top: 10px;
        width: min(100% - 24px, 1200px);
        min-height: 58px;
        padding: 7px 10px;
        border-radius: 18px;
    }

    .kzm-nav__links {
        display: none;
    }

    .kzm-brand__copy strong {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .kzm-brand__copy em {
        letter-spacing: 0.08em;
        font-size: 10px;
    }

    .kzm-nav__cta {
        display: none;
    }

    .kzm-nav__actions {
        position: absolute;
        right: 10px;
        top: 10px;
    }

    .kzm-language-switcher__trigger {
        min-width: 42px;
        min-height: 38px;
        font-size: 12px;
    }

    .kzm-language-switcher__menu {
        right: 0;
        min-width: 142px;
    }

    .kzm-brand {
        gap: 10px;
        padding: 2px 4px 2px 0;
    }

    .kzm-brand__mark {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .kzm-hero,
    .kzm-split-hero,
    .kzm-contact-layout,
    .kzm-workflow-hero {
        padding-top: 48px;
    }

    .kzm-hero,
    .kzm-system-backplane,
    .kzm-runtime-layer,
    .kzm-section,
    .kzm-demo-section,
    .kzm-final-cta,
    .kzm-solutions-hero,
    .kzm-industry-intelligence,
    .kzm-agent-collab-layer,
    .kzm-delivery-pipeline,
    .kzm-solution-architecture,
    .kzm-business-value {
        width: min(100% - 36px, 1200px);
    }

    .kzm-hero {
        gap: 38px;
    }

    .kzm-hero__copy {
        min-width: 0;
        max-width: 100%;
    }

    .kzm-hero--home {
        min-height: auto;
        padding-top: 54px;
    }

    .kzm-hero h1,
    .kzm-page-hero h1,
    .kzm-split-hero h1,
    .kzm-contact-layout h1,
    .kzm-workflow-hero h1 {
        font-size: clamp(38px, 10.2vw, 44px);
        line-height: 1.03;
    }

    .kzm-hero__lead {
        margin-top: 18px;
        max-width: 340px;
        font-size: 16px;
        line-height: 1.52;
    }

    .kzm-hero__actions,
    .kzm-proof-strip {
        margin-top: 22px;
        max-width: 340px;
    }

    .kzm-proof-strip span {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .kzm-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 220px;
    }

    .kzm-button {
        min-height: 48px;
        padding: 0 20px;
    }

    .kzm-button {
        width: 100%;
    }

    .kzm-page-hero {
        min-height: 430px;
        padding-top: 72px;
    }

    .kzm-dashboard {
        min-height: auto;
        transform: none;
        animation: none;
    }

    .kzm-dashboard__grid,
    .kzm-workflow,
    .kzm-solution-grid,
    .kzm-why-grid,
    .kzm-case-grid,
    .kzm-generated-ui,
    .kzm-home-grid,
    .kzm-output-grid,
    .kzm-timeline,
    .kzm-belief-grid,
    .kzm-two-col,
    .kzm-agent-grid,
    .kzm-scenario-grid,
    .kzm-72-timeline,
    .kzm-showcase-grid {
        grid-template-columns: 1fr;
    }

    .kzm-orchestration-grid,
    .kzm-live-system-grid,
    .kzm-os-panels,
    .kzm-system-map,
    .kzm-system-telemetry,
    .kzm-runtime-grid,
    .kzm-solution-system-grid,
    .kzm-agent-collab-map,
    .kzm-delivery-pipeline__track,
    .kzm-architecture-flow,
    .kzm-business-value {
        grid-template-columns: 1fr;
    }

    .kzm-solutions-hero {
        min-height: auto;
        padding: 66px 0 54px;
    }

    .kzm-solutions-hero h1 {
        font-size: clamp(38px, 11vw, 56px);
    }

    .kzm-solution-orbit {
        min-height: 520px;
        border-radius: 24px;
    }

    .kzm-solution-orbit i {
        inset: 90px 34px;
    }

    .kzm-solution-orbit__node {
        min-width: 118px;
        font-size: 11px;
    }

    .kzm-solution-orbit__node--a { left: 6%; top: 14%; }
    .kzm-solution-orbit__node--b { right: 5%; top: 19%; }
    .kzm-solution-orbit__node--c { left: 5%; bottom: 24%; }
    .kzm-solution-orbit__node--d { right: 5%; bottom: 20%; }

    .kzm-industry-intelligence,
    .kzm-agent-collab-layer,
    .kzm-delivery-pipeline,
    .kzm-solution-architecture,
    .kzm-business-value {
        padding: 54px 0;
    }

    .kzm-solution-system {
        min-height: 0;
        padding: 20px;
    }

    .kzm-system-backplane,
    .kzm-runtime-layer {
        padding: 64px 0;
    }

    .kzm-system-map {
        margin-top: 28px;
        padding: 12px;
        border-radius: 24px;
    }

    .kzm-system-map__core {
        grid-column: span 1;
        width: auto;
        min-height: 158px;
        padding: 20px;
    }

    .kzm-system-map__core span {
        width: 70px;
        height: 70px;
        border-radius: 20px;
    }

    .kzm-system-node {
        padding: 16px;
    }

    .kzm-runtime-console__screen {
        min-height: 480px;
        padding: 14px;
        border-radius: 24px;
    }

    .kzm-runtime-copy {
        padding: 22px 4px 0;
    }

    .kzm-runtime-copy p {
        font-size: 20px;
    }

    .kzm-os-stack {
        width: 100%;
        min-height: 500px;
        padding: 14px;
        transform: none;
        animation: none;
        border-radius: 24px;
    }

    .kzm-os-stack__top strong {
        max-width: 210px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .kzm-os-topology {
        height: 230px;
    }

    .kzm-os-stack::before {
        inset: 46px 22px 170px;
    }

    .kzm-os-stack::after {
        inset: 74px 42px 190px;
    }

    .kzm-os-core {
        width: 98px;
        height: 98px;
        border-radius: 26px;
        font-size: 34px;
    }

    .kzm-os-node {
        min-width: 78px;
        height: 36px;
        padding: 0 8px;
        font-size: 10px;
    }

    .kzm-os-node--a { left: 4%; top: 22%; }
    .kzm-os-node--b { right: 3%; top: 21%; }
    .kzm-os-node--c { left: 4%; bottom: 24%; }
    .kzm-os-node--d { right: 3%; bottom: 25%; }

    .kzm-os-panels article {
        min-height: 92px;
    }

    .kzm-ai-factory {
        min-height: 470px;
    }

    .kzm-ai-factory__metrics {
        grid-template-columns: 1fr;
    }

    .kzm-timeline::before {
        display: none;
    }

    .kzm-72-timeline::before {
        display: none;
    }

    .kzm-hero__visual {
        min-height: 0;
    }

    .kzm-generated-ui__sidebar {
        display: none;
    }

    .kzm-ui-cards {
        grid-template-columns: 1fr;
    }

    .kzm-inquiry-rail {
        display: none;
    }

    .kzm-inquiry-rail__button {
        min-height: 54px;
    }

    .kzm-inquiry-form__grid {
        grid-template-columns: 1fr;
    }

    .kzm-inquiry-drawer__panel {
        width: 100vw;
        padding-top: 64px;
    }
}
