:root {
    --bg-base: #04111a;
    --bg-alt: #081923;
    --bg-deep: #0c202b;
    --panel: rgba(9, 21, 31, 0.72);
    --panel-strong: rgba(8, 19, 28, 0.9);
    --panel-solid: #0a1722;
    --line: rgba(150, 180, 201, 0.16);
    --line-strong: rgba(97, 231, 255, 0.38);
    --text-1: #f4f8fb;
    --text-2: #adbccb;
    --text-3: #708093;
    --cyan: #61e7ff;
    --cyan-strong: #21bdd6;
    --ice: #d5f9ff;
    --indigo: #4b86ff;
    --danger: #ff846c;
    --rose: #ffb2b9;
    --amber: #ffc36b;
    --yellow: #ffe275;
    --success: #4de1b4;
    --radius-2xl: 24px;
    --radius-xl: 20px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --radius-chip: 12px;
    --shadow-deep: 0 34px 100px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 26px 70px rgba(0, 0, 0, 0.42);
    --shadow-md: 0 18px 42px rgba(0, 0, 0, 0.28);
    --font-heading: "Sora", system-ui, sans-serif;
    --font-body: "IBM Plex Sans", system-ui, sans-serif;
    --font-mono: "IBM Plex Mono", "SF Mono", "Fira Code", monospace;
    --ease: 240ms cubic-bezier(0.22, 0.68, 0, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: var(--font-body);
    color: var(--text-1);
    line-height: 1.6;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(97, 231, 255, 0.12), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(75, 134, 255, 0.1), transparent 24%),
        radial-gradient(circle at 78% 74%, rgba(255, 132, 108, 0.06), transparent 18%),
        linear-gradient(180deg, #030d14 0%, #06141e 52%, #04111a 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.18;
    background:
        repeating-linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.04) 0,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px,
            transparent 7px
        );
    mix-blend-mode: soft-light;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: rgba(97, 231, 255, 0.24);
    color: var(--text-1);
}

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

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

button {
    font: inherit;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: -0.045em;
    line-height: 1.06;
}

p {
    margin: 0;
    color: var(--text-2);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

[id] {
    scroll-margin-top: 7rem;
}

:focus-visible {
    outline: 2px solid rgba(97, 231, 255, 0.9);
    outline-offset: 4px;
}

.wrap {
    width: min(1240px, calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: clamp(5rem, 8vw, 7.5rem) 0;
    z-index: 2;
    overflow: clip;
}

.section::before {
    content: "";
    position: absolute;
    inset: auto auto -6rem -8rem;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(97, 231, 255, 0.1), transparent 72%);
    filter: blur(40px);
    opacity: 0.55;
    pointer-events: none;
}

.section--alt {
    background:
        linear-gradient(180deg, rgba(8, 22, 32, 0.72), rgba(7, 20, 29, 0.18)),
        radial-gradient(circle at 70% 15%, rgba(97, 231, 255, 0.08), transparent 30%);
}

.section__head {
    max-width: 48rem;
    margin-bottom: 3.25rem;
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
    color: var(--ice);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section__eyebrow::before {
    content: "";
    width: 2.4rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(97, 231, 255, 0.9), rgba(97, 231, 255, 0.16));
    box-shadow: 0 0 12px rgba(97, 231, 255, 0.18);
}

.section__eyebrow--warm {
    color: var(--rose);
}

.section__eyebrow--warm::before {
    background: linear-gradient(90deg, rgba(255, 132, 108, 0.88), rgba(255, 132, 108, 0.14));
    box-shadow: 0 0 12px rgba(255, 132, 108, 0.14);
}

.section__head h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-wrap: balance;
}

.section__intro {
    margin-top: 1rem;
    max-width: 42rem;
    font-size: 1.06rem;
    line-height: 1.75;
}

.bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.52;
}

.bg__orb--1 {
    top: -18rem;
    right: -10rem;
    width: 34rem;
    height: 34rem;
    background: radial-gradient(circle, rgba(97, 231, 255, 0.24), transparent 68%);
    animation: drift-1 24s ease-in-out infinite;
}

.bg__orb--2 {
    bottom: -18rem;
    left: -12rem;
    width: 38rem;
    height: 38rem;
    background: radial-gradient(circle, rgba(255, 132, 108, 0.14), transparent 70%);
    animation: drift-2 28s ease-in-out infinite;
}

.bg__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(171, 193, 212, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(171, 193, 212, 0.055) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.25) 65%, transparent 100%);
}

.bg__noise {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image:
        radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px),
        radial-gradient(circle at 33% 74%, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px),
        radial-gradient(circle at 63% 58%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px);
    background-size: 180px 180px;
}

.bg__signal {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(112deg, transparent 6%, rgba(97, 231, 255, 0.06) 48%, transparent 82%),
        radial-gradient(circle at 50% 84%, rgba(255, 132, 108, 0.06), transparent 34%),
        linear-gradient(180deg, rgba(4, 17, 26, 0) 0%, rgba(4, 17, 26, 0.04) 72%, rgba(4, 17, 26, 0.08) 100%);
}

.badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
    padding: 0.62rem 1rem;
    border-radius: var(--radius-chip);
    border: 1px solid rgba(97, 231, 255, 0.2);
    background: rgba(7, 24, 35, 0.6);
    color: var(--ice);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.badge::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), #e4fdff);
    box-shadow: 0 0 16px rgba(97, 231, 255, 0.65);
}

.badge--subtle {
    border-color: rgba(255, 132, 108, 0.22);
    color: var(--rose);
}

.badge--subtle::before {
    background: linear-gradient(135deg, var(--danger), #ffd1b9);
    box-shadow: 0 0 16px rgba(255, 132, 108, 0.5);
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.25rem;
    padding: 0.88rem 1.4rem;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background-color var(--ease), color var(--ease);
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 42%);
    opacity: 0.65;
    pointer-events: none;
}

.btn::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), transparent 72%);
    opacity: 0.55;
    pointer-events: none;
}

.btn--primary {
    color: #071a23;
    border-color: rgba(202, 244, 255, 0.34);
    background: linear-gradient(180deg, #9cf3ff 0%, #63dbf7 56%, #3ca7db 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.26),
        0 12px 28px rgba(38, 158, 191, 0.22);
}

.btn--primary:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #b2f7ff 0%, #73e0fa 54%, #43addf 100%);
    border-color: rgba(214, 248, 255, 0.42);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 14px 30px rgba(38, 158, 191, 0.26);
}

.btn--ghost {
    color: var(--text-1);
    border-color: rgba(150, 180, 201, 0.16);
    background: linear-gradient(180deg, rgba(19, 34, 46, 0.82), rgba(10, 21, 31, 0.82));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn--ghost:hover {
    transform: translateY(-1px);
    border-color: rgba(150, 180, 201, 0.26);
    background: linear-gradient(180deg, rgba(25, 42, 56, 0.9), rgba(13, 25, 36, 0.9));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.18);
}

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 1rem 0;
    transition: padding var(--ease), transform var(--ease);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.85rem 1rem 0.85rem 1.2rem;
    border: 1px solid rgba(150, 180, 201, 0.12);
    border-radius: var(--radius-xl);
    background: rgba(5, 18, 28, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition:
        background-color var(--ease),
        border-color var(--ease),
        box-shadow var(--ease),
        transform var(--ease),
        padding var(--ease),
        border-radius var(--ease),
        width var(--ease),
        gap var(--ease);
}

.header.is-scrolled {
    padding: 0.55rem 0;
}

.header.is-scrolled .header__inner {
    padding: 0.62rem 0.85rem 0.62rem 1rem;
    border-color: rgba(150, 180, 201, 0.18);
    background: rgba(6, 17, 26, 0.82);
    border-radius: 14px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 20px 40px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

.header__brand {
    position: relative;
    z-index: 102;
    flex: none;
    transition: padding var(--ease), border-color var(--ease), background-color var(--ease), box-shadow var(--ease), border-radius var(--ease), transform var(--ease);
}

.header__logo {
    width: clamp(6.8rem, 12vw, 9rem);
    height: auto;
    transition: width var(--ease), transform var(--ease), opacity var(--ease);
}

.header.is-scrolled .header__logo {
    width: clamp(5.8rem, 9.8vw, 7.6rem);
    transform: translateY(-1px);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: gap var(--ease);
}

.nav a {
    color: var(--text-2);
    font-size: 0.94rem;
    transition: color var(--ease), opacity var(--ease), transform var(--ease), font-size var(--ease);
}

.nav a:hover {
    color: var(--text-1);
}

.header.is-scrolled .nav {
    gap: 1.15rem;
}

.header.is-scrolled .nav a {
    color: var(--text-3);
    font-size: 0.9rem;
    transform: translateY(-1px);
}

.header.is-scrolled .nav a:hover {
    color: var(--text-1);
}

.nav__cta {
    display: none;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: gap var(--ease);
}

.header.is-scrolled .header__right {
    gap: 0.6rem;
}

.lang {
    position: relative;
    z-index: 103;
}

.lang__trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    height: 3rem;
    padding: 0 0.7rem 0 0.8rem;
    border: 1px solid rgba(150, 180, 201, 0.14);
    border-radius: var(--radius-chip);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color var(--ease), background-color var(--ease), box-shadow var(--ease), height var(--ease), padding var(--ease), transform var(--ease);
}

.lang__trigger:hover,
.lang.is-open .lang__trigger {
    border-color: rgba(150, 180, 201, 0.24);
    background: rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 14px 28px rgba(0, 0, 0, 0.2);
}

.lang__icon,
.lang__caret {
    flex: none;
}

.lang__icon {
    width: 1rem;
    height: 1rem;
    color: var(--cyan);
}

.lang__label {
    display: inline-block;
    color: var(--text-2);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    max-width: 4rem;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width var(--ease), opacity var(--ease);
}

.lang__code {
    min-width: 2.2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.55rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(97, 231, 255, 0.18), rgba(75, 134, 255, 0.18));
    color: var(--text-1);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    transition: min-width var(--ease), height var(--ease), padding var(--ease), font-size var(--ease), background-color var(--ease);
}

.lang__caret {
    width: 0.9rem;
    height: 0.9rem;
    color: var(--text-3);
    transition: transform var(--ease), color var(--ease);
}

.lang.is-open .lang__caret {
    transform: rotate(180deg);
    color: var(--text-1);
}

.header.is-scrolled .lang__trigger {
    height: 2.55rem;
    padding: 0 0.58rem 0 0.72rem;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    transform: translateY(-1px);
}

.header.is-scrolled .lang__label {
    max-width: 0;
    opacity: 0;
}

.header.is-scrolled .lang__code {
    min-width: 2rem;
    height: 1.8rem;
    padding: 0 0.42rem;
    font-size: 0.68rem;
}

.header__cta {
    transition: min-height var(--ease), padding var(--ease), font-size var(--ease), box-shadow var(--ease), background-color var(--ease), border-color var(--ease), transform var(--ease);
}

.header.is-scrolled .header__cta {
    min-height: 2.75rem;
    padding: 0.72rem 1.1rem;
    font-size: 0.84rem;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 8px 18px rgba(38, 158, 191, 0.16);
    transform: translateY(-1px);
}

@media (min-width: 992px) {
    .header__brand,
    .nav {
        position: relative;
    }

    .header__brand::after,
    .nav::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -0.35rem;
        width: 1px;
        height: 1.35rem;
        background: linear-gradient(180deg, rgba(150, 180, 201, 0), rgba(150, 180, 201, 0.38), rgba(150, 180, 201, 0));
        opacity: 0;
        pointer-events: none;
        transform: translateY(-50%) scaleY(0.45);
        transform-origin: center;
        transition: opacity var(--ease), transform var(--ease), right var(--ease);
    }

    .header.is-scrolled .header__inner {
        width: min(68rem, calc(100% - 3.5rem));
        gap: 0.9rem;
        padding: 0.38rem 0.82rem;
        border-radius: 999px;
        background: rgba(5, 16, 25, 0.84);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 20px 46px rgba(0, 0, 0, 0.22);
        transform: translateY(-2px) scale(0.985);
    }

    .header.is-scrolled .header__brand {
        padding-right: 0.85rem;
        transform: translateX(2px);
    }

    .header.is-scrolled .header__brand::after,
    .header.is-scrolled .nav::after {
        right: -0.45rem;
        opacity: 1;
        transform: translateY(-50%) scaleY(1);
    }

    .header.is-scrolled .header__logo {
        width: clamp(4.85rem, 8.2vw, 6.15rem);
        transform: none;
    }

    .header.is-scrolled .nav {
        gap: 0.85rem;
        transform: translateY(-1px);
    }

    .header.is-scrolled .nav a {
        font-size: 0.83rem;
        color: rgba(208, 220, 232, 0.8);
        opacity: 0.82;
        transform: translateY(-3px);
    }

    .header.is-scrolled .nav a:hover {
        color: var(--text-1);
        opacity: 1;
        transform: translateY(-4px);
    }

    .header.is-scrolled .header__right {
        gap: 0.45rem;
        transform: translateX(-2px);
    }

    .header.is-scrolled .lang__trigger {
        gap: 0.36rem;
        height: 2.15rem;
        padding: 0 0.44rem 0 0.5rem;
        border-color: transparent;
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    .header.is-scrolled .lang__icon {
        width: 0.92rem;
        height: 0.92rem;
    }

    .header.is-scrolled .lang__code {
        min-width: 1.72rem;
        height: 1.56rem;
        padding: 0 0.3rem;
        font-size: 0.64rem;
    }

    .header.is-scrolled .header__cta {
        min-height: 2.12rem;
        padding: 0.54rem 0.9rem;
        font-size: 0.78rem;
        border-radius: 999px;
        transform: none;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.22),
            0 6px 14px rgba(38, 158, 191, 0.12);
    }
}

.lang__menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    right: 0;
    width: 15rem;
    padding: 0.4rem;
    border: 1px solid rgba(150, 180, 201, 0.16);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 24%),
        rgba(7, 18, 28, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 28px 56px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-0.35rem);
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
}

.lang.is-open .lang__menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lang__option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.85rem 0.9rem;
    border: 0;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--text-2);
    text-align: left;
    cursor: pointer;
    transition: background-color var(--ease), color var(--ease);
}

.lang__option:hover,
.lang__option.is-active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-1);
}

.lang__option-mark {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0.28rem 0.28rem 0.28rem 0.12rem;
    transform: rotate(-12deg);
    flex: none;
    background: linear-gradient(135deg, rgba(97, 231, 255, 0.86), rgba(75, 134, 255, 0.86));
    box-shadow: 0 0 16px rgba(97, 231, 255, 0.22);
}

.lang__option:last-child .lang__option-mark {
    background: linear-gradient(135deg, rgba(255, 195, 107, 0.84), rgba(255, 132, 108, 0.84));
    box-shadow: 0 0 16px rgba(255, 132, 108, 0.18);
}

.lang__option-copy {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.lang__option-name {
    color: currentColor;
    font-size: 0.92rem;
    font-weight: 500;
}

.lang__option-meta {
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lang__option-check {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    flex: none;
    border: 1px solid rgba(150, 180, 201, 0.24);
    background: transparent;
    transition: background-color var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.lang__option.is-active .lang__option-check {
    border-color: rgba(97, 231, 255, 0.55);
    background: var(--cyan);
    box-shadow: 0 0 14px rgba(97, 231, 255, 0.35);
}

.burger {
    display: none;
    position: relative;
    z-index: 102;
    width: 2.95rem;
    height: 2.95rem;
    padding: 0;
    border: 1px solid rgba(150, 180, 201, 0.16);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-1);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.26rem;
    cursor: pointer;
}

.burger span {
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform var(--ease), opacity var(--ease);
}

.burger.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.burger.is-active span:nth-child(2) {
    opacity: 0;
}

.burger.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    position: relative;
    z-index: 2;
    padding-top: clamp(9rem, 15vw, 11.5rem);
    padding-bottom: clamp(4rem, 6vw, 6.5rem);
    overflow: clip;
}

.hero::before {
    content: "";
    position: absolute;
    top: 4rem;
    right: -10rem;
    width: 44rem;
    height: 44rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(97, 231, 255, 0.12), transparent 68%);
    filter: blur(24px);
    opacity: 0.8;
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__content {
    max-width: 40rem;
}

.hero h1 {
    font-size: clamp(2.35rem, 5.25vw, 4.1rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.065em;
    text-wrap: balance;
}

.hero__sub {
    max-width: 37rem;
    font-size: clamp(1.02rem, 1.5vw, 1.16rem);
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.hero__proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.2rem;
}

.hero-proof {
    position: relative;
    padding: 1.2rem 1.1rem 1.15rem;
    border: 1px solid rgba(150, 180, 201, 0.1);
    border-radius: 18px;
    background: rgba(8, 20, 30, 0.64);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.hero-proof::before {
    display: none;
}

.hero-proof strong {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--text-1);
    font-family: var(--font-heading);
    font-size: 0.96rem;
}

.hero-proof span {
    display: block;
    color: var(--text-2);
    font-size: 0.9rem;
    line-height: 1.6;
}

.hero__visual {
    position: relative;
    min-height: 46rem;
}

.scene {
    position: relative;
    min-height: inherit;
    isolation: isolate;
}

.scene::before {
    content: "";
    position: absolute;
    inset: 7rem 5rem 5rem;
    border-radius: 28px;
    border: 1px solid rgba(150, 180, 201, 0.06);
    background: rgba(5, 16, 25, 0.18);
    box-shadow: none;
}

.scene::after {
    content: "";
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 0;
    height: 9rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(97, 231, 255, 0.14), transparent 72%);
    filter: blur(48px);
    opacity: 0.45;
}

.scene__radar {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.scene__radar::before {
    content: "";
    position: absolute;
    top: 3rem;
    right: 1rem;
    width: 27rem;
    height: 27rem;
    border-radius: 50%;
    border: 1px solid rgba(97, 231, 255, 0.12);
    background:
        radial-gradient(circle, rgba(97, 231, 255, 0.1), transparent 55%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        0 0 80px rgba(30, 118, 136, 0.16);
}

.scene__radar::after {
    content: "";
    position: absolute;
    top: 4.6rem;
    right: 2.6rem;
    width: 23.8rem;
    height: 23.8rem;
    border-radius: 50%;
    background: conic-gradient(from 90deg, transparent 0%, transparent 74%, rgba(97, 231, 255, 0.24) 84%, transparent 100%);
    filter: blur(10px);
    opacity: 0.75;
    animation: radar-spin 16s linear infinite;
}

.scene__ring,
.scene__axis,
.scene__node,
.scene__core,
.scene__chip,
.scene-card,
.mock {
    position: absolute;
}

.scene__ring {
    border-radius: 50%;
    border: 1px solid rgba(97, 231, 255, 0.12);
    box-shadow: inset 0 0 22px rgba(97, 231, 255, 0.04);
}

.scene__ring--1 {
    top: 5.3rem;
    right: 3.4rem;
    width: 22rem;
    height: 22rem;
}

.scene__ring--2 {
    top: 7.1rem;
    right: 5.2rem;
    width: 18.4rem;
    height: 18.4rem;
}

.scene__ring--3 {
    top: 8.9rem;
    right: 7rem;
    width: 14.8rem;
    height: 14.8rem;
}

.scene__axis {
    background: rgba(97, 231, 255, 0.12);
}

.scene__axis--h {
    top: 16.3rem;
    right: 4.5rem;
    width: 19.7rem;
    height: 1px;
}

.scene__axis--v {
    top: 6.5rem;
    right: 14.35rem;
    width: 1px;
    height: 19.7rem;
}

.scene__node {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, var(--cyan));
    box-shadow:
        0 0 0 8px rgba(97, 231, 255, 0.08),
        0 0 20px rgba(97, 231, 255, 0.55);
    animation: pulse-node 3s ease-in-out infinite;
}

.scene__node--1 {
    top: 10.2rem;
    right: 8.7rem;
}

.scene__node--2 {
    top: 13.7rem;
    right: 18.2rem;
    animation-delay: 0.6s;
}

.scene__node--3 {
    top: 19.1rem;
    right: 11.2rem;
    animation-delay: 1.2s;
}

.scene__node--4 {
    top: 16.4rem;
    right: 6rem;
    animation-delay: 1.8s;
}

.scene__core {
    top: 12.2rem;
    right: 10.1rem;
    z-index: 2;
    width: 9rem;
    height: 9rem;
    padding: 1.15rem;
    border-radius: 50%;
    border: 1px solid rgba(97, 231, 255, 0.25);
    background:
        radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.34), transparent 30%),
        radial-gradient(circle, rgba(97, 231, 255, 0.22), rgba(7, 19, 30, 0.96) 68%);
    box-shadow:
        inset 0 0 28px rgba(97, 231, 255, 0.12),
        0 0 34px rgba(97, 231, 255, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.scene__core span {
    color: var(--ice);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.82;
}

.scene__core strong {
    margin-top: 0.45rem;
    font-size: 0.96rem;
    line-height: 1.38;
    color: var(--text-1);
}

.scene-card {
    z-index: 4;
    width: 14.5rem;
    padding: 1rem 1rem 1.05rem;
    border: 1px solid rgba(150, 180, 201, 0.11);
    border-radius: 18px;
    background: rgba(8, 18, 28, 0.74);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.scene-card--signal {
    top: 4rem;
    left: 0;
    transform: rotate(-3deg);
}

.scene-card--audit {
    right: 0.4rem;
    bottom: 4rem;
    transform: rotate(3deg);
}

.scene-card__eyebrow {
    display: block;
    margin-bottom: 0.9rem;
    color: var(--ice);
    font-family: var(--font-mono);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.signal-meter {
    display: grid;
    gap: 0.55rem;
}

.signal-meter__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: var(--text-2);
    font-size: 0.76rem;
    line-height: 1.35;
}

.signal-meter__row strong {
    color: var(--text-1);
    font-size: 0.76rem;
}

.signal-meter__bar {
    height: 0.44rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.signal-meter__bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(97, 231, 255, 0.7), rgba(33, 189, 214, 1));
    box-shadow: 0 0 18px rgba(97, 231, 255, 0.3);
}

.scene-list {
    display: grid;
    gap: 0.8rem;
}

.scene-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8rem;
    color: var(--text-2);
}

.scene-list li span:first-child {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    flex: none;
    background: linear-gradient(135deg, var(--success), #d7fff1);
    box-shadow: 0 0 16px rgba(77, 225, 180, 0.4);
}

.scene__chip {
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(150, 180, 201, 0.1);
    border-radius: var(--radius-chip);
    background: rgba(8, 19, 28, 0.72);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    color: var(--text-1);
    font-size: 0.78rem;
    font-weight: 600;
}

.scene__chip::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex: none;
    background: var(--cyan);
    box-shadow: 0 0 16px rgba(97, 231, 255, 0.55);
}

.scene__chip--left {
    left: 5.3rem;
    bottom: 9.1rem;
}

.scene__chip--right {
    right: 4.9rem;
    top: 10.2rem;
}

.mock {
    z-index: 5;
    width: min(100%, 34rem);
    left: 50%;
    top: 7rem;
    transform: translateX(-50%) perspective(1400px) rotateX(10deg) rotateY(-15deg);
    border-radius: 24px;
    border: 1px solid rgba(150, 180, 201, 0.12);
    background: linear-gradient(180deg, rgba(7, 18, 28, 0.94), rgba(8, 19, 30, 0.98));
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.34);
    overflow: hidden;
    animation: mock-float 8s ease-in-out infinite;
}

.mock::before {
    display: none;
}

.mock__bar {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(150, 180, 201, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.mock__dots {
    display: flex;
    gap: 0.36rem;
}

.mock__dots span {
    width: 0.56rem;
    height: 0.56rem;
    border-radius: 50%;
}

.mock__dots span:nth-child(1) {
    background: rgba(255, 132, 108, 0.92);
}

.mock__dots span:nth-child(2) {
    background: rgba(255, 195, 107, 0.92);
}

.mock__dots span:nth-child(3) {
    background: rgba(77, 225, 180, 0.92);
}

.mock__url {
    color: var(--text-3);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
}

.mock__body {
    display: grid;
    gap: 1rem;
    padding: 1.15rem;
}

.mock__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.mock__stat {
    padding: 0.8rem 0.85rem 0.85rem;
    border: 1px solid rgba(150, 180, 201, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
}

.mock__stat--alert {
    border-color: rgba(255, 132, 108, 0.16);
    background: rgba(255, 132, 108, 0.06);
}

.mock__stat-n {
    display: block;
    margin-bottom: 0.3rem;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    color: var(--text-1);
}

.mock__stat--alert .mock__stat-n {
    color: var(--danger);
}

.mock__stat-l {
    color: var(--text-3);
    font-size: 0.68rem;
    font-family: var(--font-mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mock__table {
    display: grid;
    border: 1px solid rgba(150, 180, 201, 0.08);
    border-radius: 18px;
    overflow: hidden;
}

.mock__row {
    display: grid;
    grid-template-columns: 5.7rem 1fr 1fr;
    gap: 0.75rem;
    align-items: center;
    padding: 0.74rem 0.9rem;
    border-bottom: 1px solid rgba(150, 180, 201, 0.08);
    font-size: 0.82rem;
    opacity: 0;
    transform: translateX(-10px);
    animation: row-in 0.55s ease forwards;
}

.mock__row:nth-child(1) {
    animation-delay: 0.8s;
}

.mock__row:nth-child(2) {
    animation-delay: 1.05s;
}

.mock__row:nth-child(3) {
    animation-delay: 1.3s;
}

.mock__row:last-child {
    border-bottom: 0;
}

.sev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.55rem;
    border-radius: var(--radius-sm);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.sev--c {
    background: rgba(255, 132, 108, 0.14);
    color: var(--danger);
}

.sev--h {
    background: rgba(255, 195, 107, 0.15);
    color: var(--amber);
}

.sev--m {
    background: rgba(255, 226, 117, 0.14);
    color: var(--yellow);
}

.mock__id {
    color: var(--text-1);
    font-family: var(--font-mono);
    font-size: 0.77rem;
}

.mock__pkg {
    color: var(--text-3);
    font-size: 0.77rem;
}

.mock__foot {
    padding: 0.78rem 0.9rem;
    border-radius: 14px;
    border: 1px solid rgba(77, 225, 180, 0.12);
    background: rgba(77, 225, 180, 0.05);
}

.mock__check {
    color: var(--success);
    font-size: 0.8rem;
    font-weight: 500;
}

.problems {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
}

.pcard {
    position: relative;
    grid-column: span 4;
    padding: 2rem 1.6rem 1.55rem;
    border: 1px solid rgba(150, 180, 201, 0.1);
    border-radius: 22px;
    background: rgba(8, 20, 30, 0.7);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.pcard::before {
    display: none;
}

.pcard::after {
    display: none;
}

.pcard:nth-child(2)::before {
    display: none;
}

.pcard:nth-child(2)::after {
    display: none;
}

.pcard:nth-child(3)::before {
    display: none;
}

.pcard:nth-child(3)::after {
    display: none;
}

.pcard:hover {
    transform: translateY(-3px);
    border-color: rgba(150, 180, 201, 0.16);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.2);
}

.pcard__icon,
.fcard__icon {
    width: 3.35rem;
    height: 3.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
    border-radius: 16px;
    border: 0;
    box-shadow: none;
}

.pcard__icon {
    background: rgba(255, 132, 108, 0.1);
    color: var(--rose);
}

.pcard:nth-child(2) .pcard__icon {
    background: rgba(97, 231, 255, 0.1);
    color: var(--cyan);
}

.pcard:nth-child(3) .pcard__icon {
    background: rgba(255, 195, 107, 0.1);
    color: var(--amber);
}

.pcard__icon svg,
.fcard__icon svg {
    width: 1.45rem;
    height: 1.45rem;
}

.pcard h3 {
    font-size: 1.2rem;
    margin-bottom: 0.65rem;
}

.pcard p {
    max-width: 18rem;
    font-size: 0.96rem;
    line-height: 1.7;
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 1.4rem;
    align-items: stretch;
}

.steps__list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    height: 100%;
}

.step {
    position: relative;
    width: 100%;
    min-height: 0;
    flex: 1 1 0;
    display: flex;
    align-items: center;
    padding: 1.1rem;
    border: 1px solid rgba(150, 180, 201, 0.1);
    border-radius: 18px;
    background: rgba(8, 20, 30, 0.68);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    text-align: left;
    cursor: pointer;
    appearance: none;
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background-color var(--ease);
}

.step::before {
    display: none;
}

.step:hover,
.step:focus-visible {
    transform: translateX(2px);
    border-color: rgba(150, 180, 201, 0.16);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.step.is-active {
    border-color: rgba(97, 231, 255, 0.18);
    background: rgba(8, 20, 30, 0.82);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
}

.step.is-active::before {
    display: none;
}

.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border: 1px solid rgba(97, 231, 255, 0.2);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(97, 231, 255, 0.16), rgba(75, 134, 255, 0.18));
    color: var(--ice);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    flex: none;
}

.step__copy {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.step__title {
    color: var(--text-1);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.3;
}

.step__text {
    color: var(--text-2);
    font-size: 0.9rem;
    line-height: 1.65;
}

.steps__stage {
    position: sticky;
    top: 7.8rem;
    height: 100%;
}

.step-visual {
    display: none;
    min-height: 34rem;
    height: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(150, 180, 201, 0.1);
    border-radius: 22px;
    background: rgba(7, 18, 28, 0.94);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.step-visual.is-active {
    display: grid;
    height: 100%;
    grid-template-rows: auto 1fr;
    gap: 1rem;
    animation: step-panel-in 420ms cubic-bezier(0.22, 0.68, 0, 1);
}

.step-visual__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.step-visual__eyebrow {
    color: var(--ice);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.step-visual__hint {
    max-width: 16rem;
    color: var(--text-3);
    font-size: 0.78rem;
    line-height: 1.55;
    text-align: right;
}

.step-visual__frame {
    position: relative;
    min-height: 27rem;
    border: 1px solid rgba(150, 180, 201, 0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(10, 24, 35, 0.95), rgba(8, 19, 28, 0.98));
    overflow: hidden;
}

.step-visual__frame::before {
    display: none;
}

.step-visual__frame--video {
    background: #02080d;
    border-color: rgba(150, 180, 201, 0.16);
}

.step-visual__frame--video::before {
    display: none;
}

.step-visual__media {
    position: absolute;
    inset: 0.85rem;
    z-index: 1;
    display: grid;
    place-items: center;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(2, 8, 13, 0.94);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.step-visual__frame--video .step-visual__media {
    inset: 0;
    border-radius: inherit;
    background: #02080d;
    box-shadow: none;
}

.step-visual__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #02080d;
}

.upload-card,
.correlation-map,
.priority-board,
.trace-flow {
    position: absolute;
    inset: 1.5rem;
}

.upload-card {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 1rem;
}

.upload-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.upload-card__tag,
.upload-card__file {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-2);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.upload-card__tag {
    color: var(--cyan);
}

.upload-card__drop {
    position: relative;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(97, 231, 255, 0.28);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle, rgba(97, 231, 255, 0.08), transparent 62%);
}

.upload-card__glyph {
    position: relative;
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(97, 231, 255, 0.22);
    background:
        linear-gradient(180deg, rgba(97, 231, 255, 0.18), rgba(75, 134, 255, 0.12)),
        rgba(255, 255, 255, 0.02);
    box-shadow: 0 0 24px rgba(97, 231, 255, 0.12);
}

.upload-card__glyph::before,
.upload-card__glyph::after {
    content: "";
    position: absolute;
    left: 50%;
    background: var(--ice);
    transform: translateX(-50%);
    border-radius: 999px;
}

.upload-card__glyph::before {
    top: calc(50% - 0.9rem);
    width: 2px;
    height: 1.25rem;
}

.upload-card__glyph::after {
    top: 50%;
    width: 1rem;
    height: 2px;
}

.upload-card__line {
    position: absolute;
    left: 50%;
    width: 8rem;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(-50%);
}

.upload-card__line--1 {
    top: calc(50% + 4.8rem);
}

.upload-card__line--2 {
    top: calc(50% + 5.8rem);
    width: 5.5rem;
}

.upload-card__rows {
    display: grid;
    gap: 0.75rem;
    align-self: end;
}

.upload-card__row {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.6fr;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(150, 180, 201, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    animation: upload-row-in 4.8s ease-in-out infinite;
}

.upload-card__row:nth-child(2) {
    animation-delay: 0.35s;
}

.upload-card__row:nth-child(3) {
    animation-delay: 0.7s;
}

.upload-card__row span {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.correlation-map {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.correlation-map__col {
    display: grid;
    gap: 1rem;
}

.correlation-map__pill {
    display: inline-flex;
    align-items: center;
    min-height: 3.1rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(150, 180, 201, 0.14);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-1);
    font-family: var(--font-mono);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
}

.correlation-map__pill--risk {
    border-color: rgba(255, 132, 108, 0.18);
    background: rgba(255, 132, 108, 0.06);
    color: #ffd8cf;
}

.correlation-map__links {
    position: relative;
    width: 6rem;
    height: 15rem;
}

.correlation-map__links span {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(97, 231, 255, 0.18), rgba(97, 231, 255, 0.8), rgba(255, 132, 108, 0.45));
    transform-origin: left center;
    animation: link-pulse 2.6s ease-in-out infinite;
}

.correlation-map__links span:nth-child(1) {
    top: 2.6rem;
    transform: rotate(24deg);
}

.correlation-map__links span:nth-child(2) {
    top: 7.3rem;
    transform: rotate(0deg);
    animation-delay: 0.35s;
}

.correlation-map__links span:nth-child(3) {
    bottom: 2.6rem;
    transform: rotate(-24deg);
    animation-delay: 0.7s;
}

.correlation-map__beam {
    position: absolute;
    top: 8%;
    bottom: 8%;
    left: 44%;
    width: 18%;
    background: linear-gradient(180deg, transparent, rgba(97, 231, 255, 0.18), transparent);
    filter: blur(14px);
    animation: scan-y 3.6s ease-in-out infinite;
}

.priority-board {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 1.25rem;
}

.priority-board__chart {
    display: flex;
    align-items: end;
    gap: 0.9rem;
    padding: 1.3rem;
    border: 1px solid rgba(150, 180, 201, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
}

.priority-board__chart span {
    flex: 1;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: linear-gradient(180deg, rgba(97, 231, 255, 0.8), rgba(75, 134, 255, 0.28));
    animation: chart-rise 3.8s ease-in-out infinite;
}

.priority-board__chart span:nth-child(1) { height: 38%; }
.priority-board__chart span:nth-child(2) { height: 92%; animation-delay: 0.2s; }
.priority-board__chart span:nth-child(3) { height: 64%; animation-delay: 0.4s; }
.priority-board__chart span:nth-child(4) { height: 80%; animation-delay: 0.6s; }

.priority-board__list {
    display: grid;
    gap: 0.75rem;
}

.priority-board__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(150, 180, 201, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-2);
}

.priority-board__item strong {
    color: var(--text-1);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.priority-board__item--critical { border-color: rgba(255, 132, 108, 0.16); }
.priority-board__item--high { border-color: rgba(255, 195, 107, 0.16); }
.priority-board__item--medium { border-color: rgba(255, 226, 117, 0.14); }

.trace-flow {
    display: grid;
    gap: 1rem;
    align-content: center;
}

.trace-flow__rail {
    position: absolute;
    top: 3rem;
    bottom: 3rem;
    left: 1.2rem;
    width: 1px;
    background: linear-gradient(180deg, rgba(97, 231, 255, 0.12), rgba(97, 231, 255, 0.42), rgba(255, 132, 108, 0.14));
}

.trace-flow__entry {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
}

.trace-flow__dot {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1px solid rgba(97, 231, 255, 0.34);
    background: linear-gradient(135deg, rgba(97, 231, 255, 0.72), rgba(75, 134, 255, 0.72));
    box-shadow: 0 0 20px rgba(97, 231, 255, 0.18);
    z-index: 1;
}

.trace-flow__card {
    display: grid;
    gap: 0.35rem;
    padding: 1rem 1rem 1rem 1.1rem;
    border: 1px solid rgba(150, 180, 201, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.trace-flow__card strong {
    color: var(--text-1);
    font-size: 0.94rem;
}

.trace-flow__card span {
    color: var(--text-2);
    font-size: 0.88rem;
    line-height: 1.55;
}

.features {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.25rem;
}

.fcard {
    position: relative;
    grid-column: span 4;
    min-height: 15rem;
    padding: 1.8rem 1.6rem 1.55rem;
    border: 1px solid rgba(150, 180, 201, 0.1);
    border-radius: 22px;
    background: rgba(8, 20, 30, 0.7);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.fcard::before {
    display: none;
}

.fcard::after {
    display: none;
}

.fcard:nth-child(1) {
    grid-column: span 5;
}

.fcard:nth-child(2) {
    grid-column: span 3;
}

.fcard:nth-child(3) {
    grid-column: span 4;
}

.fcard:nth-child(4) {
    grid-column: span 4;
}

.fcard:nth-child(5) {
    grid-column: span 5;
}

.fcard:nth-child(6) {
    grid-column: span 3;
}

.fcard:nth-child(2)::before,
.fcard:nth-child(5)::before {
    display: none;
}

.fcard:nth-child(3)::before,
.fcard:nth-child(6)::before {
    display: none;
}

.fcard:hover {
    transform: translateY(-3px);
    border-color: rgba(150, 180, 201, 0.16);
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.2);
}

.fcard__icon {
    background: rgba(97, 231, 255, 0.1);
    color: var(--cyan);
}

.fcard:nth-child(2) .fcard__icon,
.fcard:nth-child(5) .fcard__icon {
    background: rgba(255, 132, 108, 0.1);
    color: var(--rose);
}

.fcard:nth-child(3) .fcard__icon,
.fcard:nth-child(6) .fcard__icon {
    background: rgba(255, 195, 107, 0.1);
    color: var(--amber);
}

.fcard h3 {
    margin-bottom: 0.65rem;
    font-size: 1.14rem;
}

.fcard p {
    max-width: 20rem;
    font-size: 0.95rem;
    line-height: 1.72;
}

.cta {
    position: relative;
    padding: clamp(2.8rem, 5vw, 3.6rem);
    border: 1px solid rgba(150, 180, 201, 0.12);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 24%),
        rgba(7, 18, 28, 0.82);
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    text-align: left;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: min(14rem, 28%);
    background: linear-gradient(90deg, rgba(97, 231, 255, 0.08), transparent 86%);
    pointer-events: none;
}

.cta__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) auto;
    gap: 2rem;
    align-items: center;
}

.cta__copy {
    max-width: 41rem;
}

.cta .section__eyebrow {
    margin-bottom: 0.85rem;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    margin-bottom: 0.9rem;
    text-wrap: balance;
}

.cta__copy > p {
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

.cta__panel {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.cta__panel .btn {
    width: auto;
    min-width: 14rem;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease;
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 7, 11, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal__dialog {
    position: relative;
    width: 100%;
    max-width: 30rem;
    max-height: calc(100dvh - 3rem);
    overflow-y: auto;
    border: 1px solid rgba(150, 180, 201, 0.16);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 26%),
        rgba(7, 18, 28, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        var(--shadow-deep);
    transform: translateY(14px) scale(0.975);
    transition: transform 280ms cubic-bezier(0.22, 0.68, 0, 1);
}

.modal.is-open .modal__dialog {
    transform: translateY(0) scale(1);
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    border-bottom: 1px solid rgba(150, 180, 201, 0.1);
}

.modal__header h3 {
    font-size: 1.14rem;
}

.modal__dialog--contact {
    max-width: min(44rem, calc(100vw - 1rem));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 24%),
        rgba(7, 18, 28, 0.97);
}

.modal__dialog--contact::before {
    display: none;
}

.modal__header--contact {
    position: relative;
    align-items: flex-start;
    padding: 1.9rem 1.85rem 1.45rem;
    border-bottom: 0;
}

.modal__header-copy {
    display: grid;
    gap: 0.85rem;
    max-width: 29rem;
}

.modal__brand-logo {
    display: block;
    width: clamp(7.4rem, 15vw, 9.2rem);
    opacity: 0.98;
}

.modal__dialog--contact .modal__header h3 {
    font-size: clamp(1.35rem, 2.4vw, 2.05rem);
    letter-spacing: -0.02em;
    text-wrap: balance;
}

.modal__lede {
    max-width: 27rem;
    color: var(--text-2);
    font-size: 0.93rem;
    line-height: 1.7;
}

.modal__dialog--contact .modal__close {
    width: 1.9rem;
    height: 1.9rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(173, 188, 203, 0.72);
    transition: color var(--ease), opacity var(--ease), transform var(--ease);
}

.modal__dialog--contact .modal__close:hover {
    color: var(--text-1);
    border-color: transparent;
    background: transparent;
    transform: translateY(-1px);
}

.modal__dialog--contact .modal__close svg {
    width: 1rem;
    height: 1rem;
    stroke-width: 1.6;
}

.modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border: 1px solid rgba(150, 180, 201, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-2);
    cursor: pointer;
    transition: background-color var(--ease), color var(--ease), border-color var(--ease);
}

.modal__close:hover {
    color: var(--text-1);
    border-color: rgba(150, 180, 201, 0.26);
    background: rgba(255, 255, 255, 0.08);
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.modal__form--contact {
    position: relative;
    gap: 1.45rem;
    padding: 0.25rem 1.85rem 1.85rem;
}

.form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem 1.6rem;
}

.form__field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 0 0 0.15rem;
}

.form__field::before,
.form__field::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    pointer-events: none;
}

.form__field::before {
    background: rgba(150, 180, 201, 0.2);
}

.form__field::after {
    background: linear-gradient(90deg, rgba(97, 231, 255, 0.9), rgba(77, 148, 255, 0.68));
    transform: scaleX(0.18);
    transform-origin: left center;
    opacity: 0;
    transition: transform var(--ease), opacity var(--ease);
}

.form__field:focus-within::after {
    transform: scaleX(1);
    opacity: 1;
}

.form__field--full {
    grid-column: 1 / -1;
}

.form__field label {
    font-size: 0.84rem;
    font-weight: 500;
    color: rgba(173, 188, 203, 0.8);
    letter-spacing: 0;
    text-transform: none;
    transition: color var(--ease);
}

.form__field:focus-within label {
    color: var(--ice);
}

.form__field label span {
    font-weight: 400;
    color: rgba(173, 188, 203, 0.72);
}

.form__field input,
.form__field textarea {
    width: 100%;
    padding: 0 0 0.8rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    outline: none;
    box-shadow: none;
    transition: color var(--ease);
}

.form__field input::placeholder,
.form__field textarea::placeholder {
    color: rgba(173, 188, 203, 0.38);
}

.form__field input:focus,
.form__field textarea:focus {
    color: var(--text-1);
}

.form__field input:-webkit-autofill,
.form__field input:-webkit-autofill:hover,
.form__field input:-webkit-autofill:focus,
.form__field textarea:-webkit-autofill,
.form__field textarea:-webkit-autofill:hover,
.form__field textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-1);
    caret-color: var(--text-1);
    box-shadow: inset 0 0 0 1000px #07131d;
    -webkit-box-shadow: inset 0 0 0 1000px #07131d;
    transition: background-color 9999s ease-out 0s, color 9999s ease-out 0s;
}

.form__field textarea {
    min-height: 6.9rem;
    padding-top: 0.05rem;
    resize: vertical;
}

.modal__submit {
    width: 100%;
    margin-top: 0.25rem;
}

.modal__form--contact .modal__submit {
    width: auto;
    min-width: 13.25rem;
    margin-top: 0;
    justify-self: end;
}

.modal__form--contact .modal__submit:disabled {
    cursor: not-allowed;
    color: rgba(7, 26, 35, 0.56);
    border-color: rgba(202, 244, 255, 0.18);
    background: linear-gradient(180deg, rgba(156, 243, 255, 0.56), rgba(99, 219, 247, 0.44));
    box-shadow: none;
    transform: none;
    opacity: 0.6;
}

.modal__form--contact .modal__submit:disabled::before,
.modal__form--contact .modal__submit:disabled::after {
    opacity: 0.28;
}

.form__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem 1.4rem;
    margin-top: 0.35rem;
    padding-top: 0.3rem;
    border-top: 0;
}

.form__consent {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.15rem 0.28rem;
    padding: 0;
    border: 0;
    background: none;
    transition: color var(--ease);
}

.form__consent.is-invalid {
    box-shadow: none;
}

.form__check {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.68rem;
    flex: 0 1 auto;
    min-width: 0;
    cursor: pointer;
}

.form__check-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form__check-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    border: 1px solid rgba(150, 180, 201, 0.3);
    border-radius: 3px;
    background: transparent;
    color: #071a23;
    transition: border-color var(--ease), background-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.form__check-box svg {
    width: 0.8rem;
    height: 0.8rem;
    stroke-width: 1.9;
    opacity: 0;
    transform: scale(0.72);
    transition: opacity var(--ease), transform var(--ease);
}

.form__check-input:checked + .form__check-box {
    border-color: rgba(202, 244, 255, 0.36);
    background: linear-gradient(180deg, #9cf3ff 0%, #63dbf7 56%, #3ca7db 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.form__check-input:checked + .form__check-box svg {
    opacity: 1;
    transform: scale(1);
}

.form__check-input:focus-visible + .form__check-box {
    outline: 2px solid rgba(97, 231, 255, 0.26);
    outline-offset: 4px;
}

.form__check-copy {
    color: rgba(173, 188, 203, 0.9);
    font-size: 0.84rem;
    line-height: 1.65;
}

.form__consent-link-wrap {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: 0.08rem;
}

.form__legal-link--inline {
    font-size: 0.84rem;
    line-height: 1.65;
}

.form__consent.is-invalid .form__check-box {
    border-color: rgba(255, 132, 108, 0.52);
    box-shadow: 0 0 0 3px rgba(255, 132, 108, 0.08);
}

.form__legal-link {
    padding: 0;
    border: 0;
    background: none;
    color: var(--cyan);
    font: inherit;
    cursor: pointer;
    transition: color var(--ease);
}

.form__legal-link:hover {
    color: var(--ice);
}

.form__recaptcha {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.26rem;
    margin: -0.1rem 0 0;
    color: rgba(173, 188, 203, 0.72);
    font-size: 0.76rem;
    line-height: 1.65;
}

.form__recaptcha a {
    color: var(--cyan);
    text-decoration: none;
    transition: color var(--ease);
}

.form__recaptcha a:hover {
    color: var(--ice);
}

.form__hint {
    margin-top: 0.15rem;
    font-size: 0.86rem;
    text-align: left;
}

.form__hint--ok {
    color: var(--success);
}

.form__hint--err {
    color: var(--danger);
}

.modal__body {
    max-height: 65dvh;
    overflow-y: auto;
    padding: 1.5rem;
    color: var(--text-2);
    font-size: 0.94rem;
    line-height: 1.75;
}

.modal__body h4 {
    margin: 1.5rem 0 0.5rem;
    color: var(--text-1);
    font-size: 1rem;
}

.modal__body h4:first-child {
    margin-top: 0;
}

.modal__body p {
    margin-bottom: 0.75rem;
}

.modal__body ul {
    margin-bottom: 0.75rem;
    padding-left: 1.2rem;
    list-style: disc;
}

.modal__body ul li {
    margin-bottom: 0.35rem;
    color: var(--text-2);
}

.modal__dialog--legal {
    max-width: min(88rem, calc(100vw - 0.75rem));
    height: min(52rem, calc(100dvh - 0.75rem));
    max-height: calc(100dvh - 0.75rem);
    overflow: hidden;
    border-radius: var(--radius-2xl);
}

.legal-sheet {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    height: 100%;
    min-height: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
        linear-gradient(180deg, rgba(6, 18, 28, 0.99), rgba(4, 13, 21, 0.985));
}

.legal-sheet::before {
    content: "";
    position: absolute;
    inset: -12rem auto auto -8rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(97, 231, 255, 0.14), transparent 70%);
    filter: blur(24px);
    pointer-events: none;
}

.legal-sheet::after {
    content: "";
    position: absolute;
    inset: auto -8rem -12rem auto;
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 134, 255, 0.12), transparent 72%);
    filter: blur(28px);
    pointer-events: none;
}

.legal-sheet__top {
    position: relative;
    padding: 1.7rem 1.85rem 1.4rem;
    border-bottom: 1px solid rgba(150, 180, 201, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 100%),
        radial-gradient(circle at 78% 0%, rgba(97, 231, 255, 0.1), transparent 26%);
}

.legal-sheet__head {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    z-index: 1;
}

.legal-sheet__copy {
    max-width: 52rem;
}

.legal-sheet__eyebrow {
    margin-bottom: 0.75rem;
    color: var(--ice);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.legal-sheet__copy h3 {
    font-size: clamp(1.85rem, 2.3vw, 2.9rem);
    max-width: 16ch;
    text-wrap: balance;
}

.legal-sheet__intro {
    margin-top: 0.8rem;
    max-width: 42rem;
    color: var(--text-2);
    font-size: 1.02rem;
    line-height: 1.75;
}

.legal-sheet__actions {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-left: auto;
    padding-top: 0.1rem;
}

.modal__dialog--legal .modal__close {
    width: 1.7rem;
    height: 1.7rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: rgba(173, 188, 203, 0.66);
    box-shadow: none;
    opacity: 0.78;
    transition: color var(--ease), opacity var(--ease), transform var(--ease);
}

.modal__dialog--legal .modal__close:hover {
    color: var(--text-1);
    background: transparent;
    opacity: 1;
    transform: translateY(-1px);
}

.modal__dialog--legal .modal__close svg {
    width: 0.9rem;
    height: 0.9rem;
}

.legal-sheet__layout {
    position: relative;
    display: grid;
    grid-template-columns: 15.5rem minmax(0, 1fr);
    min-height: 0;
    z-index: 1;
}

.legal-nav {
    display: grid;
    align-content: start;
    gap: 0.42rem;
    padding: 1.15rem;
    border-right: 1px solid rgba(150, 180, 201, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.legal-nav__item {
    width: 100%;
    padding: 0.88rem 0.95rem;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--text-2);
    text-align: left;
    cursor: pointer;
    transition: background-color var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

.legal-nav__item:hover {
    color: var(--text-1);
    background: rgba(255, 255, 255, 0.04);
    transform: translateX(2px);
}

.legal-nav__item.is-active {
    color: var(--text-1);
    border-color: rgba(97, 231, 255, 0.2);
    background:
        linear-gradient(180deg, rgba(97, 231, 255, 0.08), rgba(97, 231, 255, 0.03)),
        rgba(255, 255, 255, 0.02);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 10px 26px rgba(0, 0, 0, 0.14);
}

.legal-sheet__content {
    min-width: 0;
    min-height: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%);
}

.legal-doc {
    height: 100%;
    min-height: 0;
    max-height: none;
    padding: 1.55rem 1.85rem 2.15rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    color: var(--text-2);
    font-size: 0.97rem;
    line-height: 1.82;
    scrollbar-gutter: stable both-edges;
}

.legal-doc h4 {
    margin: 1.65rem 0 0.55rem;
    color: var(--text-1);
    font-size: 1rem;
}

.legal-doc h4:first-child {
    margin-top: 0;
}

.legal-doc p {
    max-width: 48rem;
    margin-bottom: 0.9rem;
}

.legal-doc ul {
    display: grid;
    gap: 0.45rem;
    max-width: 48rem;
    margin-bottom: 1rem;
    padding-left: 0;
    list-style: none;
}

.legal-doc ul li {
    position: relative;
    margin: 0;
    padding-left: 1.05rem;
    color: var(--text-2);
}

.legal-doc ul li::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px rgba(97, 231, 255, 0.3);
}

.legal-doc a {
    color: var(--ice);
    text-decoration: underline;
    text-decoration-color: rgba(97, 231, 255, 0.5);
    text-underline-offset: 0.18em;
}

.footer {
    position: relative;
    z-index: 2;
    padding: 0 0 2rem;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(150, 180, 201, 0.16), transparent);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 3rem;
    padding: 3rem 0 2rem;
}

.footer__logo {
    width: clamp(7.2rem, 14vw, 9.4rem);
    margin-bottom: 1rem;
}

.footer__brand p {
    max-width: 24rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer__cols {
    display: flex;
    gap: 4rem;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer__col h3 {
    margin-bottom: 0.35rem;
    color: var(--text-3);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer__col a {
    color: var(--text-2);
    font-size: 0.93rem;
    transition: color var(--ease);
}

.footer__col a:hover {
    color: var(--text-1);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(150, 180, 201, 0.1);
}

.footer__bottom p {
    color: var(--text-3);
    font-size: 0.85rem;
}

.footer__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.footer__meta a {
    color: var(--text-2);
    transition: color var(--ease);
}

.footer__meta a:hover {
    color: var(--text-1);
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.45rem 1rem;
}

.footer__legal-btn {
    position: relative;
    padding: 0.1rem 0 0.22rem;
    font-size: 0.84rem;
    letter-spacing: 0.015em;
    border: 0;
    background: none;
    color: var(--text-3);
    cursor: pointer;
    transition: color var(--ease);
}

.footer__legal-btn::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    opacity: 0;
    transform: scaleX(0.2);
    transform-origin: left;
    background: linear-gradient(90deg, rgba(97, 231, 255, 0.7), rgba(97, 231, 255, 0));
    transition: transform var(--ease), opacity var(--ease);
}

.footer__legal-btn.is-active::after,
.footer__legal-btn:hover {
    color: var(--text-2);
}

.footer__legal-btn.is-active::after,
.footer__legal-btn:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 180;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1rem 1.2rem;
    width: min(44rem, calc(100vw - 2rem));
    padding: 1.1rem 1.15rem 1.15rem;
    border: 1px solid rgba(150, 180, 201, 0.16);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 0% 0%, rgba(97, 231, 255, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 26%),
        rgba(7, 18, 28, 0.96);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 22px 48px rgba(0, 0, 0, 0.34);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity var(--ease), transform var(--ease);
}

.cookie-banner.is-open {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner__copy {
    display: grid;
    gap: 0.45rem;
}

.cookie-banner__eyebrow {
    color: var(--ice);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.cookie-banner__text {
    color: var(--text-2);
    font-size: 0.88rem;
    line-height: 1.65;
}

.cookie-banner__policy {
    justify-self: start;
    padding: 0;
    border: 0;
    background: none;
    color: var(--cyan);
    font-size: 0.82rem;
    line-height: 1.5;
    cursor: pointer;
    transition: color var(--ease);
}

.cookie-banner__policy:hover {
    color: var(--ice);
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.cookie-banner__btn {
    min-width: 11.5rem;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section__head .section__eyebrow::before {
    transform-origin: left center;
    transform: scaleX(0.34);
    opacity: 0.5;
    transition: transform 720ms cubic-bezier(0.22, 0.68, 0, 1), opacity 720ms ease;
}

.section__head.reveal.is-visible .section__eyebrow::before {
    transform: scaleX(1);
    opacity: 1;
}

.hero__content .hero-proof,
.problems.reveal .pcard,
.steps.reveal .step,
.steps.reveal .steps__stage,
.cta.reveal .cta__copy,
.cta.reveal .cta__panel,
.footer__top.reveal .footer__brand,
.footer__top.reveal .footer__col,
.footer__bottom.reveal > * {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    will-change: transform, opacity;
}

.hero__content.reveal.is-visible .hero-proof,
.problems.reveal.is-visible .pcard,
.steps.reveal.is-visible .step,
.steps.reveal.is-visible .steps__stage,
.cta.reveal.is-visible .cta__copy,
.cta.reveal.is-visible .cta__panel,
.footer__top.reveal.is-visible .footer__brand,
.footer__top.reveal.is-visible .footer__col,
.footer__bottom.reveal.is-visible > * {
    animation: reveal-stagger-in 760ms cubic-bezier(0.22, 0.68, 0, 1) both;
}

.hero__content.reveal.is-visible .hero-proof:nth-child(1) { animation-delay: 120ms; }
.hero__content.reveal.is-visible .hero-proof:nth-child(2) { animation-delay: 220ms; }
.hero__content.reveal.is-visible .hero-proof:nth-child(3) { animation-delay: 320ms; }

.problems.reveal.is-visible .pcard:nth-child(1) { animation-delay: 80ms; }
.problems.reveal.is-visible .pcard:nth-child(2) { animation-delay: 180ms; }
.problems.reveal.is-visible .pcard:nth-child(3) { animation-delay: 280ms; }

.steps.reveal.is-visible .step:nth-child(1) { animation-delay: 60ms; }
.steps.reveal.is-visible .step:nth-child(2) { animation-delay: 140ms; }
.steps.reveal.is-visible .step:nth-child(3) { animation-delay: 220ms; }
.steps.reveal.is-visible .step:nth-child(4) { animation-delay: 300ms; }
.steps.reveal.is-visible .steps__stage { animation-delay: 220ms; }

.cta.reveal.is-visible .cta__copy { animation-delay: 70ms; }
.cta.reveal.is-visible .cta__panel { animation-delay: 190ms; }

.footer__top.reveal.is-visible .footer__brand { animation-delay: 40ms; }
.footer__top.reveal.is-visible .footer__col:nth-child(1) { animation-delay: 140ms; }
.footer__top.reveal.is-visible .footer__col:nth-child(2) { animation-delay: 220ms; }
.footer__bottom.reveal.is-visible > *:first-child { animation-delay: 60ms; }
.footer__bottom.reveal.is-visible > *:last-child { animation-delay: 160ms; }

.scene-card--signal {
    animation: scene-signal-float 8.5s ease-in-out infinite;
}

.scene-card--audit {
    animation: scene-audit-float 9s ease-in-out infinite 1.2s;
}

.hero__actions .btn--primary {
    animation: hero-cta-glow 5.4s ease-in-out infinite;
}

.hero__actions .btn--primary:hover,
.hero__actions .btn--primary:focus-visible {
    animation-play-state: paused;
}

.cta::after {
    content: "";
    position: absolute;
    right: -8%;
    bottom: -34%;
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(97, 231, 255, 0.16), transparent 68%);
    filter: blur(24px);
    opacity: 0.55;
    pointer-events: none;
    animation: cta-glow-drift 11s ease-in-out infinite;
}

@keyframes drift-1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(-34px, 30px);
    }
    66% {
        transform: translate(24px, -18px);
    }
}

@keyframes drift-2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(36px, -24px);
    }
    66% {
        transform: translate(-20px, 34px);
    }
}

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

@keyframes pulse-node {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.82;
    }
}

@keyframes mock-float {
    0%, 100% {
        transform: translateX(-50%) perspective(1400px) rotateX(10deg) rotateY(-15deg) translateY(0);
    }
    50% {
        transform: translateX(-50%) perspective(1400px) rotateX(10deg) rotateY(-15deg) translateY(-10px);
    }
}

@keyframes row-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes step-panel-in {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes upload-row-in {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.78;
    }
    50% {
        transform: translateX(8px);
        opacity: 1;
    }
}

@keyframes link-pulse {
    0%, 100% {
        opacity: 0.45;
        filter: blur(0);
    }
    50% {
        opacity: 1;
        filter: blur(1px);
    }
}

@keyframes scan-y {
    0%, 100% {
        transform: translateY(-10%);
        opacity: 0.15;
    }
    50% {
        transform: translateY(10%);
        opacity: 0.4;
    }
}

@keyframes chart-rise {
    0%, 100% {
        filter: saturate(0.9);
        transform: scaleY(0.96);
        transform-origin: bottom;
    }
    50% {
        filter: saturate(1.1);
        transform: scaleY(1.04);
        transform-origin: bottom;
    }
}

@keyframes reveal-stagger-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scene-signal-float {
    0%, 100% {
        transform: rotate(-3deg) translateY(0);
    }
    50% {
        transform: rotate(-3deg) translateY(-10px);
    }
}

@keyframes scene-audit-float {
    0%, 100% {
        transform: rotate(3deg) translateY(0);
    }
    50% {
        transform: rotate(3deg) translateY(10px);
    }
}

@keyframes hero-cta-glow {
    0%, 100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.26),
            0 12px 28px rgba(38, 158, 191, 0.22);
    }
    50% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.28),
            0 18px 36px rgba(38, 158, 191, 0.3);
    }
}

@keyframes cta-glow-drift {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.45;
    }
    50% {
        transform: translate3d(-1.25rem, -1rem, 0) scale(1.08);
        opacity: 0.72;
    }
}

@media (max-width: 991px) {
    .wrap {
        width: min(1240px, calc(100% - 1.5rem));
    }

    .header {
        padding: 0.8rem 0;
    }

    .header.is-scrolled {
        padding: 0.38rem 0;
    }

    .header__inner {
        gap: 0.75rem;
        padding: 0.7rem 0.75rem 0.7rem 0.95rem;
    }

    .header.is-scrolled .header__inner {
        padding: 0.56rem 0.68rem 0.56rem 0.84rem;
        border-radius: 12px;
    }

    .header__logo {
        width: clamp(6rem, 18vw, 7.6rem);
    }

    .header.is-scrolled .header__logo {
        width: clamp(5.4rem, 15vw, 6.5rem);
    }

    .header__cta {
        display: none;
    }

    .header__right {
        gap: 0.55rem;
    }

    .lang__trigger {
        height: 2.75rem;
        padding: 0 0.6rem 0 0.7rem;
    }

    .header.is-scrolled .lang__trigger {
        height: 2.45rem;
        padding: 0 0.52rem 0 0.62rem;
    }

    .burger {
        display: inline-flex;
    }

    .header.is-scrolled .burger {
        width: 2.75rem;
        height: 2.75rem;
    }

    .nav {
        position: fixed;
        inset: 4.95rem 0.75rem auto;
        display: grid;
        gap: 0.3rem;
        padding: 0.95rem;
        border: 1px solid rgba(150, 180, 201, 0.16);
        border-radius: var(--radius-lg);
        background: rgba(7, 18, 27, 0.97);
        box-shadow: var(--shadow-lg);
        max-height: calc(100dvh - 6rem);
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        transform: translateY(-0.5rem);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--ease), transform var(--ease);
        z-index: 101;
    }

    .header.is-scrolled .nav {
        inset: 4.45rem 0.75rem auto;
    }

    .header.is-scrolled .nav a {
        color: var(--text-2);
        font-size: inherit;
        transform: none;
    }

    .nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav a {
        min-height: 2.95rem;
        padding: 0.85rem 0.95rem;
        border-radius: var(--radius-md);
    }

    .nav a:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .nav__cta {
        display: inline-flex;
        justify-content: center;
        min-height: 3rem;
        margin-top: 0.35rem;
        padding: 0.88rem;
        border: 1px solid rgba(202, 244, 255, 0.34);
        border-radius: var(--radius-md);
        color: #071a23;
        font-family: var(--font-heading);
        font-weight: 600;
        background: linear-gradient(180deg, #9cf3ff 0%, #63dbf7 56%, #3ca7db 100%);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.26),
            0 12px 24px rgba(38, 158, 191, 0.2);
    }

    .hero {
        padding-top: clamp(8rem, 16vw, 9.5rem);
        padding-bottom: clamp(3.5rem, 8vw, 5rem);
    }

    .hero__grid {
        gap: 2.5rem;
    }

    .hero__sub {
        max-width: none;
    }

    .hero__proof {
        gap: 0.85rem;
        margin-top: 1.75rem;
        grid-template-columns: 1fr;
    }

    .hero-proof {
        padding: 1rem;
    }

    .hero__visual {
        min-height: auto;
    }

    .scene {
        min-height: 0;
        padding-top: 10rem;
        display: grid;
        gap: 0.85rem;
    }

    .scene::before {
        inset: 2.6rem 0.5rem 0;
        border-radius: var(--radius-xl);
    }

    .scene::after {
        left: 12%;
        right: 12%;
    }

    .scene__radar::before {
        top: 0;
        right: 50%;
        width: 20rem;
        height: 20rem;
        transform: translateX(50%);
    }

    .scene__radar::after {
        top: 1.25rem;
        right: 50%;
        width: 17rem;
        height: 17rem;
        transform: translateX(50%);
    }

    .scene__ring--1 {
        top: 1.8rem;
        right: 50%;
        width: 16rem;
        height: 16rem;
        transform: translateX(50%);
    }

    .scene__ring--2 {
        top: 3.4rem;
        right: 50%;
        width: 12.8rem;
        height: 12.8rem;
        transform: translateX(50%);
    }

    .scene__ring--3 {
        top: 5rem;
        right: 50%;
        width: 9.6rem;
        height: 9.6rem;
        transform: translateX(50%);
    }

    .scene__axis--h {
        top: 9.85rem;
        right: 50%;
        width: 14rem;
        transform: translateX(50%);
    }

    .scene__axis--v {
        top: 3rem;
        right: 50%;
        height: 14rem;
        transform: translateX(50%);
    }

    .scene__node--1 {
        top: 5.4rem;
        right: calc(50% - 3.6rem);
    }

    .scene__node--2 {
        top: 8.2rem;
        right: calc(50% + 4rem);
    }

    .scene__node--3 {
        top: 12.2rem;
        right: calc(50% - 1.7rem);
    }

    .scene__node--4 {
        top: 9.9rem;
        right: calc(50% - 6.3rem);
    }

    .scene__core {
        top: 6.9rem;
        right: 50%;
        width: 8rem;
        height: 8rem;
        transform: translateX(50%);
    }

    .scene-card,
    .mock {
        position: relative;
        inset: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        width: 100%;
        margin: 0;
    }

    .scene-card {
        max-width: 19rem;
    }

    .scene-card--signal {
        justify-self: start;
        margin-top: 0.5rem;
    }

    .scene-card--audit {
        justify-self: end;
    }

    .mock {
        max-width: none;
        animation: none;
    }

    .mock__body {
        gap: 0.9rem;
        padding: 1rem;
    }

    .mock__stats {
        gap: 0.65rem;
    }

    .mock__row {
        grid-template-columns: 5.2rem 1fr 0.95fr;
    }

    .scene__chip {
        font-size: 0.73rem;
        padding: 0.62rem 0.85rem;
    }

    .scene__chip--left {
        left: 0.8rem;
        bottom: auto;
        top: 9.6rem;
    }

    .scene__chip--right {
        right: 0.8rem;
        top: 12rem;
    }

    .problems,
    .features {
        gap: 1rem;
        grid-template-columns: 1fr 1fr;
    }

    .pcard,
    .fcard {
        grid-column: span 1 !important;
    }

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

    .steps__list {
        gap: 0.7rem;
        height: auto;
    }

    .step {
        flex: none;
        padding: 1rem;
    }

    .step__title {
        font-size: 1rem;
    }

    .step__text {
        font-size: 0.88rem;
    }

    .steps__stage {
        position: static;
        top: auto;
        height: auto;
    }

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

    .step-visual__meta {
        display: grid;
        gap: 0.45rem;
    }

    .step-visual__hint {
        max-width: none;
        text-align: left;
    }

    .step-visual__frame {
        min-height: 23rem;
    }

    .modal__dialog--legal {
        max-width: calc(100vw - 1rem);
        height: calc(100dvh - 1rem);
        max-height: calc(100dvh - 1rem);
        border-radius: var(--radius-xl);
    }

    .legal-sheet {
        min-height: auto;
    }

    .legal-sheet__head {
        display: grid;
        gap: 1rem;
    }

    .modal__dialog--contact {
        max-width: min(44rem, calc(100vw - 1rem));
        max-height: calc(100dvh - 1rem);
    }

    .form__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form__footer {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 0.9rem;
    }

    .modal__form--contact .modal__submit {
        justify-self: stretch;
        width: 100%;
    }

    .legal-sheet__actions {
        justify-content: flex-end;
        align-items: center;
    }

    .legal-sheet__layout {
        grid-template-columns: 1fr;
    }

    .legal-nav {
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        overflow-x: auto;
        padding: 0.95rem 1rem;
        border-right: 0;
        border-bottom: 1px solid rgba(150, 180, 201, 0.1);
    }

    .legal-nav__item:hover {
        transform: none;
    }

    .legal-doc {
        padding: 1.35rem 1.35rem 1.75rem;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

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

@media (max-width: 820px) {
    .scene {
        padding-top: 9.35rem;
    }

    .scene-card {
        max-width: none;
        justify-self: stretch;
    }

    .scene-card--signal,
    .scene-card--audit {
        justify-self: stretch;
    }

    .problems,
    .features {
        grid-template-columns: 1fr;
    }

    .mock__row {
        grid-template-columns: 4.75rem 1fr;
    }

    .mock__pkg {
        display: none;
    }

    .footer__cols {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 639px) {
    .wrap {
        width: min(1240px, calc(100% - 1.25rem));
    }

    [id] {
        scroll-margin-top: 6rem;
    }

    .section {
        padding: clamp(4rem, 11vw, 4.75rem) 0;
    }

    .section__head {
        margin-bottom: 2.25rem;
    }

    .section__intro {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .header {
        padding: max(0.45rem, env(safe-area-inset-top)) 0 0.4rem;
    }

    .header__inner {
        gap: 0.55rem;
        padding: 0.6rem 0.65rem 0.6rem 0.8rem;
    }

    .header.is-scrolled .header__inner {
        padding: 0.48rem 0.56rem 0.48rem 0.72rem;
    }

    .header__logo {
        width: 6rem;
    }

    .header.is-scrolled .header__logo {
        width: 5.3rem;
    }

    .header__right {
        gap: 0.45rem;
    }

    .lang__trigger {
        gap: 0.42rem;
        height: 2.6rem;
        padding: 0 0.55rem 0 0.65rem;
    }

    .header.is-scrolled .lang__trigger {
        height: 2.35rem;
        padding: 0 0.48rem 0 0.56rem;
    }

    .lang__label {
        display: none;
    }

    .lang__code {
        min-width: 1.9rem;
        height: 1.75rem;
        padding: 0 0.4rem;
        font-size: 0.68rem;
    }

    .lang__menu {
        top: calc(100% + 0.5rem);
        width: min(13.5rem, calc(100vw - 1.25rem));
    }

    .burger {
        width: 2.65rem;
        height: 2.65rem;
    }

    .header.is-scrolled .burger {
        width: 2.4rem;
        height: 2.4rem;
    }

    .nav {
        inset: calc(4.25rem + env(safe-area-inset-top)) 0.625rem auto;
        gap: 0.25rem;
        padding: 0.8rem;
        max-height: calc(100dvh - 5rem - env(safe-area-inset-top));
    }

    .header.is-scrolled .nav {
        inset: calc(3.9rem + env(safe-area-inset-top)) 0.625rem auto;
    }

    .nav a {
        padding: 0.8rem 0.85rem;
        font-size: 0.92rem;
    }

    .nav__cta {
        margin-top: 0.25rem;
    }

    .hero {
        padding-top: 7.25rem;
        padding-bottom: 3.5rem;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 10.2vw, 2.85rem);
        margin-bottom: 1rem;
    }

    .hero__sub {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .hero__actions,
    .cta__actions {
        width: 100%;
        gap: 0.75rem;
    }

    .hero__actions .btn,
    .cta__actions .btn {
        width: 100%;
    }

    .scene {
        gap: 0.85rem;
        padding-top: 9rem;
    }

    .scene::before {
        inset: 2rem 0 0;
    }

    .scene__radar::before {
        width: 17rem;
        height: 17rem;
    }

    .scene__radar::after {
        top: 1.1rem;
        width: 14.25rem;
        height: 14.25rem;
    }

    .scene__ring--1 {
        top: 1.6rem;
        width: 13.75rem;
        height: 13.75rem;
    }

    .scene__ring--2 {
        top: 2.95rem;
        width: 10.75rem;
        height: 10.75rem;
    }

    .scene__ring--3 {
        top: 4.3rem;
        width: 7.75rem;
        height: 7.75rem;
    }

    .scene__axis--h {
        top: 8.45rem;
        width: 11.75rem;
    }

    .scene__axis--v {
        top: 2.8rem;
        height: 11.75rem;
    }

    .scene__node--1 {
        top: 4.9rem;
        right: calc(50% - 3.05rem);
    }

    .scene__node--2 {
        top: 7.15rem;
        right: calc(50% + 3.25rem);
    }

    .scene__node--3 {
        top: 10.55rem;
        right: calc(50% - 1.3rem);
    }

    .scene__node--4 {
        top: 8.65rem;
        right: calc(50% - 5.1rem);
    }

    .scene__core {
        top: 5.95rem;
        width: 6.9rem;
        height: 6.9rem;
        padding: 0.85rem;
    }

    .scene__core span {
        font-size: 0.56rem;
    }

    .scene__core strong {
        font-size: 0.82rem;
        line-height: 1.32;
    }

    .scene-card {
        padding: 0.9rem;
    }

    .scene-card__eyebrow {
        margin-bottom: 0.75rem;
    }

    .mock {
        border-radius: var(--radius-lg);
    }

    .mock__bar {
        gap: 0.75rem;
        padding: 0.75rem 0.85rem;
    }

    .mock__body {
        gap: 0.85rem;
        padding: 0.9rem;
    }

    .mock__stat {
        padding: 0.75rem 0.8rem;
    }

    .mock__stat-n {
        font-size: 1.4rem;
    }

    .mock__row {
        grid-template-columns: 4.6rem 1fr;
        gap: 0.6rem;
        padding: 0.7rem 0.8rem;
        font-size: 0.78rem;
    }

    .sev {
        padding: 0.26rem 0.45rem;
    }

    .hero__proof {
        gap: 0.75rem;
        margin-top: 1.4rem;
    }

    .hero-proof {
        padding: 0.95rem 0.9rem;
    }

    .pcard,
    .fcard {
        padding: 1.45rem 1.15rem 1.2rem;
    }

    .pcard__icon,
    .fcard__icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }

    .pcard h3,
    .fcard h3 {
        font-size: 1.08rem;
    }

    .pcard p,
    .fcard p {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .step {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0.9rem;
    }

    .step__num {
        width: 2.55rem;
        height: 2.55rem;
    }

    .step__title {
        font-size: 0.98rem;
    }

    .step__text {
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .step-visual {
        padding: 0.9rem;
        border-radius: var(--radius-lg);
    }

    .modal {
        padding: max(0.625rem, env(safe-area-inset-top)) 0.625rem max(0.75rem, env(safe-area-inset-bottom));
    }

    .legal-sheet__top {
        padding: 1.15rem 1rem 1rem;
    }

    .modal__header--contact {
        gap: 0.75rem;
        padding: 1rem 0.95rem 0.85rem;
    }

    .modal__brand-logo {
        width: 6.4rem;
    }

    .modal__dialog--contact .modal__header h3 {
        font-size: 1.3rem;
    }

    .modal__form--contact {
        gap: 1rem;
        padding: 0 0.95rem 1rem;
    }

    .modal__lede {
        font-size: 0.92rem;
    }

    .modal__dialog,
    .modal__dialog--contact {
        max-height: calc(100dvh - 0.75rem - env(safe-area-inset-bottom));
    }

    .form__check {
        flex-basis: 100%;
    }

    .form__grid {
        gap: 0.9rem;
    }

    .form__field label,
    .form__check-copy,
    .form__legal-link--inline {
        font-size: 0.82rem;
    }

    .modal__form--contact .modal__submit {
        min-width: 0;
    }

    .legal-sheet__copy h3 {
        font-size: 1.5rem;
    }

    .legal-sheet__intro {
        font-size: 0.95rem;
    }

    .legal-sheet__actions {
        width: 100%;
    }

    .legal-nav {
        padding: 0.85rem 0.9rem;
    }

    .legal-doc {
        padding: 1.15rem 1rem 1.5rem;
        font-size: 0.94rem;
    }

    .step-visual__frame {
        min-height: 19rem;
        border-radius: var(--radius-md);
    }

    .upload-card,
    .correlation-map,
    .priority-board,
    .trace-flow {
        inset: 0.85rem;
    }

    .upload-card__top {
        flex-wrap: wrap;
    }

    .upload-card__row {
        gap: 0.55rem;
        padding: 0.75rem 0.8rem;
    }

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

    .correlation-map__pill {
        min-height: 2.8rem;
        padding: 0.7rem 0.8rem;
        font-size: 0.72rem;
    }

    .correlation-map__links {
        width: 100%;
        height: 4rem;
    }

    .correlation-map__links span:nth-child(1),
    .correlation-map__links span:nth-child(2),
    .correlation-map__links span:nth-child(3) {
        left: 8%;
        right: 8%;
        transform: none;
    }

    .correlation-map__links span:nth-child(1) {
        top: 0.6rem;
    }

    .correlation-map__links span:nth-child(2) {
        top: 1.9rem;
    }

    .correlation-map__links span:nth-child(3) {
        top: 3.2rem;
        bottom: auto;
    }

    .correlation-map__beam {
        left: 12%;
        right: 12%;
        top: 38%;
        bottom: auto;
        width: auto;
        height: 18%;
    }

    .priority-board__chart {
        gap: 0.65rem;
        padding: 1rem;
    }

    .priority-board__item {
        padding: 0.8rem 0.9rem;
    }

    .trace-flow__entry {
        gap: 0.75rem;
    }

    .trace-flow__rail {
        top: 2.4rem;
        bottom: 2.4rem;
        left: 0.9rem;
    }

    .trace-flow__card {
        padding: 0.85rem 0.9rem 0.9rem 1rem;
    }

    .scene__chip {
        display: none;
    }

    .mock__row {
        grid-template-columns: 5rem 1fr;
    }

    .mock__pkg {
        display: none;
    }

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

    .problems,
    .features {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 2rem 1.15rem;
    }

    .cta__layout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .cta__panel {
        min-width: 0;
    }

    .cta__panel .btn {
        width: 100%;
        min-width: 0;
    }

    .cta h2 {
        font-size: clamp(1.7rem, 9vw, 2.25rem);
    }

    .cta__copy > p {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .footer__cols {
        flex-direction: column;
        gap: 2rem;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__legal {
        gap: 0.5rem 0.85rem;
        justify-content: flex-start;
    }

    .cookie-banner {
        left: max(0.75rem, env(safe-area-inset-left));
        right: max(0.75rem, env(safe-area-inset-right));
        width: auto;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .cookie-banner__text {
        font-size: 0.84rem;
    }

    .cookie-banner__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 639px) {
    .cookie-banner {
        right: max(0.625rem, env(safe-area-inset-right));
        bottom: max(0.625rem, env(safe-area-inset-bottom));
        left: max(0.625rem, env(safe-area-inset-left));
        padding: 0.95rem;
        border-radius: var(--radius-md);
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner__btn {
        min-width: 0;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .hero {
        min-height: 100dvh;
        display: flex;
        align-items: center;
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 3rem;
    }

    .hero__content {
        max-width: 35.5rem;
    }

    .hero h1 {
        font-size: clamp(2.3rem, 4.35vw, 3.85rem);
    }

    .hero__actions {
        margin-top: 1.6rem;
    }

    .hero__proof {
        gap: 0.85rem;
        margin-top: 1.75rem;
    }

    .hero-proof {
        padding: 1.05rem 1rem;
    }

    .hero-proof span {
        font-size: 0.84rem;
    }
}

@media (min-width: 992px) and (max-height: 860px) {
    .hero {
        min-height: auto;
        padding-top: 7.2rem;
    }
}

@media (min-width: 992px) and (max-height: 800px) {
    .hero {
        padding-top: 6.9rem;
        padding-bottom: 2rem;
    }

    .hero__grid {
        gap: 2.2rem;
    }

    .hero h1 {
        font-size: clamp(2.15rem, 3.95vw, 3.45rem);
    }

    .hero__sub {
        font-size: 1rem;
        line-height: 1.62;
    }

    .hero__actions {
        margin-top: 1.2rem;
    }

    .hero__proof {
        margin-top: 1.2rem;
    }

    .hero-proof {
        padding: 0.9rem;
    }

    .hero-proof strong {
        margin-bottom: 0.4rem;
        font-size: 0.88rem;
    }

    .hero-proof span {
        font-size: 0.78rem;
    }

    .scene-card {
        width: 13.5rem;
    }
}

@media (max-width: 820px) {
    .hero__proof {
        gap: 0;
        margin-top: 1.2rem;
    }

    .hero-proof {
        padding: 0.95rem 0;
        border: 0;
        border-bottom: 1px solid rgba(150, 180, 201, 0.12);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .hero-proof:last-child {
        border-bottom: 0;
    }

    .scene {
        padding-top: 0;
        gap: 0;
    }

    .scene::before,
    .scene::after,
    .scene__radar,
    .scene-card,
    .scene__chip {
        display: none;
    }

    .mock {
        border-radius: 18px;
        border-color: rgba(150, 180, 201, 0.08);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
    }

    .problems,
    .features {
        gap: 0.25rem;
    }

    .pcard,
    .fcard {
        min-height: 0;
        padding: 1.1rem 0 1.1rem;
        border: 0;
        border-bottom: 1px solid rgba(150, 180, 201, 0.12);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .pcard:last-child,
    .fcard:last-child {
        border-bottom: 0;
    }

    .pcard:hover,
    .fcard:hover {
        transform: none;
        border-color: rgba(150, 180, 201, 0.12);
        box-shadow: none;
    }

    .pcard__icon,
    .fcard__icon {
        width: 2.75rem;
        height: 2.75rem;
        margin-bottom: 0.85rem;
    }

    .steps__list {
        gap: 0.25rem;
    }

    .step {
        padding: 1rem 0;
        border: 0;
        border-bottom: 1px solid rgba(150, 180, 201, 0.12);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .step:last-child {
        border-bottom: 0;
    }

    .step:hover,
    .step:focus-visible,
    .step.is-active {
        transform: none;
        border-color: rgba(150, 180, 201, 0.12);
        background: transparent;
        box-shadow: none;
    }

    .step__num {
        border: 0;
        background: rgba(97, 231, 255, 0.1);
    }

    .step-visual {
        padding: 0.5rem 0 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .step-visual__frame {
        border-color: rgba(150, 180, 201, 0.08);
        box-shadow: none;
    }

    .cta {
        padding: 1.8rem 0 0;
        border: 0;
        border-top: 1px solid rgba(150, 180, 201, 0.12);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .cta::before {
        display: none;
    }

    .cta__panel {
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .footer__col {
        padding: 0.95rem 0 0;
        border-top: 1px solid rgba(150, 180, 201, 0.12);
    }

    .footer__col:first-child {
        padding-top: 0;
        border-top: 0;
    }
}

@media (max-width: 639px) {
    .hero-proof strong {
        font-size: 0.92rem;
    }

    .hero-proof span {
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .mock {
        border-radius: 16px;
    }

    .pcard,
    .fcard,
    .step {
        padding-top: 0.95rem;
        padding-bottom: 0.95rem;
    }

    .step-visual {
        padding-top: 0.35rem;
    }

    .step-visual__frame {
        min-height: 18rem;
        border-radius: 14px;
    }

    .cta {
        padding-top: 1.5rem;
    }

    .cta__layout {
        gap: 0.9rem;
    }
}

@media (max-width: 820px) {
    .hero::before,
    .section::before,
    .footer::before {
        display: none;
    }

    .section--alt {
        background: transparent;
    }

    .section__head {
        margin-bottom: 1.5rem;
        padding-bottom: 0.9rem;
        border-bottom: 1px solid rgba(150, 180, 201, 0.1);
    }

    .section__eyebrow {
        gap: 0.5rem;
        margin-bottom: 0.7rem;
        font-size: 0.66rem;
        letter-spacing: 0.14em;
    }

    .section__eyebrow::before {
        width: 1.45rem;
        box-shadow: none;
    }

    .hero__grid {
        gap: 2rem;
    }

    .hero__proof {
        margin-top: 1.1rem;
    }

    .hero-proof {
        padding: 0.9rem 0 0.9rem 0.95rem;
        border: 0;
        border-left: 2px solid rgba(97, 231, 255, 0.22);
        background: transparent;
    }

    .mock {
        border-color: rgba(150, 180, 201, 0.08);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    }

    .mock__bar {
        padding: 0.72rem 0.82rem;
        background: transparent;
    }

    .mock__body {
        gap: 0.78rem;
        padding: 0.85rem;
    }

    .mock__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.45rem;
    }

    .mock__stat {
        padding: 0.55rem 0.45rem 0.6rem;
        border: 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.035);
    }

    .mock__stat-n {
        margin-bottom: 0.2rem;
        font-size: 1.1rem;
    }

    .mock__stat-l {
        font-size: 0.58rem;
        letter-spacing: 0.1em;
    }

    .mock__table {
        border: 0;
        border-top: 1px solid rgba(150, 180, 201, 0.08);
        border-bottom: 1px solid rgba(150, 180, 201, 0.08);
        border-radius: 0;
    }

    .mock__row {
        padding: 0.68rem 0.12rem;
    }

    .mock__foot {
        padding: 0.72rem 0 0;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .problems,
    .features {
        gap: 0;
    }

    .pcard,
    .fcard {
        display: grid;
        grid-template-columns: 2.35rem 1fr;
        grid-template-areas:
            "icon title"
            ". text";
        column-gap: 0.95rem;
        row-gap: 0.25rem;
        padding: 1rem 0;
        border: 0;
        border-bottom: 1px solid rgba(150, 180, 201, 0.12);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .pcard__icon,
    .fcard__icon {
        grid-area: icon;
        width: 2.35rem;
        height: 2.35rem;
        margin: 0;
        border-radius: 0;
        background: transparent;
    }

    .pcard:nth-child(2) .pcard__icon,
    .pcard:nth-child(3) .pcard__icon,
    .fcard:nth-child(2) .fcard__icon,
    .fcard:nth-child(3) .fcard__icon,
    .fcard:nth-child(5) .fcard__icon,
    .fcard:nth-child(6) .fcard__icon {
        background: transparent;
    }

    .pcard h3,
    .fcard h3 {
        grid-area: title;
        margin: 0;
        font-size: 1rem;
        line-height: 1.35;
    }

    .pcard p,
    .fcard p {
        grid-area: text;
        max-width: none;
        margin: 0;
        font-size: 0.88rem;
        line-height: 1.58;
    }

    .steps {
        gap: 0.85rem;
    }

    .steps__list {
        gap: 0;
        counter-reset: mobile-steps;
    }

    .step {
        position: relative;
        counter-increment: mobile-steps;
        padding: 1rem 0 1rem 2.35rem;
        border: 0;
        border-bottom: 1px solid rgba(150, 180, 201, 0.12);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .step::before {
        content: counter(mobile-steps, decimal-leading-zero);
        position: absolute;
        top: 1rem;
        left: 0;
        color: rgba(97, 231, 255, 0.88);
        font-family: var(--font-mono);
        font-size: 0.68rem;
        font-weight: 500;
        letter-spacing: 0.16em;
    }

    .step.is-active::before {
        color: var(--ice);
    }

    .step__title {
        font-size: 0.98rem;
    }

    .step__text {
        font-size: 0.86rem;
        line-height: 1.58;
    }

    .step-visual {
        padding-top: 0.35rem;
    }

    .step-visual__meta {
        gap: 0.4rem;
        padding-bottom: 0.7rem;
        border-bottom: 1px solid rgba(150, 180, 201, 0.08);
    }

    .step-visual__frame {
        min-height: 18rem;
        border-width: 1px;
        border-radius: 14px;
    }

    .cta {
        padding-top: 1.45rem;
    }

    .cta__panel {
        padding-top: 0;
        border-top: 0;
    }

    .footer__top {
        gap: 1.6rem;
    }

    .footer__brand p,
    .footer__col a,
    .footer__bottom p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

@media (max-width: 639px) {
    .section {
        padding: 3.5rem 0;
    }

    .section__head {
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
    }

    .hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 2.55rem);
    }

    .hero__sub,
    .section__intro,
    .cta__copy > p {
        font-size: 0.92rem;
        line-height: 1.62;
    }

    .hero-proof {
        padding-left: 0.8rem;
    }

    .mock {
        border-radius: 14px;
    }

    .mock__body {
        padding: 0.78rem;
    }

    .mock__stats {
        gap: 0.35rem;
    }

    .mock__stat {
        padding: 0.5rem 0.38rem 0.56rem;
        border-radius: 10px;
    }

    .mock__stat-n {
        font-size: 1rem;
    }

    .mock__row {
        grid-template-columns: 4.55rem 1fr;
        gap: 0.55rem;
        padding: 0.62rem 0;
        font-size: 0.74rem;
    }

    .pcard,
    .fcard {
        grid-template-columns: 2.1rem 1fr;
        column-gap: 0.8rem;
        padding: 0.9rem 0;
    }

    .pcard__icon,
    .fcard__icon {
        width: 2.1rem;
        height: 2.1rem;
    }

    .pcard__icon svg,
    .fcard__icon svg {
        width: 1.1rem;
        height: 1.1rem;
    }

    .pcard h3,
    .fcard h3,
    .step__title {
        font-size: 0.95rem;
    }

    .pcard p,
    .fcard p,
    .step__text {
        font-size: 0.82rem;
        line-height: 1.54;
    }

    .step {
        padding: 0.9rem 0 0.9rem 2.1rem;
    }

    .step::before {
        top: 0.9rem;
        font-size: 0.65rem;
    }

    .step-visual__meta {
        padding-bottom: 0.6rem;
    }

    .step-visual__frame {
        min-height: 15.75rem;
        border-radius: 12px;
    }

    .cta {
        padding-top: 1.25rem;
    }

    .cta__layout {
        gap: 0.75rem;
    }

    .footer__top {
        gap: 1.3rem;
    }
}

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

    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }

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