:root {
    --lv3-bg: #00050e;
    --lv3-bg-soft: #030817;
    --lv3-navy: #061021;
    --lv3-indigo: #15143e;
    --lv3-blue: #1674ff;
    --lv3-violet: #6a18ff;
    --lv3-cyan: #20d9ff;
    --lv3-text: #f7f8ff;
    --lv3-muted: #a4adc2;
    --lv3-line: rgba(132, 151, 207, 0.2);
    --lv3-shell: 1344px;
    --lv3-gutter: 48px;
    --lv3-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 84px;
}

body {
    margin: 0;
}

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

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

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

img,
canvas {
    display: block;
}

.lv3-body {
    min-width: 320px;
    overflow-x: clip;
    background: var(--lv3-bg);
    color: var(--lv3-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

.lv3-body.lv3-drawer-open {
    overflow: hidden;
}

.lv3-shell {
    width: min(var(--lv3-shell), calc(100% - (var(--lv3-gutter) * 2)));
    margin-inline: auto;
}

.lv3-skip-link {
    position: fixed;
    z-index: 120;
    top: 12px;
    left: 12px;
    padding: 12px 16px;
    border-radius: 4px;
    background: #fff;
    color: #050814;
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

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

:focus-visible {
    outline: 2px solid var(--lv3-cyan);
    outline-offset: 4px;
}

.lv3-header {
    position: absolute;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    height: 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(0, 5, 14, 0.82), rgba(0, 5, 14, 0.12));
}

.lv3-header__inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.lv3-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    color: #fff;
}

.lv3-brand__mark {
    display: block;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 6px 22px rgba(43, 119, 255, 0.2);
}

.lv3-brand__copy {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
}

.lv3-brand__title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.lv3-brand__ai {
    padding: 2px 7px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: linear-gradient(135deg, #f0a1c8, #c084fc, #60a5fa, #34d399, #a3e635, #fbbf24);
    box-shadow: 0 0 8px rgba(192, 132, 252, 0.4);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.lv3-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.2vw, 38px);
    margin-left: auto;
}

.lv3-nav a,
.lv3-account-link {
    position: relative;
    color: rgba(232, 237, 252, 0.68);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.lv3-nav a::after {
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    height: 1px;
    background: var(--lv3-cyan);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lv3-nav a:hover,
.lv3-account-link:hover {
    color: #fff;
}

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

.lv3-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 20px;
}

.lv3-button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.045em;
    text-align: center;
    text-transform: uppercase;
    transition:
        transform 0.24s var(--lv3-ease),
        border-color 0.24s ease,
        background-color 0.24s ease,
        box-shadow 0.24s ease;
}

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

.lv3-button--small {
    min-height: 40px;
    padding-inline: 18px;
    font-size: 11px;
}

.lv3-button--primary {
    border-color: rgba(104, 151, 255, 0.58);
    background: linear-gradient(115deg, #1366f2 0%, #5c2fff 100%);
    box-shadow: 0 14px 36px rgba(40, 91, 255, 0.22);
    color: #fff;
}

.lv3-button--primary:hover {
    box-shadow: 0 18px 44px rgba(71, 87, 255, 0.36);
}

.lv3-button--ghost {
    border-color: rgba(163, 181, 226, 0.28);
    background: rgba(3, 12, 30, 0.48);
    color: rgba(244, 247, 255, 0.86);
}

.lv3-button--ghost:hover {
    border-color: rgba(198, 209, 244, 0.5);
    background: rgba(12, 24, 54, 0.76);
}

.lv3-button--light {
    background: #fff;
    color: #07102a;
}

.lv3-button--ghost-light {
    border-color: rgba(255, 255, 255, 0.48);
    background: rgba(3, 11, 40, 0.18);
    color: #fff;
}

.lv3-burger {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--lv3-line);
    border-radius: 3px;
    background: rgba(6, 16, 33, 0.66);
}

.lv3-burger span {
    display: block;
    width: 17px;
    height: 1px;
    margin: 5px auto;
    background: #fff;
}

.lv3-hero {
    position: relative;
    min-height: 1090px;
    overflow: hidden;
    border-bottom: 1px solid var(--lv3-line);
    background: var(--lv3-bg);
    isolation: isolate;
}

.lv3-hero::after {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 210px;
    background: linear-gradient(180deg, rgba(0, 5, 14, 0), var(--lv3-bg) 83%);
    content: "";
    pointer-events: none;
}

.lv3-hero__inner {
    position: relative;
    z-index: 4;
    min-height: 1090px;
}

.lv3-hero__planet {
    position: absolute;
    z-index: 0;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.lv3-hero__planet-image {
    position: absolute;
    top: -5px;
    right: auto;
    left: calc(50% - 920px);
    width: auto;
    max-width: none;
    height: 1100px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    user-select: none;
}

.lv3-halo-canvas {
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.lv3-halo-canvas.is-ready {
    opacity: 1;
}

.lv3-hero__copy {
    position: absolute;
    top: 286px;
    left: 24px;
    width: min(560px, 44vw);
}

.lv3-eyebrow {
    margin: 0 0 20px;
    color: #7e92bd;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lv3-hero h1,
.lv3-section-heading h2,
.lv3-capabilities h2,
.lv3-pricing h2,
.lv3-final h2 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.lv3-hero h1 {
    max-width: 580px;
    font-size: clamp(58px, 4.65vw, 68px);
    line-height: 1.055;
}

.lv3-hero h1 span {
    background: linear-gradient(90deg, #2f8cff, #8759ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lv3-hero__lead {
    max-width: 535px;
    margin: 28px 0 0;
    color: var(--lv3-muted);
    font-size: 16px;
    line-height: 1.7;
}

.lv3-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.lv3-orbit-callouts {
    position: absolute;
    top: 308px;
    left: 53.2%;
    width: 372px;
    min-height: 500px;
}

.lv3-callout-list {
    position: relative;
    min-height: 500px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lv3-callout {
    position: absolute;
    left: 0;
    display: flex;
    min-height: 56px;
    align-items: center;
    color: rgba(233, 240, 255, 0.8);
    opacity: 0.78;
    transform: translate3d(-22px, 0, 0) scale(0.96);
    transition:
        color 0.7s var(--lv3-ease),
        opacity 0.7s var(--lv3-ease),
        transform 0.7s var(--lv3-ease);
}

.lv3-callout:nth-child(1) { top: 0; left: 50px; }
.lv3-callout:nth-child(2) { top: 104px; left: 0; }
.lv3-callout:nth-child(3) { top: 210px; left: -20px; }
.lv3-callout:nth-child(4) { top: 316px; left: -8px; }
.lv3-callout:nth-child(5) { top: 422px; left: 28px; }

.lv3-callout.is-active {
    z-index: 2;
    color: #fff;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.lv3-callout__node {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border: 1px solid rgba(116, 174, 255, 0.88);
    border-radius: 50%;
    margin-right: 12px;
    background: rgba(22, 116, 255, 0.35);
    box-shadow: 0 0 0 6px rgba(41, 100, 255, 0.08);
}

.lv3-callout.is-active .lv3-callout__node {
    background: #9fdcff;
    box-shadow:
        0 0 0 8px rgba(42, 114, 255, 0.12),
        0 0 28px rgba(66, 137, 255, 0.9);
}

.lv3-callout__arrow {
    width: 62px;
    flex: 0 0 auto;
    overflow: hidden;
    margin-right: 14px;
    color: #81c4ff;
    font-size: 24px;
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: left center;
    transition:
        opacity 0.45s ease,
        transform 0.65s var(--lv3-ease);
}

.lv3-callout.is-active .lv3-callout__arrow {
    opacity: 1;
    transform: scaleX(1);
}

.lv3-callout__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 214px;
    padding: 9px 12px 10px;
    border: 1px solid rgba(118, 150, 224, 0.16);
    border-left-color: rgba(106, 185, 255, 0.42);
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(0, 5, 18, 0.84), rgba(2, 7, 24, 0.62));
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
    white-space: nowrap;
}

.lv3-callout__copy strong {
    color: rgba(246, 249, 255, 0.88);
    font-size: 12px;
    letter-spacing: 0.13em;
}

.lv3-callout__copy small {
    color: #bcc8df;
    font-size: 11px;
}

.lv3-callout.is-active .lv3-callout__copy {
    border-color: rgba(111, 166, 255, 0.32);
    border-left-color: #77cfff;
    background: linear-gradient(90deg, rgba(0, 7, 24, 0.96), rgba(5, 13, 42, 0.82));
    box-shadow:
        0 14px 38px rgba(0, 0, 0, 0.38),
        0 0 26px rgba(44, 126, 255, 0.1);
}

.lv3-callout.is-active .lv3-callout__copy strong {
    color: #fff;
}

.lv3-callout.is-active .lv3-callout__copy small {
    color: #d4deef;
}

.lv3-sequence {
    position: absolute;
    z-index: 5;
    bottom: 76px;
    left: 24px;
    display: grid;
    width: min(435px, 40vw);
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
}

.lv3-sequence__time {
    color: rgba(197, 208, 235, 0.56);
    font-size: 10px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.08em;
}

.lv3-sequence__track {
    position: relative;
    height: 1px;
    overflow: hidden;
    background: rgba(150, 172, 223, 0.25);
}

.lv3-sequence__fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--lv3-cyan), var(--lv3-violet));
    transform: scaleX(0);
    transform-origin: left center;
}

.lv3-sequence__dots {
    display: flex;
    grid-column: 2;
    align-items: center;
    justify-content: space-between;
    margin-top: -4px;
}

.lv3-sequence__dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(170, 187, 229, 0.3);
    transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.lv3-sequence__dots span.is-active {
    background: #8bdcff;
    box-shadow: 0 0 14px rgba(58, 168, 255, 0.94);
    transform: scale(1.7);
}

.lv3-proof {
    border-bottom: 1px solid var(--lv3-line);
    background: #020817;
}

.lv3-proof__grid {
    display: grid;
    min-height: 208px;
    grid-template-columns: repeat(4, 1fr);
}

.lv3-proof article {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 28px 34px;
    border-left: 1px solid var(--lv3-line);
}

.lv3-proof article:last-child {
    border-right: 1px solid var(--lv3-line);
}

.lv3-proof strong {
    font-size: clamp(44px, 4vw, 60px);
    font-weight: 300;
    letter-spacing: -0.055em;
    line-height: 1;
}

.lv3-proof strong span {
    color: #7e73ff;
    font-size: 0.42em;
    font-weight: 700;
    letter-spacing: 0;
}

.lv3-proof p {
    margin: 18px 0 0;
    color: #8490aa;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lv3-process {
    min-height: 560px;
    padding: 92px 0 88px;
    background: linear-gradient(180deg, #030916 0%, #020714 100%);
}

.lv3-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.lv3-section-heading .lv3-eyebrow {
    flex: 0 0 300px;
    margin: 0 0 10px;
}

.lv3-section-heading h2 {
    width: min(760px, 68%);
    font-size: clamp(40px, 3.45vw, 50px);
    line-height: 1.08;
}

.lv3-process__steps {
    display: grid;
    margin: 76px 0 0;
    padding: 0;
    grid-template-columns: repeat(5, 1fr);
    list-style: none;
}

.lv3-process .lv3-section-heading {
    display: block;
}

.lv3-process .lv3-section-heading .lv3-eyebrow {
    width: auto;
    margin-bottom: 16px;
}

.lv3-process .lv3-section-heading h2 {
    width: min(680px, 70%);
}

.lv3-process__steps li {
    position: relative;
    min-width: 0;
    padding: 0 27px 0 26px;
    border-left: 1px solid var(--lv3-line);
}

.lv3-process__steps li:last-child {
    border-right: 1px solid var(--lv3-line);
}

.lv3-process__number {
    display: block;
    margin-bottom: 20px;
    color: #64708b;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.lv3-process__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(84, 125, 227, 0.34);
    border-radius: 50%;
    background: rgba(17, 34, 74, 0.55);
    color: #8eb7ff;
    font-size: 17px;
}

.lv3-process h3 {
    margin: 25px 0 10px;
    font-size: 16px;
    letter-spacing: -0.02em;
}

.lv3-process p {
    margin: 0;
    color: #8d97ad;
    font-size: 12px;
    line-height: 1.65;
}

.lv3-capabilities {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    border-block: 1px solid rgba(95, 99, 220, 0.22);
    background: #14133c;
    isolation: isolate;
}

.lv3-capabilities::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 8, 30, 0.88) 0%, rgba(11, 11, 44, 0.34) 58%, rgba(4, 6, 25, 0.58) 100%);
    content: "";
}

.lv3-capabilities__visual {
    position: absolute;
    z-index: -2;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.lv3-capabilities__visual picture {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: clamp(1536px, 100vw, 3840px);
    transform: translateX(-50%);
}

.lv3-capabilities__image {
    position: absolute;
    top: calc(82% - clamp(541px, 35.25vw, 1354px));
    left: 0;
    width: 100%;
    max-width: none;
    height: auto;
    opacity: 0.82;
}

.lv3-capabilities__grid {
    display: grid;
    min-height: 470px;
    grid-template-columns: minmax(360px, 0.9fr) minmax(560px, 1.1fr);
    align-items: center;
    gap: 9%;
    padding-block: 60px;
}

.lv3-capabilities h2 {
    font-size: clamp(40px, 3.3vw, 48px);
    line-height: 1.08;
}

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

.lv3-capabilities__list article {
    display: grid;
    min-height: 150px;
    grid-template-columns: 34px 1fr;
    gap: 13px;
    padding: 24px 20px;
    border-top: 1px solid rgba(157, 166, 226, 0.17);
}

.lv3-capabilities__list article:nth-child(odd) {
    border-right: 1px solid rgba(157, 166, 226, 0.17);
}

.lv3-capabilities__list article > span {
    color: #7d88ae;
    font-size: 10px;
    font-weight: 800;
}

.lv3-capabilities__list h3 {
    margin: 0 0 9px;
    font-size: 16px;
}

.lv3-capabilities__list p {
    margin: 0;
    color: #adb4cf;
    font-size: 12px;
    line-height: 1.6;
}

.lv3-pricing {
    padding: 96px 0 90px;
    background: #020713;
}

.lv3-pricing__top {
    display: grid;
    grid-template-columns: minmax(440px, 0.9fr) minmax(560px, 1.1fr);
    align-items: center;
    gap: 48px;
}

.lv3-pricing__copy {
    position: relative;
    z-index: 2;
    padding-left: 24px;
}

.lv3-pricing__title-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.lv3-pricing h2 {
    font-size: clamp(45px, 3.8vw, 56px);
    line-height: 1.04;
}

.lv3-discount {
    padding: 7px 10px;
    border: 1px solid rgba(106, 101, 255, 0.48);
    border-radius: 2px;
    background: rgba(93, 44, 255, 0.13);
    color: #afa6ff;
    font-size: 11px;
    font-weight: 800;
}

.lv3-pricing__description {
    max-width: 560px;
    margin: 24px 0 0;
    color: var(--lv3-muted);
    font-size: 15px;
    line-height: 1.7;
}

.lv3-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    margin: 26px 0 30px;
}

.lv3-price__old {
    width: 100%;
    color: #768099;
    font-size: 15px;
    text-decoration: line-through;
}

.lv3-price strong {
    font-size: clamp(38px, 3.4vw, 50px);
    font-weight: 300;
    letter-spacing: -0.055em;
    line-height: 1;
}

.lv3-price > span:last-child {
    color: #8994ac;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lv3-pricing__orbit {
    position: relative;
    min-height: 0;
    aspect-ratio: 2.35 / 1;
    overflow: hidden;
    background: transparent;
}

.lv3-pricing__orbit picture {
    position: absolute;
    inset: 0;
    display: block;
    -webkit-mask-image:
        linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
        linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
        linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
    mask-composite: intersect;
}

.lv3-pricing__orbit img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.12);
}

.lv3-pricing__orbit-label {
    position: absolute;
    z-index: 1;
    color: rgba(244, 247, 255, 0.9);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.94);
    white-space: nowrap;
}

.lv3-pricing__orbit-label--one { top: 22%; left: 6%; }
.lv3-pricing__orbit-label--two { top: 14%; right: 9%; }
.lv3-pricing__orbit-label--three { bottom: 18%; left: 8%; }
.lv3-pricing__orbit-label--four { right: 5%; bottom: 18%; }

.lv3-pricing__features {
    display: grid;
    margin-top: 44px;
    padding: 28px 24px 0;
    border-top: 1px solid var(--lv3-line);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 42px;
}

.lv3-pricing__features div {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 12px;
    color: #b5bed1;
    font-size: 13px;
}

.lv3-pricing__features i {
    margin-top: 4px;
    color: #6f69ff;
    font-size: 9px;
}

.lv3-faq {
    padding: 84px 0 94px;
    border-top: 1px solid var(--lv3-line);
    background: #030817;
}

.lv3-section-heading--compact {
    align-items: center;
    margin-bottom: 48px;
}

.lv3-section-heading--compact h2 {
    width: auto;
}

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

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

.lv3-faq details:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--lv3-line);
}

.lv3-faq summary {
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    color: #dce2f1;
    font-size: 14px;
    font-weight: 650;
    list-style: none;
}

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

.lv3-faq summary i {
    flex: 0 0 auto;
    color: #7786a9;
    font-size: 11px;
    transition: transform 0.25s ease;
}

.lv3-faq details[open] summary i {
    transform: rotate(45deg);
}

.lv3-faq details p {
    margin: -4px 38px 24px 0;
    color: #8f9ab3;
    font-size: 13px;
    line-height: 1.65;
}

.lv3-final {
    padding: 54px 0;
    background: var(--lv3-bg);
}

.lv3-final__panel {
    position: relative;
    min-height: 292px;
    overflow: hidden;
    border: 1px solid rgba(122, 126, 255, 0.34);
    border-radius: 4px;
    background: #07174f;
    box-shadow: 0 34px 90px rgba(12, 27, 100, 0.28);
    isolation: isolate;
}

.lv3-final__panel::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 22, 74, 0.24), rgba(10, 18, 67, 0) 70%);
    content: "";
}

.lv3-final__panel > img {
    position: absolute;
    z-index: -2;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.lv3-final__content {
    width: min(650px, 66%);
    padding: 44px 0 42px 52px;
}

.lv3-final__content .lv3-eyebrow {
    margin-bottom: 12px;
    color: #93b6ff;
}

.lv3-final h2 {
    font-size: clamp(38px, 3.2vw, 46px);
    line-height: 1.03;
}

.lv3-final__content > p:not(.lv3-eyebrow) {
    max-width: 540px;
    margin: 15px 0 0;
    color: rgba(232, 238, 255, 0.76);
    font-size: 14px;
}

.lv3-final__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 27px;
}

.lv3-final__actions .lv3-button {
    min-height: 48px;
    padding-inline: 21px;
    font-size: 11px;
}

.lv3-footer {
    border-top: 1px solid var(--lv3-line);
    background: #00040c;
}

.lv3-footer__top {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.lv3-footer__top nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px 30px;
}

.lv3-footer__top nav a {
    color: #818ca3;
    font-size: 11px;
    transition: color 0.2s ease;
}

.lv3-footer__top nav a:hover {
    color: #fff;
}

.lv3-footer__legal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding-block: 18px 28px;
    border-top: 1px solid rgba(132, 151, 207, 0.12);
}

.lv3-footer__legal p {
    max-width: 620px;
    margin: 0;
    color: #626d83;
    font-size: 11px;
    line-height: 1.6;
}

.lv3-drawer-backdrop {
    position: fixed;
    z-index: 80;
    inset: 0;
    background: rgba(0, 3, 10, 0.72);
    backdrop-filter: blur(8px);
}

.lv3-drawer {
    position: fixed;
    z-index: 90;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(410px, 92vw);
    flex-direction: column;
    padding: 22px;
    border-left: 1px solid var(--lv3-line);
    background: #040b1a;
    box-shadow: -30px 0 90px rgba(0, 0, 0, 0.45);
    transform: translateX(104%);
    transition: transform 0.4s var(--lv3-ease);
}

.lv3-drawer.is-open {
    transform: translateX(0);
}

.lv3-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lv3-drawer__head button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--lv3-line);
    border-radius: 3px;
    background: transparent;
    color: #fff;
}

.lv3-drawer__nav {
    display: flex;
    flex-direction: column;
    margin-top: 54px;
    border-top: 1px solid var(--lv3-line);
}

.lv3-drawer__nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--lv3-line);
    color: #dfe5f3;
    font-size: 15px;
}

.lv3-drawer__actions {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.lv3-motion-ready [data-lv3-reveal]:not(.is-revealed) {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
}

[data-lv3-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1180px) {
    :root {
        --lv3-gutter: 40px;
    }

    .lv3-nav {
        display: none;
    }

    .lv3-burger {
        display: block;
    }

    .lv3-hero {
        min-height: 960px;
    }

    .lv3-hero__inner {
        min-height: 960px;
    }

    .lv3-hero__planet-image {
        top: -20px;
        right: -390px;
        left: auto;
        width: 1700px;
        height: auto;
    }

    .lv3-hero__copy {
        top: 235px;
        left: 8px;
        width: 510px;
    }

    .lv3-hero h1 {
        font-size: 56px;
    }

    .lv3-orbit-callouts {
        top: 256px;
        left: 58%;
        transform: scale(0.9);
        transform-origin: top left;
    }

    .lv3-sequence {
        bottom: 56px;
        left: 8px;
    }

    .lv3-proof article {
        padding-inline: 24px;
    }

    .lv3-process__steps li {
        padding-inline: 18px;
    }

    .lv3-process p {
        font-size: 11px;
    }

    .lv3-capabilities__grid,
    .lv3-pricing__top {
        grid-template-columns: 44% 56%;
        gap: 24px;
    }
}

@media (max-width: 860px) {
    :root {
        --lv3-gutter: 32px;
    }

    .lv3-header__actions .lv3-account-link,
    .lv3-header__actions > .lv3-button {
        display: none;
    }

    .lv3-hero,
    .lv3-hero__inner {
        min-height: 980px;
    }

    .lv3-hero__planet-image {
        top: -20px;
        right: -440px;
        width: 1390px;
        height: auto;
        opacity: 0.82;
    }

    .lv3-hero__copy {
        top: 190px;
        left: 0;
        width: min(560px, 82vw);
    }

    .lv3-hero h1 {
        font-size: clamp(45px, 7.1vw, 54px);
    }

    .lv3-orbit-callouts {
        top: auto;
        right: auto;
        bottom: 118px;
        left: 0;
        width: calc(100vw - 64px);
        min-height: 82px;
        transform: none;
    }

    .lv3-callout-list {
        min-height: 82px;
    }

    .lv3-callout {
        inset: 0 auto auto 0 !important;
        width: 100%;
        min-height: 60px;
        opacity: 0;
        pointer-events: none;
        transform: translate3d(0, 12px, 0);
    }

    .lv3-callout.is-active {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .lv3-callout__copy {
        white-space: normal;
    }

    .lv3-static-motion .lv3-hero,
    .lv3-static-motion .lv3-hero__inner {
        min-height: 1080px;
    }

    .lv3-static-motion .lv3-orbit-callouts {
        bottom: 112px;
        min-height: 190px;
    }

    .lv3-static-motion .lv3-callout-list {
        display: grid;
        min-height: 190px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 18px;
    }

    .lv3-static-motion .lv3-callout {
        position: relative;
        inset: auto !important;
        width: auto;
        min-height: 50px;
        opacity: 0.68;
        pointer-events: auto;
        transform: none;
    }

    .lv3-static-motion .lv3-callout.is-active {
        opacity: 1;
    }

    .lv3-static-motion .lv3-callout__arrow {
        display: none;
    }

    .lv3-sequence {
        bottom: 55px;
        left: 0;
        width: min(470px, 75vw);
    }

    .lv3-proof__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lv3-proof article {
        min-height: 160px;
        border-bottom: 1px solid var(--lv3-line);
    }

    .lv3-proof article:nth-child(even) {
        border-right: 1px solid var(--lv3-line);
    }

    .lv3-process {
        padding-block: 78px;
    }

    .lv3-section-heading {
        display: block;
    }

    .lv3-section-heading .lv3-eyebrow,
    .lv3-section-heading h2 {
        width: auto;
    }

    .lv3-process__steps {
        display: block;
        margin-top: 58px;
        border-top: 1px solid var(--lv3-line);
    }

    .lv3-process__steps li {
        display: grid;
        min-height: 142px;
        grid-template-columns: 46px 62px 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        gap: 0 18px;
        padding: 24px 0;
        border-right: 0 !important;
        border-bottom: 1px solid var(--lv3-line);
        border-left: 0;
    }

    .lv3-process__number {
        grid-row: 1 / span 2;
        margin: 0;
    }

    .lv3-process__icon {
        grid-row: 1 / span 2;
    }

    .lv3-process h3 {
        align-self: end;
        margin: 0 0 4px;
    }

    .lv3-process p {
        align-self: start;
        font-size: 12px;
    }

    .lv3-capabilities__grid,
    .lv3-pricing__top {
        display: block;
        padding-block: 72px;
    }

    .lv3-capabilities__list {
        margin-top: 48px;
    }

    .lv3-pricing__copy {
        padding-left: 0;
    }

    .lv3-pricing__orbit {
        min-height: 0;
        margin-top: 44px;
    }

    .lv3-pricing__orbit img {
        height: 100%;
    }

    .lv3-pricing__features {
        margin-top: 0;
        padding-inline: 0;
    }

    .lv3-faq__grid {
        grid-template-columns: 1fr;
    }

    .lv3-faq details:nth-last-child(2) {
        border-bottom: 0;
    }

    .lv3-final__content {
        width: 72%;
        padding-left: 36px;
    }

    .lv3-footer__top,
    .lv3-footer__legal {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 28px;
    }

    .lv3-footer__top nav {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    :root {
        --lv3-gutter: 20px;
    }

    .lv3-header {
        height: 68px;
    }

    .lv3-brand__mark {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .lv3-brand__title {
        gap: 5px;
        font-size: 15px;
    }

    .lv3-brand__ai {
        padding: 2px 7px;
        font-size: 11px;
    }

    .lv3-hero,
    .lv3-hero__inner {
        min-height: 900px;
    }

    .lv3-static-motion .lv3-hero,
    .lv3-static-motion .lv3-hero__inner {
        min-height: 1040px;
    }

    .lv3-hero__planet-image {
        top: 24px;
        right: -405px;
        width: 1070px;
        height: auto;
        opacity: 0.7;
    }

    .lv3-halo-canvas.is-ready {
        opacity: 0.82;
    }

    .lv3-hero::after {
        height: 340px;
    }

    .lv3-hero__copy {
        top: 172px;
        width: 100%;
    }

    .lv3-eyebrow {
        margin-bottom: 14px;
        font-size: 10px;
    }

    .lv3-hero h1 {
        font-size: clamp(39px, 11.2vw, 44px);
        line-height: 1.045;
    }

    .lv3-hero__lead {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.62;
    }

    .lv3-hero__actions {
        display: grid;
        gap: 10px;
        margin-top: 28px;
    }

    .lv3-hero__actions .lv3-button {
        width: 100%;
        min-height: 52px;
    }

    .lv3-orbit-callouts {
        bottom: 106px;
        width: 100%;
    }

    .lv3-callout__arrow {
        width: 40px;
        font-size: 18px;
    }

    .lv3-callout__copy strong {
        font-size: 11px;
    }

    .lv3-callout__copy small {
        font-size: 10px;
    }

    .lv3-static-motion .lv3-callout__copy small {
        display: none;
    }

    .lv3-static-motion .lv3-orbit-callouts,
    .lv3-static-motion .lv3-callout-list {
        min-height: 282px;
    }

    .lv3-static-motion .lv3-callout-list {
        grid-template-columns: 1fr;
    }

    .lv3-static-motion .lv3-callout__copy {
        width: 100%;
        min-width: 0;
    }

    .lv3-sequence {
        bottom: 40px;
        width: 100%;
    }

    .lv3-proof article {
        min-height: 134px;
        padding: 22px 16px;
    }

    .lv3-proof strong {
        font-size: 36px;
    }

    .lv3-proof p {
        margin-top: 13px;
        font-size: 8px;
        line-height: 1.5;
    }

    .lv3-process {
        padding-block: 66px;
    }

    .lv3-section-heading h2,
    .lv3-capabilities h2 {
        font-size: 35px;
    }

    .lv3-process__steps {
        margin-top: 44px;
    }

    .lv3-process__steps li {
        min-height: 132px;
        grid-template-columns: 26px 48px 1fr;
        gap: 0 13px;
    }

    .lv3-process__icon {
        width: 42px;
        height: 42px;
    }

    .lv3-capabilities__grid {
        padding-block: 66px;
    }

    .lv3-capabilities__list {
        display: block;
        margin-top: 38px;
    }

    .lv3-capabilities__list article {
        min-height: 0;
        padding: 20px 0;
        border-right: 0 !important;
    }

    .lv3-pricing {
        padding: 70px 0 62px;
    }

    .lv3-pricing__copy,
    .lv3-pricing__title-row {
        min-width: 0;
    }

    .lv3-pricing__copy {
        padding-left: 0;
    }

    .lv3-pricing h2 {
        max-width: 100%;
        font-size: clamp(35px, 9vw, 42px);
    }

    .lv3-pricing__description {
        font-size: 14px;
    }

    .lv3-price strong {
        font-size: 40px;
    }

    .lv3-pricing__copy .lv3-button {
        width: 100%;
    }

    .lv3-pricing__orbit {
        min-height: 0;
        aspect-ratio: 1.82 / 1;
        margin-top: 40px;
    }

    .lv3-pricing__orbit img {
        height: 100%;
    }

    .lv3-pricing__orbit-label {
        max-width: 46%;
        font-size: 9px;
        white-space: normal;
    }

    .lv3-pricing__orbit-label--one { top: 5%; left: 0; }
    .lv3-pricing__orbit-label--two { top: 3%; right: 0; text-align: right; }
    .lv3-pricing__orbit-label--three { bottom: 3%; left: 0; }
    .lv3-pricing__orbit-label--four { right: 0; bottom: 3%; text-align: right; }

    .lv3-pricing__features {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .lv3-faq {
        padding-block: 66px;
    }

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

    .lv3-faq summary {
        min-height: 68px;
        font-size: 13px;
    }

    .lv3-final {
        padding-block: 28px;
    }

    .lv3-final__panel {
        min-height: 450px;
    }

    .lv3-final__panel > img {
        opacity: 0.7;
        object-position: 62% center;
    }

    .lv3-final__panel::after {
        background: linear-gradient(180deg, rgba(5, 17, 60, 0.18), rgba(4, 11, 38, 0.92) 66%);
    }

    .lv3-final__content {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        padding: 28px 22px;
    }

    .lv3-final h2 {
        font-size: 37px;
    }

    .lv3-final__actions {
        display: grid;
    }

    .lv3-footer__top nav {
        display: grid;
        gap: 15px;
    }

    .lv3-footer__legal {
        gap: 12px;
    }
}

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

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

    .lv3-halo-canvas {
        display: none;
    }

    .lv3-callout {
        opacity: 0.62;
        transform: none;
    }

    .lv3-callout.is-active {
        opacity: 1;
    }

    .lv3-motion-ready [data-lv3-reveal]:not(.is-revealed) {
        opacity: 1;
        transform: none;
    }
}
