:root {
    --ink: oklch(18% 0.055 258);
    --navy: oklch(19% 0.075 259);
    --deep: oklch(12% 0.045 263);
    --blue: oklch(58% 0.22 258);
    --sky: oklch(77% 0.13 239);
    --mint: oklch(82% 0.11 178);
    --cream: oklch(98% 0.012 255);
    --soft: oklch(96% 0.018 254);
    --muted: oklch(49% 0.041 257);
    --line: oklch(18% 0.055 258 / 0.13);
    --glass: oklch(100% 0.006 255 / 0.14);
    --max: 1160px;
    --shadow: 0 28px 80px oklch(18% 0.055 258 / 0.13);
    --stage-radius: clamp(28px, 4vw, 44px);
    --stage-shadow: 0 42px 120px oklch(18% 0.055 258 / 0.24);
    --soft-panel: oklch(100% 0.006 255 / 0.82);
    --font: "Manrope", system-ui, sans-serif;
    --display: "Bricolage Grotesque", "Manrope", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 1200;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: transform 0.2s;
}

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

:focus-visible {
    outline: 3px solid var(--mint);
    outline-offset: 4px;
}

.page {
    position: relative;
    z-index: 1;
}

.nav-wrap {
    position: fixed;
    top: 18px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 100;
    pointer-events: none;
}

.nav {
    pointer-events: auto;
    position: relative;
    width: min(1000px, calc(100% - 28px));
    min-height: 58px;
    padding: 6px 8px 6px 12px;
    border-radius: 999px;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 14px;
    background: oklch(100% 0.006 255 / 0.16);
    border: 1px solid oklch(100% 0.006 255 / 0.38);
    backdrop-filter: blur(24px);
    box-shadow: 0 4px 12px oklch(0% 0 0 / 0.08);
    transition:
        background 0.3s,
        border-color 0.3s,
        box-shadow 0.3s,
        border-radius 0.3s;
}

.scrolled .nav {
    min-height: 50px;
    background: oklch(99% 0.006 255 / 0.91);
    border-color: var(--line);
    box-shadow: 0 4px 12px oklch(18% 0.055 258 / 0.06);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
}

.brand-logo {
    display: block;
    width: 132px;
    height: auto;
    object-fit: contain;
}

.nav .brand-logo {
    width: 124px;
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.scrolled .nav .brand-logo {
    transform: translateY(-50%) scale(0.931);
}

.nav .brand {
    position: relative;
    width: 124px;
    height: 38px;
}

.nav .brand-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(1);
    transform-origin: left center;
    transition:
        transform 0.3s cubic-bezier(0.2, 0.9, 0.2, 1),
        opacity 0.25s ease;
}

.nav .brand-logo-dark {
    opacity: 0;
}

.nav .brand-logo-light {
    opacity: 1;
}

.scrolled .nav .brand,
.nav.open .brand {
    width: 116px;
    height: 36px;
}

.scrolled .nav .brand-logo-dark,
.nav.open .brand-logo-dark {
    opacity: 1;
    transform: translateY(-50%) scale(0.931);
}

.scrolled .nav .brand-logo-light,
.nav.open .brand-logo-light {
    opacity: 0;
    transform: translateY(-50%) scale(0.931);
}

.brand:hover .brand-logo-light {
    transform: translateY(-50%) scale(1.03);
}

.scrolled .brand:hover .brand-logo-dark,
.nav.open .brand:hover .brand-logo-dark {
    transform: translateY(-50%) scale(0.96);
}

.mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: oklch(100% 0.006 255 / 0.16);
    box-shadow: inset 0 1px 0 oklch(100% 0.006 255 / 0.5);
}

.brand strong {
    font-family: var(--display);
    font-size: 17px;
    line-height: 0.9;
    letter-spacing: -0.035em;
    color: oklch(100% 0.006 255);
}

.scrolled .brand strong {
    color: var(--ink);
}

.brand small {
    display: block;
    font-size: 8px;
    letter-spacing: 0.52em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 900;
    margin-top: 4px;
}

.scrolled .brand small {
    color: oklch(18% 0.055 258 / 0.48);
}

.nav-menu {
    display: contents;
}

.links {
    justify-self: center;
    display: flex;
    gap: 2px;
    padding: 4px;
    border-radius: 999px;
    background: oklch(100% 0.006 255 / 0.1);
    border: 1px solid oklch(100% 0.006 255 / 0.18);
    position: relative;
    isolation: isolate;
    --active-x: 4px;
    --active-w: 0px;
}

.links:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: var(--active-w);
    border-radius: 999px;
    background: oklch(100% 0.006 255 / 0.22);
    transform: translateX(var(--active-x));
    opacity: var(--active-opacity, 0);
    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.2s,
        background 0.25s;
}

.links a {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 800;
    padding: 9px 0;
    width: 82px;
    text-align: center;
    display: inline-block;
    border-radius: 999px;
    color: oklch(100% 0.006 255 / 0.84);
    transition: color 0.24s;
}

.links a:hover,
.links a[aria-current="true"] {
    color: oklch(100% 0.006 255);
}

.scrolled .links {
    background: oklch(94% 0.032 255);
    border-color: var(--line);
}

.scrolled .links a {
    color: oklch(18% 0.055 258 / 0.68);
}

.scrolled .links:before {
    background: var(--cream);
}

.scrolled .links a:hover,
.scrolled .links a[aria-current="true"] {
    color: var(--ink);
}

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 14px 35px oklch(58% 0.22 258 / 0.22);
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        background 0.2s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px oklch(58% 0.22 258 / 0.28);
}

.nav-cta:active,
.btn:active {
    transform: translateY(1px) scale(0.99);
}

.scrolled .nav-cta {
    background: linear-gradient(135deg, var(--blue), oklch(52% 0.22 258));
    color: oklch(100% 0.006 255);
}

.menu {
    display: none;
    border: 0;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    background: oklch(100% 0.006 255 / 0.16);
    color: oklch(100% 0.006 255);
    place-items: center;
}

.menu-lines,
.menu-lines:before,
.menu-lines:after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition:
        transform 0.2s,
        opacity 0.2s;
}

.menu-lines {
    position: relative;
}

.menu-lines:before,
.menu-lines:after {
    content: "";
    position: absolute;
    left: 0;
}

.menu-lines:before {
    top: -6px;
}

.menu-lines:after {
    top: 6px;
}

.nav.open .menu-lines {
    transform: rotate(45deg);
}

.nav.open .menu-lines:before {
    opacity: 0;
}

.nav.open .menu-lines:after {
    top: 0;
    transform: rotate(90deg);
}

.scrolled .menu {
    background: oklch(94% 0.032 255);
    color: var(--ink);
}

.logo svg {
    display: block;
}

.hero {
    --hero-grid-opacity: 0.32;
    min-height: auto;
    position: relative;
    overflow: hidden;
    color: oklch(100% 0.006 255);
    padding: 0 5px 5px 5px;
    background: linear-gradient(180deg, oklch(96% 0.018 254), var(--cream));
}

.hero:before {
    display: none;
}

.hero-grid:before {
    content: "";
    position: absolute;
    inset: -400px 0 -400px 0;
    background-image:
        linear-gradient(oklch(100% 0.006 255 / 0.11) 1px, transparent 1px),
        linear-gradient(90deg,
            oklch(100% 0.006 255 / 0.09) 1px,
            transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(circle at 50% 8%,
            oklch(0% 0 0),
            transparent 74%);
    opacity: var(--hero-grid-opacity, 0.32);
    transform: perspective(900px) rotateX(58deg) translateY(-220px) scale(1.4);
    transform-origin: top;
    transition: opacity 0.1s linear;
}

.hero-grid:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 90%,
            oklch(77% 0.13 239 / 0.46) 0%,
            transparent 70%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    justify-items: center;
    text-align: center;
    width: min(100% - 10px, 1580px);
    min-height: 750px;
    padding: 100px clamp(32px, 5vw, 80px) 60px;
    border-radius: 0 0 var(--stage-radius) var(--stage-radius);
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%,
            oklch(77% 0.13 239 / 0.58),
            transparent 19rem),
        radial-gradient(circle at 24% 32%,
            oklch(58% 0.22 258 / 0.72),
            transparent 30rem),
        linear-gradient(180deg,
            oklch(58% 0.22 258) 0%,
            oklch(23% 0.095 260) 66%,
            var(--deep) 100%);
    box-shadow: var(--stage-shadow);
    isolation: isolate;
}

.hero-copy {
    position: relative;
    z-index: 3;
    width: min(940px, 100%);
    transform: translateY(-16px);
}

h1,
h2,
h3 {
    font-family: var(--display);
    letter-spacing: -0.02em;
    margin: 0;
    text-wrap: balance;
}

.hero h1 {
    font-size: clamp(52px, 5.8vw, 82px);
    line-height: 0.94;
    max-width: 920px;
    margin: auto;
}

.hero h1 .split-word {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
}

.hero h1 .split-word>span {
    display: inline-block;
    will-change: transform;
}

.highlight-word {
    position: relative;
    display: inline-block;
    color: oklch(100% 0.006 255);
    /* Ink color for contrast on the highlight */
    z-index: 1;
    padding: 0 0.1em;
    white-space: nowrap;
}

.highlight-word::before {
    content: "";
    position: absolute;
    inset: 0.1em -0.15em -0.05em -0.15em;
    background: var(--glass);
    z-index: -1;
    border-radius: 4px;
    transform-origin: left center;
    transform: scaleX(var(--hl-scale, 0)) rotate(-1.5deg);
    /* Will be animated by GSAP */
    will-change: transform;
}

.lead {
    max-width: 620px;
    margin: 22px auto 0;
    color: oklch(100% 0.006 255 / 0.78);
    font-size: 18px;
    line-height: 1.68;
    text-wrap: pretty;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.system-stage {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    min-height: 0;
    pointer-events: none;
}

.system-bars {
    position: absolute;
    right: clamp(34px, 8vw, 128px);
    bottom: 108px;
    width: auto;
    height: clamp(250px, 30vw, 360px);
    display: block;
    opacity: 0.76;
    filter: drop-shadow(0 34px 62px oklch(0% 0 0 / 0.26));
    transform-origin: 50% 80%;
    will-change: transform;
    margin-bottom: 0;
}

.pipeline-card {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    width: min(790px, calc(100% - 72px));
    border: 1px solid oklch(100% 0.006 255 / 0.2);
    border-radius: 26px;
    padding: 14px;
    background: oklch(9% 0.04 263 / 0.52);
    box-shadow:
        0 28px 80px oklch(0% 0 0 / 0.22),
        inset 0 1px 0 oklch(100% 0.006 255 / 0.18);
    backdrop-filter: blur(22px);
    text-align: left;
    pointer-events: auto;
}

.pipeline-card {
    display: none;
}

.pipeline-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 2px 4px 12px;
    color: oklch(100% 0.006 255 / 0.74);
    font-size: 12px;
    font-weight: 900;
}

.pipeline-head b {
    color: oklch(82% 0.11 178);
    font-size: 12px;
}

.lead-pipeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pipe-step {
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 15px;
    border-radius: 18px;
    border: 1px solid oklch(100% 0.006 255 / 0.14);
    background: oklch(100% 0.006 255 / 0.1);
}

.pipe-step span {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: oklch(100% 0.006 255 / 0.14);
    color: oklch(91% 0.055 239);
    font-weight: 900;
    font-size: 12px;
}

.pipe-step b {
    display: block;
    font-family: var(--display);
    font-size: 17px;
    line-height: 1;
}

.pipe-step small {
    display: block;
    margin-top: 6px;
    color: oklch(100% 0.006 255 / 0.7);
    line-height: 1.45;
    font-size: 12px;
}

.btn {
    border: 0;
    border-radius: 999px;
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 900;
    transition:
        transform 0.3s cubic-bezier(0.2, 0.9, 0.2, 1),
        box-shadow 0.3s,
        background 0.3s,
        color 0.3s;
}

.btn:hover {
    transform: translateY(-4px) scale(1.015);
}

.btn-white {
    background: var(--cream);
    color: var(--blue);
    box-shadow: 0 20px 42px oklch(0% 0 0 / 0.18);
}

.btn-blue {
    background: linear-gradient(135deg, var(--blue), oklch(52% 0.22 258));
    color: oklch(100% 0.006 255);
    box-shadow: 0 22px 48px oklch(58% 0.22 258 / 0.28);
}

.btn-ghost {
    border: 1px solid oklch(100% 0.006 255 / 0.28);
    color: oklch(100% 0.006 255);
    background: oklch(100% 0.006 255 / 0.09);
    backdrop-filter: blur(14px);
}

.trust {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    align-items: center;
    color: oklch(100% 0.006 255 / 0.76);
    font-size: 13px;
    flex-wrap: wrap;
}

.contact-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid oklch(100% 0.006 255 / 0.2);
    background: oklch(100% 0.006 255 / 0.09);
    color: oklch(100% 0.006 255 / 0.78);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(14px);
    transition:
        transform 0.2s,
        background 0.2s,
        color 0.2s;
}

.contact-chip:hover {
    transform: translateY(-2px);
    background: oklch(100% 0.006 255 / 0.16);
    color: oklch(100% 0.006 255);
}

.avatars {
    display: flex;
}

.av {
    width: 32px;
    height: 32px;
    border-radius: 12px;
    border: 2px solid oklch(100% 0.006 255 / 0.68);
    margin-left: -8px;
    background: linear-gradient(135deg, var(--sky), var(--blue));
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 900;
}

.av:first-child {
    margin-left: 0;
}

.console {
    width: min(760px, 100%);
    border-radius: 28px;
    background: oklch(100% 0.006 255 / 0.12);
    border: 1px solid oklch(100% 0.006 255 / 0.25);
    box-shadow:
        0 42px 100px oklch(0% 0 0 / 0.28),
        inset 0 1px 0 oklch(100% 0.006 255 / 0.25);
    backdrop-filter: blur(28px);
    overflow: hidden;
    padding: 18px;
    text-align: left;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid oklch(100% 0.006 255 / 0.13);
}

.dots {
    display: flex;
    gap: 6px;
}

.dots i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: oklch(100% 0.006 255 / 0.36);
}

.status {
    font-size: 11px;
    color: oklch(91% 0.055 239);
    background: oklch(77% 0.13 239 / 0.18);
    border: 1px solid oklch(77% 0.13 239 / 0.25);
    padding: 7px 10px;
    border-radius: 999px;
}

.workflow {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.row {
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    align-items: center;
    min-height: 44px;
    border: 1px solid oklch(100% 0.006 255 / 0.14);
    background: oklch(18% 0.055 258 / 0.3);
    border-radius: 16px;
    padding: 8px 11px;
    transition:
        transform 0.3s cubic-bezier(0.2, 0.9, 0.2, 1),
        background-color 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
}

.row:hover {
    transform: translateX(4px) scale(1.01);
    background-color: oklch(18% 0.055 258 / 0.45);
    border-color: oklch(100% 0.006 255 / 0.25);
    box-shadow: 0 10px 30px oklch(0% 0 0 / 0.15);
}

.num {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--sky), var(--blue));
    font-size: 12px;
    font-weight: 900;
}

.row b {
    font-size: 13px;
}

.row small {
    display: block;
    font-size: 11px;
    color: oklch(100% 0.006 255 / 0.58);
    margin-top: 2px;
}

.pill {
    font-size: 10px;
    font-weight: 900;
    border-radius: 999px;
    padding: 6px 8px;
    background: oklch(100% 0.006 255 / 0.12);
    border: 1px solid oklch(100% 0.006 255 / 0.16);
}

.ticker {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: oklch(99% 0.006 255 / 0.88);
    backdrop-filter: blur(20px);
}

.track {
    display: flex;
    gap: 0 52px;
    width: max-content;
    padding: 17px 0;
    animation: marquee 28s linear infinite;
}

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

.ticker:hover .track {
    animation-play-state: paused;
}

.ticker span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: oklch(18% 0.055 258 / 0.57);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    white-space: nowrap;
}

.ticker i {
    width: 16px;
    height: 16px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--blue), var(--sky));
    opacity: 0.78;
}

section {
    padding: 82px 0;
    position: relative;
}

section[id] {
    scroll-margin-top: 104px;
}

.soft {
    background: var(--soft);
}

.dark {
    color: oklch(100% 0.006 255);
    background:
        radial-gradient(circle at 12% 0%,
            oklch(77% 0.13 239 / 0.2),
            transparent 32rem),
        radial-gradient(circle at 90% 70%,
            oklch(58% 0.22 258 / 0.23),
            transparent 28rem),
        linear-gradient(180deg, var(--navy), var(--deep));
    overflow: hidden;
}

.pulse-section {
    padding: 72px 0;
    background: var(--soft);
}

.pulse-wrap {
    position: relative;
    min-height: 380px;
    border-radius: var(--stage-radius);
    overflow: hidden;
    color: oklch(100% 0.006 255);
    background:
        radial-gradient(circle at 70% 20%,
            oklch(58% 0.22 258 / 0.48),
            transparent 21rem),
        linear-gradient(135deg, oklch(19% 0.075 259), oklch(9% 0.04 263));
    box-shadow: var(--stage-shadow);
    display: grid;
    grid-template-columns: 1fr minmax(300px, 0.8fr);
    align-items: center;
    gap: 32px;
    padding: clamp(30px, 5vw, 58px);
    isolation: isolate;
}

.pulse-art {
    display: none;
}

.pulse-device {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    background: oklch(100% 0.006 255 / 0.07);
    border: 1px solid oklch(100% 0.006 255 / 0.14);
    padding: 22px;
    backdrop-filter: blur(12px);
}

.pulse-device .ops-board {
    height: auto;
    grid-template-rows: auto auto auto;
    color: oklch(100% 0.006 255);
}

.pulse-copy {
    position: relative;
    z-index: 2;
    grid-column: 2;
    max-width: 500px;
    justify-self: end;
}

.pulse-copy h2 {
    font-size: clamp(36px, 4.6vw, 70px);
    line-height: 0.94;
    max-width: 560px;
}

.pulse-copy p {
    color: oklch(100% 0.006 255 / 0.72);
    line-height: 1.7;
    margin: 18px 0 0;
    max-width: 520px;
}

.pulse-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.section-head {
    max-width: 720px;
    margin-bottom: 56px;
}

.section-head .text {
    margin-top: 16px;
    max-width: 560px;
}

.kicker {
    color: var(--blue);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 14px;
}

.dark .kicker {
    color: oklch(82% 0.11 178);
}

.title {
    font-size: clamp(34px, 4.6vw, 62px);
    line-height: 0.96;
}

.text {
    color: var(--muted);
    line-height: 1.72;
    font-size: 16px;
    max-width: 540px;
    text-wrap: pretty;
}

.dark .text {
    color: oklch(100% 0.006 255 / 0.69);
}

.intro {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 48px;
    align-items: center;
}

.intro h2 {
    font-size: clamp(36px, 5.2vw, 64px);
    line-height: 0.94;
}

.intro p {
    margin-top: 22px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
    text-wrap: pretty;
}

.panel {
    min-height: 380px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 10%,
            oklch(58% 0.22 258 / 0.12),
            transparent 14rem),
        linear-gradient(180deg, oklch(100% 0.006 255), oklch(98% 0.012 255));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 28px 26px;
    display: grid;
    gap: 0;
    overflow: hidden;
    align-content: start;
}

.stat {
    border-radius: 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--line);
    padding: 18px 4px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    transition: transform 0.25s;
}

.stat:first-child {
    border-top: 0;
    padding-top: 8px;
}

.card:hover,
.price:hover {
    box-shadow: 0 24px 70px oklch(18% 0.055 258 / 0.12);
}

.ico {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: oklch(100% 0.006 255);
    background: linear-gradient(135deg, var(--blue), var(--sky));
    box-shadow: 0 14px 28px oklch(58% 0.22 258 / 0.22);
    font-weight: 900;
}

.stat h3 {
    font-size: 20px;
    letter-spacing: -0.035em;
    margin-bottom: 6px;
}

.stat p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

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

.card {
    border-radius: 26px;
    padding: 14px;
    background: oklch(100% 0.006 255);
    border: 1px solid var(--line);
    box-shadow: 0 14px 44px oklch(18% 0.055 258 / 0.065);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1),
        border-color 0.4s,
        box-shadow 0.4s;
}

.card:hover {
    transform: translateY(-6px);
    border-color: oklch(58% 0.22 258 / 0.25);
    box-shadow: 0 28px 80px oklch(18% 0.055 258 / 0.14);
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 8px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
}

.card-features li {
    font-size: 13px;
    color: var(--muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.card-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 900;
}

.card:first-child {
    grid-row: auto;
    min-height: 0;
}

.visual {
    height: 218px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(circle at 72% 18%,
            oklch(100% 0.006 255 / 0.32),
            transparent 6rem),
        linear-gradient(135deg, var(--navy), var(--blue));
    padding: 16px;
    color: oklch(100% 0.006 255);
}

.card:first-child .visual {
    height: 218px;
}

.visual-chat {
    background:
        radial-gradient(circle at 75% 18%,
            oklch(82% 0.11 178 / 0.24),
            transparent 7rem),
        linear-gradient(135deg, oklch(16% 0.065 263), oklch(54% 0.21 258));
}

.visual-dash {
    background:
        radial-gradient(circle at 74% 18%,
            oklch(77% 0.13 239 / 0.26),
            transparent 7rem),
        linear-gradient(135deg, oklch(15% 0.06 263), oklch(43% 0.17 258));
}

.visual-shell {
    position: relative;
    z-index: 1;
    height: 100%;
    border-radius: 18px;
    padding: 14px;
    display: grid;
    gap: 12px;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.card:hover .visual-shell {
    transform: scale(1.02);
}

.visual-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 11px;
    font-weight: 900;
    color: oklch(100% 0.006 255 / 0.78);
}

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

.visual-dots i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: oklch(100% 0.006 255 / 0.42);
}

.site-preview {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    gap: 12px;
    min-height: 0;
}

.site-copy {
    display: grid;
    align-content: center;
    gap: 10px;
}

.site-copy b {
    font-family: var(--display);
    font-size: 27px;
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.site-copy span,
.chat-note,
.dash-note {
    color: oklch(100% 0.006 255 / 0.74);
    font-size: 11px;
    line-height: 1.45;
}

.site-lines {
    display: grid;
    gap: 6px;
}

.site-lines i {
    height: 8px;
    border-radius: 999px;
    background: oklch(100% 0.006 255 / 0.18);
}

.site-lines i:nth-child(2) {
    width: 74%;
}

.site-lines i:nth-child(3) {
    width: 58%;
    background: oklch(82% 0.11 178 / 0.58);
}

.lead-panel {
    border-radius: 16px;
    background: oklch(100% 0.006 255 / 0.12);
    border: 1px solid oklch(100% 0.006 255 / 0.18);
    padding: 12px;
    display: grid;
    align-content: end;
    gap: 8px;
}

.lead-panel span {
    height: 26px;
    border-radius: 10px;
    background: oklch(82% 0.11 178 / 0.72);
}

.lead-panel i {
    height: 8px;
    border-radius: 999px;
    background: oklch(100% 0.006 255 / 0.22);
}

.chat-preview {
    align-content: start;
}

.chat-row {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.chat-row+.chat-row {
    margin-top: 10px;
}

.bubble {
    max-width: 78%;
    padding: 9px 11px;
    border-radius: 13px;
    background: oklch(100% 0.006 255 / 0.16);
    font-size: 11px;
    line-height: 1.35;
}

.bubble.out {
    margin-left: auto;
    background: oklch(82% 0.11 178 / 0.72);
    color: oklch(100% 0.006 255);
    font-weight: 800;
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.card:hover .bubble.out {
    transform: translateY(-2px);
}

.chat-note {
    margin-top: auto;
    margin-bottom: 0;
}

.dash-preview {
    grid-template-rows: auto 1fr auto;
}

.dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.dash-tile {
    border-radius: 13px;
    background: oklch(100% 0.006 255 / 0.17);
    border: 1px solid oklch(100% 0.006 255 / 0.2);
    padding: 10px;
}

.dash-tile b {
    display: block;
    font-size: 18px;
}

.dash-tile span {
    font-size: 10px;
    color: oklch(100% 0.006 255 / 0.72);
}

.bars {
    display: flex;
    align-items: end;
    gap: 5px;
    height: 48px;
}

.bars i {
    flex: 1;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, var(--mint), var(--sky));
    min-height: 15px;
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.card:hover .bars i {
    transform: scaleY(1.06);
}

.bars i:nth-child(2) {
    height: 74%;
}

.bars i:nth-child(3) {
    height: 46%;
}

.bars i:nth-child(4) {
    height: 88%;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    color: var(--blue);
    margin: 20px 4px 9px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card h3 {
    font-size: clamp(22px, 2.1vw, 27px);
    line-height: 1.08;
    padding: 0 4px;
}

.card:first-child h3 {
    font-size: clamp(22px, 2.1vw, 27px);
}

.card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 10px 4px 4px;
    text-wrap: pretty;
}

.split,
.process,
.pricing,
.case,
.faq {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: start;
}

.device {
    min-height: 620px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 70% 20%,
            oklch(77% 0.13 239 / 0.18),
            transparent 16rem),
        linear-gradient(180deg,
            oklch(100% 0.006 255 / 0.04),
            oklch(100% 0.006 255 / 0.08)),
        var(--ink);
    border: 1px solid oklch(100% 0.006 255 / 0.12);
    box-shadow: 0 40px 110px oklch(0% 0 0 / 0.34);
    overflow: hidden;
    position: sticky;
    top: 100px;
    padding: 26px;
}

.ops-board {
    position: relative;
    z-index: 1;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    color: oklch(100% 0.006 255);
}

.ops-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid oklch(100% 0.006 255 / 0.14);
    padding-bottom: 18px;
}

.ops-head b {
    font-family: var(--display);
    font-size: 28px;
    letter-spacing: -0.045em;
}

.ops-head span,
.ops-foot {
    font-size: 12px;
    color: oklch(100% 0.006 255 / 0.56);
    font-weight: 800;
}

.ops-table {
    display: grid;
    align-content: center;
    gap: 10px;
}

.ops-line {
    display: grid;
    grid-template-columns: 88px 1fr 82px;
    gap: 10px;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid oklch(100% 0.006 255 / 0.12);
    font-size: 12px;
}

.ops-line b {
    font-size: 13px;
}

.ops-line span:first-child {
    color: oklch(82% 0.11 178);
    font-weight: 900;
}

.ops-line span:last-child {
    justify-self: end;
    color: oklch(100% 0.006 255 / 0.54);
    font-weight: 800;
}

.ops-foot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ops-foot span {
    border: 1px solid oklch(100% 0.006 255 / 0.13);
    border-radius: 14px;
    padding: 12px;
    background: oklch(100% 0.006 255 / 0.06);
}

.tag {
    position: absolute;
    color: oklch(100% 0.006 255);
    background: oklch(100% 0.006 255 / 0.1);
    border: 1px solid oklch(100% 0.006 255 / 0.14);
    border-radius: 999px;
    padding: 10px 14px;
    backdrop-filter: blur(20px);
    font-size: 12px;
    font-weight: 800;
}

.tag.a {
    top: 38px;
    left: 28px;
}

.tag.b {
    right: 30px;
    top: 112px;
}

.tag.c {
    bottom: 38px;
    left: 34px;
}

.acc {
    display: grid;
    gap: 12px;
}

.acc-item {
    border: 1px solid var(--line);
    background: oklch(100% 0.006 255);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px oklch(18% 0.055 258 / 0.06);
}

.acc-head {
    width: 100%;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    border: 0;
    background: transparent;
    text-align: left;
    color: var(--ink);
}

.acc-head strong {
    font-size: 18px;
    letter-spacing: -0.025em;
}

.acc-head span {
    min-width: 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: oklch(94% 0.032 255);
    color: var(--blue);
    font-weight: 900;
    transition:
        transform 0.25s,
        background 0.25s,
        color 0.25s;
}

.acc-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.acc-item.active .acc-body {
    grid-template-rows: 1fr;
}

.acc-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0;
}

.acc-inner p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
    line-height: 1.68;
}

.active .acc-head span {
    transform: rotate(45deg);
    background: var(--blue);
    color: oklch(100% 0.006 255);
}

.services-list {
    display: grid;
    gap: 0;
    border-top: 1px solid oklch(100% 0.006 255 / 0.12);
}

.svc-item {
    display: grid;
    grid-template-columns: 48px 1fr max-content;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid oklch(100% 0.006 255 / 0.12);
    transition: transform 0.3s;
}

.svc-item:hover {
    transform: translateX(12px);
}

.svc-num {
    font-size: 11px;
    font-weight: 900;
    color: oklch(82% 0.11 178);
    letter-spacing: 0.06em;
    font-family: var(--display);
}

.svc-body h3 {
    font-size: 20px;
    margin: 0 0 5px;
    letter-spacing: -0.03em;
}

.svc-body p {
    margin: 0;
    color: oklch(100% 0.006 255 / 0.56);
    font-size: 14px;
    line-height: 1.55;
    max-width: 72ch;
}

.svc-tag {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: oklch(100% 0.006 255 / 0.34);
    font-weight: 900;
    white-space: nowrap;
}

.process-visual {
    border-radius: 30px;
    min-height: 430px;
    background:
        radial-gradient(circle at 30% 20%,
            oklch(77% 0.13 239 / 0.28),
            transparent 12rem),
        linear-gradient(135deg, var(--navy), oklch(35% 0.14 260));
    box-shadow: 0 24px 70px oklch(58% 0.22 258 / 0.18);
    padding: 22px;
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: space-between;
    gap: 18px;
}

.process-visual:before {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 24px;
    border: 1px solid oklch(100% 0.006 255 / 0.14);
    background: linear-gradient(0deg,
            oklch(100% 0.006 255 / 0.05),
            transparent);
}

.mini {
    position: relative;
    z-index: 2;
    width: min(360px, 100%);
    margin: 0 auto;
    padding: 18px;
    color: oklch(100% 0.006 255);
}

.chart {
    margin-top: 18px;
    height: 126px;
    border-radius: 18px;
    background: oklch(100% 0.006 255 / 0.05);
    position: relative;
}

.chart svg {
    position: absolute;
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
}

.launch-lanes {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
}

.lane {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 12px;
    align-items: center;
    border: 1px solid oklch(100% 0.006 255 / 0.14);
    background: oklch(18% 0.055 258 / 0.32);
    border-radius: 16px;
    padding: 12px;
    color: oklch(100% 0.006 255);
}

.lane span {
    font-size: 11px;
    color: oklch(82% 0.11 178);
    font-weight: 900;
}

.lane b {
    font-size: 13px;
}

.lane small {
    font-size: 11px;
    color: oklch(100% 0.006 255 / 0.55);
    font-weight: 800;
}

.steps {
    display: grid;
    gap: 12px;
}

.step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 20px;
    background: oklch(100% 0.006 255);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 12px 38px oklch(18% 0.055 258 / 0.06);
    transition: transform 0.3s;
}

.step:hover {
    box-shadow: 0 16px 44px oklch(18% 0.055 258 / 0.08);
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: oklch(94% 0.032 255);
    color: var(--blue);
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

.price-side {
    border-radius: 34px;
    padding: 30px;
    background:
        radial-gradient(circle at 90% 10%,
            oklch(77% 0.13 239 / 0.3),
            transparent 12rem),
        linear-gradient(180deg, oklch(100% 0.006 255), oklch(98% 0.012 255));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    position: sticky;
    top: 110px;
}

.prices {
    display: grid;
    gap: 12px;
}

.price {
    background: oklch(100% 0.006 255);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.price.featured {
    background: linear-gradient(145deg,
            oklch(96% 0.028 258),
            oklch(92% 0.044 258));
    border-color: var(--blue);
    border-width: 2px;
    box-shadow: 0 14px 42px oklch(58% 0.22 258 / 0.2);
}

.price h3 {
    font-size: 24px;
}

.price p {
    color: var(--muted);
    line-height: 1.6;
    margin: 8px 0 0;
}

.amount {
    font-family: var(--display);
    font-size: 34px;
    letter-spacing: -0.055em;
    font-weight: 800;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.amount small {
    font-size: 13px;
    color: var(--muted);
    font-family: var(--font);
    letter-spacing: 0;
}

.quote {
    min-height: 380px;
    padding: 36px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 92% 8%,
            oklch(77% 0.13 239 / 0.18),
            transparent 16rem),
        linear-gradient(145deg, var(--deep), oklch(16% 0.065 263));
    color: oklch(100% 0.006 255);
    box-shadow: 0 30px 90px oklch(58% 0.22 258 / 0.18);
    position: relative;
    overflow: hidden;
}

.quote:before {
    display: none;
}

.quote h2 {
    font-size: clamp(32px, 4vw, 58px);
    line-height: 0.96;
}

.quote p {
    margin-top: 24px;
    color: oklch(100% 0.006 255 / 0.72);
    font-size: 17px;
    line-height: 1.7;
}

.quote cite {
    display: block;
    margin-top: 22px;
    color: oklch(82% 0.11 178);
    font-style: normal;
    font-weight: 800;
}

.handoff {
    min-height: 380px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 70% 20%,
            oklch(77% 0.13 239 / 0.35),
            transparent 12rem),
        linear-gradient(135deg, oklch(98% 0.012 255), oklch(100% 0.006 255));
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 28px;
    display: grid;
    align-content: center;
    gap: 14px;
}

.handoff-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    background: oklch(100% 0.006 255 / 0.76);
    border: 1px solid var(--line);
}

.check {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--sky), var(--blue));
    color: oklch(100% 0.006 255);
    font-size: 0;
    font-weight: 900;
    line-height: 1;
    align-self: center;
    justify-self: center;
}

.handoff-row b {
    display: block;
    font-size: 15px;
}

.handoff-row div>span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 2px;
}

.check {
    display: grid;
    place-items: center;
    color: oklch(100% 0.006 255);
    font-size: 0;
    line-height: 1;
}

.check:before {
    content: "";
    width: 15px;
    height: 8px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: rotate(-45deg) translate(1px, -1px);
}

.final {
    overflow: hidden;
    padding: 108px 0 90px;
    color: oklch(100% 0.006 255);
    background:
        radial-gradient(circle at 74% 12%,
            oklch(82% 0.11 178 / 0.2),
            transparent 17rem),
        radial-gradient(circle at 32% 4%,
            oklch(100% 0.006 255 / 0.18),
            transparent 14rem),
        linear-gradient(180deg, oklch(59% 0.22 258), oklch(20% 0.085 260) 84%);
    text-align: left;
    border-radius: var(--stage-radius) var(--stage-radius) 0 0;
}

.final-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1fr);
    gap: clamp(34px, 5vw, 78px);
    align-items: end;
}

.final-copy {
    max-width: 620px;
}

.audit-strip {
    max-width: 620px;
    margin: 0 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid oklch(100% 0.006 255 / 0.16);
    border-radius: 22px;
    overflow: hidden;
    background: oklch(100% 0.006 255 / 0.08);
}

.audit-strip span {
    padding: 14px 10px;
    font-size: 13px;
    font-weight: 900;
    color: oklch(100% 0.006 255 / 0.76);
    background: oklch(18% 0.055 258 / 0.24);
    white-space: nowrap;
}

.final h2 {
    font-size: clamp(42px, 5.3vw, 82px);
    line-height: 0.94;
    max-width: 650px;
}

.final p {
    max-width: 590px;
    margin: 20px 0 0;
    color: oklch(100% 0.006 255 / 0.74);
    line-height: 1.72;
    text-wrap: pretty;
}

.contact-panel {
    border: 1px solid oklch(100% 0.006 255 / 0.2);
    border-radius: 32px;
    background: oklch(100% 0.006 255 / 0.12);
    box-shadow: 0 26px 80px oklch(0% 0 0 / 0.18);
    padding: 16px;
    backdrop-filter: blur(18px);
}

.email {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    background: oklch(18% 0.055 258 / 0.3);
    border: 1px solid oklch(100% 0.006 255 / 0.2);
    padding: 8px;
    border-radius: 24px;
}

.email input {
    min-width: 0;
    border: 0;
    outline: 0;
    color: oklch(100% 0.006 255);
    background: transparent;
    padding: 0 16px;
}

.email input::placeholder {
    color: oklch(100% 0.006 255 / 0.64);
}

.form-note {
    min-height: 22px;
    margin: 12px 8px 0;
    color: oklch(100% 0.006 255 / 0.72);
    font-size: 13px;
}

.form-note.error {
    color: oklch(86% 0.14 31);
}

.response-card {
    margin-top: 14px;
    padding: 18px;
    border-radius: 24px;
    background: oklch(100% 0.006 255 / 0.88);
    color: var(--ink);
}

.response-card .label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--blue);
    margin-bottom: 8px;
}

.response-card h3 {
    font-size: 26px;
    letter-spacing: -0.045em;
}

.response-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.quick-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    background: var(--soft);
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 900;
    transition:
        transform 0.2s,
        background 0.2s,
        color 0.2s;
}

.quick-action:hover {
    transform: translateY(-2px);
    background: var(--ink);
    color: oklch(100% 0.006 255);
}

footer {
    padding: 42px 0;
    background: linear-gradient(180deg, oklch(10% 0.04 263), var(--deep));
    color: oklch(100% 0.006 255 / 0.62);
    border-top: 1px solid oklch(100% 0.006 255 / 0.08);
}

.foot {
    display: grid;
    grid-template-columns: minmax(220px, 1.1fr) auto auto;
    gap: 28px;
    align-items: center;
    padding: 18px;
    border: 1px solid oklch(100% 0.006 255 / 0.08);
    border-radius: 28px;
    background: oklch(100% 0.006 255 / 0.035);
}

.foot-nav {
    display: none;
}

.foot-main {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.foot .brand {
    background: oklch(100% 0.006 255 / 0.94);
    border-radius: 20px;
    padding: 8px 12px;
    flex: 0 0 auto;
    width: max-content;
}

.foot .brand-logo {
    width: 126px;
}

.foot-summary {
    margin: 0;
    max-width: 390px;
    font-size: 13px;
    line-height: 1.55;
    color: oklch(100% 0.006 255 / 0.56);
}

.foot-links {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 800;
}

.foot-links a {
    transition: color 0.2s;
}

.foot a:hover {
    color: oklch(100% 0.006 255);
}

.foot-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 999px;
    background: oklch(100% 0.006 255 / 0.1);
    border: 1px solid oklch(100% 0.006 255 / 0.16);
    font-size: 13px;
    font-weight: 900;
    color: oklch(100% 0.006 255 / 0.84);
    transition:
        transform 0.2s,
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
}

.foot-cta:hover {
    transform: translateY(-2px);
    background: oklch(100% 0.006 255 / 0.18);
    border-color: oklch(100% 0.006 255 / 0.24);
}

.foot-bottom {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid oklch(100% 0.006 255 / 0.08);
    font-size: 12px;
    color: oklch(100% 0.006 255 / 0.42);
}

.acc-head {
    cursor: pointer;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    background: var(--blue);
    color: oklch(100% 0.006 255);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
    font-family: var(--font);
}

.price-feat {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 7px;
}

.price-feat li {
    font-size: 13px;
    color: var(--muted);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}

.price-feat li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
}

.price.featured .price-feat li:before {
    background: var(--blue);
}

.price-feat li strong {
    color: var(--ink);
    font-weight: 700;
}

/* ─── Desktop hero: 2-column split ───────────────────────────────── */
@media (min-width: 981px) {
    .hero-grid {
        grid-template-columns: minmax(auto, 580px) minmax(auto, 600px);
        justify-content: center;
        gap: clamp(48px, 6vw, 120px);
        justify-items: start;
        text-align: left;
    }

    .hero-copy {
        width: min(600px, 100%);
        transform: none;
        padding-right: 0;
        align-self: center;
    }

    .hero h1 {
        font-size: clamp(42px, 4.3vw, 62px);
        max-width: 560px;
        margin: 0;
        text-wrap: auto;
    }

    .lead {
        max-width: 500px;
        margin: 22px 0 0;
    }

    .actions {
        justify-content: flex-start;
    }

    .system-stage {
        position: relative;
        inset: auto;
        align-self: stretch;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: 0;
        pointer-events: none;
    }

    .system-bars {
        position: absolute;
        right: clamp(-28px, -2vw, -4px);
        top: 0;
        bottom: auto;
        height: clamp(300px, 38vw, 480px);
        width: auto;
        opacity: 0.86;
    }

    .pipeline-card {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: 100%;
    }
}

/* GSAP-controlled — keep content always visible as no-JS fallback */
.reveal {
    opacity: 1;
    transform: none;
    will-change: opacity, transform;
}

.reveal-item {
    will-change: opacity, transform;
}

/* SVG chart draw-on prep */
.chart svg path[data-draw] {
    stroke-dasharray: var(--path-len, 600);
    stroke-dashoffset: var(--path-len, 600);
}

@media (max-width: 980px) {
    .nav {
        width: min(760px, calc(100% - 40px));
        grid-template-columns: auto auto;
        align-items: center;
        border-radius: 28px;
        gap: 10px;
    }

    .nav .brand-logo,
    .scrolled .nav .brand-logo {
        width: 112px;
    }

    .nav .brand,
    .scrolled .nav .brand,
    .nav.open .brand {
        width: 112px;
        height: 35px;
    }

    .menu {
        display: grid;
        justify-self: end;
    }

    .nav-menu {
        position: absolute;
        left: 0;
        right: 0;
        width: auto;
        top: calc(100% + 10px);
        z-index: 10;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 12px 12px 18px 12px;
        border-radius: 26px;
        background: oklch(99% 0.006 255 / 0.985);
        border: 1px solid var(--line);
        box-shadow: 0 26px 70px oklch(18% 0.055 258 / 0.26);
        backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px) scale(0.98);
        transform-origin: top center;
        transition:
            opacity 0.22s ease,
            transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 0.24s;
    }

    .links,
    .scrolled .links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        padding: 0;
        border-radius: 0;
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .links:before {
        display: none;
    }

    .links a,
    .scrolled .links a {
        color: var(--ink);
        text-align: center;
        padding: 13px 10px;
        background: transparent;
        width: auto;
        display: block;
        border-radius: 999px;
        transition: background 0.2s, color 0.2s;
    }

    .links a:hover,
    .scrolled .links a:hover {
        background: oklch(94% 0.032 255);
        color: var(--ink);
    }

    .links a[aria-current="true"],
    .scrolled .links a[aria-current="true"] {
        background: var(--cream);
        color: var(--ink);
    }

    .nav-cta,
    .scrolled .nav-cta {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        min-height: 48px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--blue), oklch(52% 0.22 258));
        color: oklch(100% 0.006 255);
        box-shadow: 0 14px 35px oklch(58% 0.22 258 / 0.22);
        position: static;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .nav.open {
        background: oklch(99% 0.006 255 / 0.94);
        border-color: var(--line);
        box-shadow: 0 22px 70px oklch(18% 0.055 258 / 0.18);
    }

    .nav.open .brand strong {
        color: var(--ink);
    }

    .nav.open .brand small {
        color: oklch(18% 0.055 258 / 0.48);
    }

    .nav.open .menu {
        background: oklch(94% 0.032 255);
        color: var(--ink);
    }

    .nav.open .nav-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transition:
            opacity 0.2s ease,
            transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s;
    }

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

    .hero-grid {
        min-height: auto;
        padding: 96px 24px 30px;
        gap: 28px;
    }

    .hero-copy {
        transform: none;
    }

    .system-stage {
        position: relative;
        inset: auto;
        width: 100%;
        min-height: 190px;
        display: grid;
        align-items: end;
        justify-items: center;
        pointer-events: auto;
    }

    .system-bars {
        position: static;
        width: auto;
        height: clamp(220px, 43vw, 330px);
        margin-bottom: -10px;
    }

    .pipeline-card {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
    }

    .lead-pipeline {
        grid-template-columns: 1fr;
    }

    .pipe-step {
        min-height: auto;
        align-items: center;
    }

    .pulse-wrap {
        min-height: 500px;
        grid-template-columns: 1fr;
        align-items: end;
        padding-top: 220px;
    }

    .pulse-art {
        left: -42%;
        top: 0;
        bottom: auto;
        width: auto;
        height: 260px;
        mask-image: linear-gradient(180deg,
                oklch(0% 0 0) 0%,
                oklch(0% 0 0) 68%,
                transparent 100%);
    }

    .pulse-copy {
        grid-column: 1;
        justify-self: start;
    }

    .hero-grid,
    .section-head,
    .intro,
    .split,
    .process,
    .pricing,
    .case,
    .faq,
    .final-wrap {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .card:first-child {
        grid-row: auto;
        min-height: auto;
    }

    .card:first-child .visual {
        height: 240px;
    }

    .svc-item {
        grid-template-columns: 32px 1fr;
        gap: 12px;
        padding: 20px 16px;
    }

    .svc-body {
        min-width: 0;
        overflow-wrap: break-word;
    }

    .svc-body h3 {
        font-size: 18px;
    }

    .svc-tag {
        display: none;
    }

    .device,
    .price-side {
        position: relative;
        top: auto;
    }

    .device {
        min-height: 460px;
    }

    .process-visual {
        min-height: auto;
        height: auto;
    }

    .ops-line {
        grid-template-columns: 72px 1fr;
        gap: 8px;
    }

    .ops-line span:last-child {
        grid-column: 2;
        justify-self: start;
    }

    .audit-strip {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .audit-strip span {
        padding: 13px 16px;
        white-space: normal;
        line-height: 1.2;
    }

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

    .amount {
        font-size: 28px;
    }

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

    .foot-main {
        grid-column: 1/-1;
    }

    .foot-links {
        justify-self: end;
    }

    .foot-cta {
        justify-self: end;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 48px, var(--max));
    }

    section {
        padding: 62px 0;
    }

    .nav-wrap {
        top: 10px;
    }

    .nav {
        width: min(100% - 48px, 520px);
        min-height: 48px;
        padding: 5px 6px 5px 10px;
        border-radius: 999px;
    }

    .scrolled .nav {
        min-height: 46px;
    }

    .nav .brand-logo,
    .scrolled .nav .brand-logo {
        width: 102px;
    }

    .nav .brand,
    .scrolled .nav .brand,
    .nav.open .brand {
        width: 102px;
        height: 32px;
    }

    .menu {
        width: 38px;
        height: 38px;
    }

    .hero {
        padding: 0 0 42px;
    }

    .hero-grid {
        width: min(100% - 32px, var(--max));
        border-radius: 0 0 30px 30px;
        padding: 84px 18px 32px;
        gap: 22px;
    }

    .hero h1 {
        font-size: clamp(40px, 11.2vw, 48px);
        line-height: 0.98;
    }

    .lead {
        font-size: 14px;
        line-height: 1.62;
        margin-top: 18px;
    }

    .actions .btn {
        width: 100%;
    }

    .system-stage {
        width: 100%;
        min-height: auto;
        padding-top: 0;
    }

    .system-bars {
        width: auto;
        height: 220px;
        margin-bottom: -4px;
    }

    .pipeline-card {
        border-radius: 22px;
        padding: 10px;
    }

    .pipeline-head {
        padding: 2px 4px 10px;
    }

    .pipe-step {
        padding: 12px;
        border-radius: 16px;
    }

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

    .row {
        grid-template-columns: 28px 1fr;
    }

    .row .pill {
        grid-column: 2;
        width: max-content;
    }

    .title {
        font-size: 39px;
    }

    .intro h2 {
        font-size: 42px;
    }

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

    .email input {
        min-height: 44px;
    }

    .email .btn {
        width: 100%;
        min-height: 46px;
    }

    .audit-strip {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .audit-strip span {
        padding: 13px 16px;
        font-size: 13px;
        line-height: 1.2;
        white-space: normal;
    }

    .final {
        padding: 72px 0 64px;
    }

    .final h2 {
        font-size: 42px;
        line-height: 0.96;
    }

    .final p {
        font-size: 15px;
        line-height: 1.62;
    }

    .contact-panel {
        border-radius: 24px;
        padding: 10px;
    }

    .response-card {
        border-radius: 20px;
        padding: 16px;
    }

    .response-card h3 {
        font-size: 26px;
    }

    .response-card p {
        font-size: 13px;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }

    .quick-action {
        min-height: 44px;
    }

    .ops-foot {
        grid-template-columns: 1fr;
    }

    .visual {
        height: 200px;
        padding: 14px;
    }

    .card:first-child .visual {
        height: 200px;
    }

    .visual-shell {
        padding: 12px;
    }

    .site-preview {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .site-copy {
        align-content: start;
    }

    .site-copy b {
        font-size: 24px;
    }

    .lead-panel {
        display: none;
    }

    .bubble {
        max-width: 92%;
    }

    .chat-note {
        display: none;
    }

    .lane {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .lane small {
        justify-self: start;
    }

    .pulse-section {
        padding: 54px 0;
    }

    .pulse-wrap {
        width: min(100% - 20px, var(--max));
        min-height: 460px;
        border-radius: 30px;
        padding: 190px 22px 28px;
    }

    .pulse-art {
        left: -102%;
        top: 0;
        width: auto;
        height: 230px;
        max-width: none;
        opacity: 0.82;
    }

    .pulse-copy h2 {
        font-size: 38px;
        line-height: 0.96;
    }

    .pulse-copy p {
        font-size: 15px;
        line-height: 1.62;
    }

    .pulse-actions .btn {
        width: 100%;
    }

    .process-visual {
        min-height: auto;
        height: auto;
        border-radius: 26px;
        padding: 16px;
    }

    .step {
        padding: 16px;
    }

    .step-num {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 16px;
        flex-shrink: 0;
    }

    .step {
        grid-template-columns: 44px 1fr;
        gap: 14px;
    }

    .brand-logo {
        width: 118px;
    }

    .links,
    .scrolled .links {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 0;
    }

    .links a,
    .scrolled .links a {
        padding: 12px 10px;
    }

    .foot {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .foot-nav {
        display: contents;
    }

    .foot-main {
        display: grid;
        gap: 12px;
    }

    .foot-links {
        gap: 14px;
        justify-self: start;
    }

    .foot-cta {
        justify-self: start;
    }

    .pulse-wrap {
        grid-template-columns: 1fr;
    }

    .pulse-copy {
        grid-column: auto;
    }

    .pulse-device {
        display: none;
    }

    .foot-bottom {
        display: grid;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *:before,
    *:after {
        transition: none !important;
        scroll-behavior: auto !important;
    }

    /* Pause infinite CSS animations but don't remove them */
    .track {
        animation-play-state: paused;
    }

    .reveal,
    .reveal-item {
        opacity: 1 !important;
        transform: none !important;
    }
}