:root {
    --lp-font-body: "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
    --lp-font-display: "Segoe UI Variable Display", "Segoe UI Variable Text", "Segoe UI", system-ui, sans-serif;
    --lp-bg: #050914;
    --lp-surface: rgba(11, 17, 29, 0.9);
    --lp-surface-strong: rgba(17, 25, 40, 0.96);
    --lp-surface-elevated: rgba(24, 34, 54, 0.94);
    --lp-border: rgba(148, 163, 184, 0.16);
    --lp-border-strong: rgba(98, 188, 255, 0.22);
    --lp-text: #eef4ff;
    --lp-text-soft: #8ea2c5;
    --lp-text-muted: #60738f;
    --lp-accent: #21c77a;
    --lp-accent-alt: #3e98ff;
    --lp-accent-soft: rgba(33, 199, 122, 0.16);
    --lp-accent-alt-soft: rgba(62, 152, 255, 0.16);
    --lp-shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.34);
    --lp-shadow-deep: 0 40px 100px rgba(0, 0, 0, 0.46);
    --lp-radius-xl: 36px;
    --lp-radius-lg: 28px;
    --lp-radius-md: 22px;
}

html,
body.marketing-shell {
    background:
        radial-gradient(circle at top left, rgba(26, 56, 110, 0.34), transparent 28%),
        radial-gradient(circle at top right, rgba(18, 92, 74, 0.28), transparent 24%),
        linear-gradient(180deg, #050914 0%, #08101d 55%, #050914 100%) !important;
}

body.marketing-shell {
    font-family: var(--lp-font-body);
    color: var(--lp-text);
}

.finance-page-shell--marketing {
    position: relative;
    min-height: 100vh;
    padding: 18px 0 92px;
    overflow-x: clip;
    background: transparent;
}

.finance-page-shell--marketing::before,
.finance-page-shell--marketing::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.finance-page-shell--marketing::before {
    background:
        linear-gradient(transparent 0, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 86%);
    opacity: 0.34;
}

.finance-page-shell--marketing::after {
    background:
        radial-gradient(circle at 14% 14%, rgba(62, 152, 255, 0.18), transparent 22%),
        radial-gradient(circle at 84% 12%, rgba(33, 199, 122, 0.16), transparent 20%),
        radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.04), transparent 30%);
}

.lp-shell,
.checkout-shell {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.lp-shell {
    display: grid;
    gap: 28px;
}

.lp-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lp-alert,
.lp-topbar,
.lp-command__card,
.lp-step,
.lp-intelligence,
.lp-intelligence__card,
.lp-store-card,
.lp-plan,
.lp-app-band,
.lp-bottom,
.checkout-hero__copy,
.checkout-panel,
.checkout-option {
    position: relative;
    border: 1px solid var(--lp-border);
    background: linear-gradient(180deg, rgba(12, 18, 31, 0.92), rgba(8, 13, 24, 0.96));
    box-shadow: var(--lp-shadow-soft);
    backdrop-filter: blur(18px);
}

.lp-brand,
.lp-link,
.lp-button,
.lp-store-card,
.checkout-back {
    text-decoration: none;
}

.lp-alert,
.lp-topbar,
.lp-hero__content,
.lp-hero__visual,
.lp-hero__pills,
.lp-section-head,
.lp-spotlight__media,
.lp-step,
.lp-intelligence,
.lp-app-band,
.lp-plan,
.lp-bottom,
.checkout-header,
.checkout-hero__copy,
.checkout-panel,
.checkout-alternatives,
.checkout-option {
    transform: translate3d(0, var(--lp-reveal-y, 0px), 0);
    transition:
        opacity 520ms ease,
        transform 520ms ease,
        box-shadow 220ms ease,
        border-color 220ms ease,
        background 220ms ease;
}

.lp-device,
.lp-hero__note,
.lp-command__card,
.lp-intelligence__card,
.lp-store-card {
    transform: translate3d(0, calc(var(--lp-offset-y, 0px) + var(--lp-reveal-y, 0px)), 0) rotateX(var(--lp-tilt-x, 0deg)) rotateY(var(--lp-tilt-y, 0deg));
    transition:
        opacity 520ms ease,
        transform 260ms ease,
        box-shadow 260ms ease,
        border-color 220ms ease,
        background 220ms ease,
        filter 260ms ease;
}

.lp-alert {
    padding: 16px 18px;
    border-radius: 20px;
    color: var(--lp-text);
}

.lp-alert.is-success {
    background: linear-gradient(180deg, rgba(14, 44, 34, 0.92), rgba(8, 20, 18, 0.96));
    border-color: rgba(33, 199, 122, 0.24);
}

.lp-alert.is-warning {
    background: linear-gradient(180deg, rgba(54, 34, 14, 0.92), rgba(24, 14, 8, 0.96));
    border-color: rgba(255, 184, 77, 0.18);
}

.lp-hero-desktop {
    display: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 100svh;
    min-height: 100svh;
}

.lp-hero-desktop__canvas {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100svh;
    min-height: 100svh;
    background: transparent;
}

.lp-hero-desktop__canvas::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 9, 20, 0.42) 0%, rgba(5, 9, 20, 0.16) 34%, transparent 56%),
        linear-gradient(180deg, rgba(5, 9, 20, 0.08), rgba(5, 9, 20, 0.14));
    pointer-events: none;
    z-index: 1;
}

.lp-hero-desktop__canvas img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 58%;
    z-index: 0;
}

.lp-topbar--desktop {
    position: absolute;
    top: 22px;
    left: 3.4%;
    right: 3.4%;
    z-index: 4;
}

.lp-hero-desktop__copy {
    position: absolute;
    left: 4%;
    top: 20%;
    width: min(33%, 520px);
    display: grid;
    gap: 24px;
    z-index: 3;
}

.lp-hero-desktop__copy h1 {
    margin: 0;
    color: var(--lp-text);
    font-family: var(--lp-font-display);
    font-size: clamp(2.8rem, 5.2vw, 6.2rem);
    font-weight: 620;
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.lp-hero-desktop__copy p {
    max-width: 18ch;
    margin: 0;
    color: var(--lp-text-soft);
    font-size: clamp(1.05rem, 1.4vw, 1.4rem);
    line-height: 1.56;
}

.lp-hero-desktop__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lp-hero-desktop__actions .lp-button {
    min-height: 56px;
    padding: 0 28px;
    font-size: 1.08rem;
}

.lp-topbar {
    position: sticky;
    top: 18px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 18px;
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(4, 9, 18, 0.96), rgba(4, 12, 24, 0.92)),
        radial-gradient(circle at top left, rgba(31, 114, 255, 0.16), transparent 36%);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--lp-text);
}

.lp-brand__mark {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #14a96d 0%, #0f7cba 100%);
    color: #ffffff;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    box-shadow: 0 16px 30px rgba(15, 124, 186, 0.24);
}

.lp-brand strong,
.lp-brand small {
    display: block;
}

.lp-brand strong {
    font-family: var(--lp-font-display);
    font-size: 1rem;
    font-weight: 640;
    letter-spacing: -0.02em;
}

.lp-brand small {
    color: var(--lp-text-soft);
    font-size: 0.73rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lp-topbar__actions,
.lp-hero__actions,
.lp-bottom__actions,
.checkout-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--lp-text-soft);
    font-size: 0.94rem;
    font-weight: 540;
    transition: color 180ms ease, background 180ms ease;
}

.lp-link:hover {
    color: var(--lp-text);
    background: rgba(255, 255, 255, 0.05);
}

.lp-button {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease;
}

.lp-button:hover {
    transform: translateY(-1px);
}

.lp-button--primary {
    background: linear-gradient(135deg, #14a96d 0%, #0f7cba 100%);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 124, 186, 0.24);
}

.lp-button--secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--lp-border);
    color: var(--lp-text);
}

.lp-button--secondary:hover {
    border-color: var(--lp-border-strong);
    background: rgba(255, 255, 255, 0.07);
}

.lp-eyebrow,
.checkout-eyebrow,
.lp-plan__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--lp-accent);
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lp-eyebrow::before,
.checkout-eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: rgba(33, 199, 122, 0.44);
}

.lp-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    gap: 34px;
    align-items: center;
    padding-top: 8px;
}

.lp-hero__content {
    display: grid;
    gap: 24px;
}

.lp-hero__content h1,
.lp-section-head h2,
.lp-intelligence__copy h2,
.lp-app-band__copy h2,
.lp-bottom h2,
.checkout-hero__copy h1,
.checkout-section-head h2 {
    margin: 0;
    color: var(--lp-text);
    font-family: var(--lp-font-display);
    font-weight: 620;
    letter-spacing: -0.045em;
}

.lp-hero__content h1 {
    max-width: 9ch;
    font-size: clamp(3.25rem, 5vw, 5.1rem);
    line-height: 0.94;
}

.lp-hero__content > p,
.lp-section-head p,
.lp-intelligence__copy p,
.lp-app-band__copy p,
.lp-bottom p,
.checkout-hero__copy p,
.checkout-option p,
.checkout-panel__note,
.checkout-price small {
    margin: 0;
    color: var(--lp-text-soft);
    font-size: 1rem;
    line-height: 1.65;
}

.lp-hero__content > p {
    max-width: 36ch;
}

.lp-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lp-hero__pills span,
.checkout-tag {
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid var(--lp-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--lp-text);
    font-size: 0.9rem;
    font-weight: 540;
}

.lp-hero__visual {
    position: relative;
    min-height: 700px;
    padding: 28px 0;
}

.lp-hero__halo {
    position: absolute;
    inset: 6% 4% 8% 8%;
    border-radius: 44px;
    background:
        radial-gradient(circle at 18% 24%, rgba(33, 199, 122, 0.24), transparent 22%),
        radial-gradient(circle at 82% 20%, rgba(62, 152, 255, 0.22), transparent 24%),
        radial-gradient(circle at 52% 0%, rgba(255, 255, 255, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(13, 20, 34, 0.78), rgba(5, 9, 18, 0.18));
    border: 1px solid rgba(148, 163, 184, 0.08);
    filter: blur(0.2px);
    animation: lp-halo-pulse 10s ease-in-out infinite;
}

.lp-hero__note {
    position: absolute;
    right: 2%;
    bottom: 9%;
    z-index: 6;
    max-width: 260px;
    padding: 18px 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(98, 188, 255, 0.18);
    background: linear-gradient(180deg, rgba(12, 18, 31, 0.92), rgba(8, 13, 24, 0.96));
    box-shadow: var(--lp-shadow-soft);
}

.lp-hero__note span,
.lp-command__card span,
.lp-intelligence__card span,
.lp-stage-card span,
.lp-store-card small,
.checkout-panel__visual-copy span,
.checkout-option__head span {
    color: var(--lp-accent);
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lp-hero__note strong,
.lp-command__card h3,
.lp-step h3,
.lp-intelligence__card h3,
.checkout-panel__visual-copy strong,
.checkout-option__head h3,
.lp-plan__head h3 {
    display: block;
    margin-top: 10px;
    color: var(--lp-text);
    font-family: var(--lp-font-display);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.24;
    letter-spacing: -0.03em;
}

.lp-hero__note small {
    display: block;
    margin-top: 10px;
    color: var(--lp-text-soft);
    line-height: 1.56;
}

.lp-device-cluster {
    position: relative;
    min-height: 640px;
}

.lp-hero__art {
    position: relative;
    width: min(100%, 860px);
    min-height: 620px;
    margin-left: auto;
    border-radius: 38px;
    overflow: hidden;
    border: 1px solid rgba(98, 188, 255, 0.12);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.36);
}

.lp-hero__art::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 9, 18, 0.84) 0%, rgba(5, 9, 18, 0.24) 24%, rgba(5, 9, 18, 0) 42%),
        linear-gradient(180deg, rgba(5, 9, 18, 0.04), rgba(5, 9, 18, 0.14));
    pointer-events: none;
}

.lp-hero__art img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 74% 50%;
    transform: scale(1.02);
}

.lp-hero__art--mobile-shot {
    width: min(100%, 380px);
    min-height: 0;
    aspect-ratio: 403 / 791;
    margin-left: auto;
    margin-right: auto;
}

.lp-hero__art--mobile-shot::after {
    background:
        linear-gradient(180deg, rgba(5, 9, 18, 0.02), rgba(5, 9, 18, 0.12));
}

.lp-hero__art--mobile-shot img {
    object-fit: contain;
    object-position: center top;
    transform: none;
}

.lp-device {
    position: absolute;
    z-index: 3;
    color: var(--lp-text);
}

.lp-device:hover,
.lp-hero__note:hover,
.lp-command__card:hover,
.lp-intelligence__card:hover,
.lp-store-card:hover,
.lp-plan:hover {
    box-shadow: var(--lp-shadow-deep);
}

.lp-device img {
    width: 100%;
    height: 100%;
    display: block;
}

.lp-device--tablet {
    left: 4%;
    top: 4%;
    width: clamp(248px, 24vw, 308px);
    aspect-ratio: 0.76 / 1;
    z-index: 2;
}

.lp-device__hardware--tablet {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 12px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(145deg, #0c121d 0%, #252f3f 45%, #0a101a 100%);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.24),
        inset 0 -2px 6px rgba(0, 0, 0, 0.48),
        0 28px 70px rgba(0, 0, 0, 0.34);
}

.lp-device__hardware--tablet::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.44), rgba(48, 59, 77, 0.36));
    transform: translateX(-50%);
    z-index: 2;
}

.lp-device__screen--tablet {
    height: 100%;
    border-radius: 22px;
    background: #020813;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.lp-device__screen--tablet img {
    position: absolute;
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-radius: 18px;
    object-fit: cover;
    object-position: center top;
}

.lp-device--macbook {
    left: 24%;
    right: 0;
    top: 18%;
    z-index: 3;
}

.lp-device__hardware--macbook {
    position: relative;
    display: grid;
    justify-items: center;
}

.lp-device__screen {
    position: relative;
    overflow: hidden;
}

.lp-device__screen--desktop {
    width: 100%;
    aspect-ratio: 16 / 10;
    padding: 14px;
    border-radius: 30px 30px 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(180deg, #121926 0%, #060b14 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 40px 90px rgba(0, 0, 0, 0.44);
}

.lp-device__screen--desktop::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.44), rgba(48, 59, 77, 0.36));
    transform: translateX(-50%);
    z-index: 2;
}

.lp-device__screen--desktop::after,
.lp-device__screen:not(.lp-device__screen--desktop)::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(122deg, rgba(255, 255, 255, 0.12), transparent 24%, transparent 62%, rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
}

.lp-device__screen--desktop img {
    position: absolute;
    inset: 14px;
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    border-radius: 18px;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.01);
    filter: saturate(1.02) contrast(1.01);
}

.lp-device__base {
    position: relative;
    width: 108%;
    height: 28px;
    margin-top: -2px;
    border-radius: 0 0 38px 38px;
    background:
        linear-gradient(180deg, #e5eaf0 0%, #b5bfcd 50%, #9099a9 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 16px 36px rgba(0, 0, 0, 0.26);
}

.lp-device__base::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 3px;
    width: 24%;
    height: 3px;
    border-radius: 999px;
    background: rgba(118, 126, 138, 0.72);
    transform: translateX(-50%);
}

.lp-device__keyboard {
    position: absolute;
    inset: 7px 18% 9px;
    border-radius: 10px;
    background:
        linear-gradient(180deg, rgba(119, 128, 142, 0.22), rgba(71, 79, 88, 0.06)),
        repeating-linear-gradient(90deg, rgba(79, 87, 97, 0.28) 0 11px, rgba(255, 255, 255, 0) 11px 15px);
    opacity: 0.7;
}

.lp-device__trackpad {
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 18%;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(103, 112, 125, 0.54);
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-50%);
}

.lp-device--iphone {
    left: 25%;
    right: auto;
    top: auto;
    bottom: 3%;
    width: clamp(178px, 18vw, 224px);
    aspect-ratio: 10 / 19.8;
    z-index: 5;
}

.lp-device__hardware--iphone {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 12px;
    border-radius: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background:
        linear-gradient(145deg, #0b111d 0%, #273246 36%, #09101b 100%);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.24),
        inset 0 -2px 6px rgba(0, 0, 0, 0.5),
        0 34px 82px rgba(0, 0, 0, 0.46);
}

.lp-device__hardware--iphone::before {
    content: "";
    position: absolute;
    left: -3px;
    top: 110px;
    width: 4px;
    height: 72px;
    border-radius: 999px;
    background: linear-gradient(180deg, #556072, #2d3543);
    box-shadow: 0 84px 0 0 #2d3543;
}

.lp-device__hardware--iphone::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 144px;
    width: 4px;
    height: 96px;
    border-radius: 999px;
    background: linear-gradient(180deg, #556072, #2d3543);
}

.lp-device__notch {
    position: absolute;
    left: 50%;
    top: 12px;
    width: 44%;
    height: 28px;
    border-radius: 0 0 20px 20px;
    background: rgba(4, 9, 15, 0.96);
    transform: translateX(-50%);
    z-index: 2;
}

.lp-device__screen:not(.lp-device__screen--desktop) {
    height: 100%;
    border-radius: 32px;
    background: #020813;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.lp-device__screen:not(.lp-device__screen--desktop) img {
    object-fit: cover;
    object-position: center top;
}

.lp-section-head {
    display: grid;
    gap: 10px;
    max-width: 680px;
}

.lp-section-head h2,
.lp-intelligence__copy h2,
.lp-bottom h2,
.checkout-section-head h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
}

.lp-command,
.lp-pricing,
.checkout-alternatives {
    display: grid;
    gap: 20px;
}

.lp-command__grid,
.lp-intelligence__grid,
.lp-pricing__grid,
.checkout-alternatives__grid {
    display: grid;
    gap: 18px;
}

.lp-command__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-command__card,
.lp-intelligence__card {
    padding: 24px;
    border-radius: var(--lp-radius-md);
}

.lp-command__card::before,
.lp-intelligence__card::before,
.lp-plan::before,
.lp-bottom::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.lp-command__card::before {
    background: linear-gradient(135deg, rgba(62, 152, 255, 0.08), transparent 40%, rgba(33, 199, 122, 0.08));
}

.lp-command__card p,
.lp-intelligence__card p,
.lp-plan__head p {
    margin: 14px 0 0;
    color: var(--lp-text-soft);
    line-height: 1.62;
}

.lp-spotlight {
    display: grid;
    gap: 22px;
}

.lp-spotlight__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: start;
}

.lp-spotlight__media {
    position: sticky;
    top: 108px;
}

.lp-stage {
    padding: 24px;
    border-radius: var(--lp-radius-xl);
    border: 1px solid rgba(98, 188, 255, 0.08);
    background:
        radial-gradient(circle at 18% 16%, rgba(33, 199, 122, 0.16), transparent 20%),
        radial-gradient(circle at 84% 12%, rgba(62, 152, 255, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(11, 18, 33, 0.96) 0%, rgba(8, 13, 24, 0.98) 100%);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.lp-stage__frame {
    position: relative;
    aspect-ratio: 16 / 10;
    min-height: 0;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 9, 18, 0.48);
}

.lp-stage__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 9, 18, 0) 20%, rgba(5, 9, 18, 0.1) 100%);
    pointer-events: none;
}

.lp-stage__frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    opacity: 0.84;
    transform: scale(1.03);
    transition: transform 280ms ease, opacity 280ms ease;
}

.lp-stage-card {
    position: absolute;
    max-width: 250px;
    padding: 16px 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 16, 28, 0.84);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
    opacity: 0.34;
    transform: translate3d(0, 18px, 0) scale(0.98);
    transition: opacity 260ms ease, transform 260ms ease, border-color 260ms ease;
}

.lp-stage-card strong {
    display: block;
    margin-top: 10px;
    color: #f6fbff;
    font-family: var(--lp-font-display);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.28;
}

.lp-stage-card--portfolio {
    top: 30px;
    left: 28px;
}

.lp-stage-card--wallet {
    top: 222px;
    right: 24px;
}

.lp-stage-card--tax {
    left: 28px;
    bottom: 34px;
}

.lp-spotlight[data-active-step="consolidado"] [data-stage-card="consolidado"],
.lp-spotlight[data-active-step="carteira"] [data-stage-card="carteira"],
.lp-spotlight[data-active-step="fiscal"] [data-stage-card="fiscal"] {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    border-color: rgba(98, 188, 255, 0.42);
}

.lp-spotlight[data-active-step="consolidado"] .lp-stage__frame img,
.lp-spotlight[data-active-step="carteira"] .lp-stage__frame img,
.lp-spotlight[data-active-step="fiscal"] .lp-stage__frame img {
    opacity: 0.92;
}

.lp-spotlight__steps {
    display: grid;
    gap: 16px;
}

.lp-step {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
}

.lp-step.is-active {
    border-color: var(--lp-border-strong);
    background: linear-gradient(180deg, rgba(18, 27, 45, 0.96), rgba(10, 16, 28, 0.98));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
    transform: translate3d(8px, var(--lp-reveal-y, 0px), 0);
}

.lp-step__number {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(33, 199, 122, 0.18), rgba(62, 152, 255, 0.16));
    color: var(--lp-text);
    font-size: 0.96rem;
    font-weight: 650;
    letter-spacing: 0.06em;
}

.lp-step p {
    margin: 12px 0 0;
    color: var(--lp-text-soft);
    line-height: 1.65;
}

.lp-step__list,
.lp-plan__list,
.checkout-option ul {
    display: grid;
    gap: 8px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.lp-step__list li,
.lp-plan__list li,
.checkout-option li {
    position: relative;
    padding-left: 18px;
    color: var(--lp-text-soft);
    line-height: 1.56;
}

.lp-step__list li::before,
.lp-plan__list li::before,
.checkout-option li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-alt));
    transform: translateY(-50%);
}

.lp-intelligence {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: 24px;
    padding: 28px;
    border-radius: 32px;
}

.lp-intelligence__copy {
    display: grid;
    align-content: start;
    gap: 12px;
}

.lp-intelligence__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-intelligence__card {
    min-height: 196px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(16, 25, 41, 0.88), rgba(9, 14, 26, 0.9));
}

.lp-app-band,
.lp-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 30px;
    border-radius: 30px;
}

.lp-app-band__copy,
.lp-bottom > div:first-child {
    display: grid;
    gap: 12px;
}

.lp-app-band__copy h2 {
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    line-height: 1;
}

.lp-app-band__copy p {
    max-width: 38ch;
}

.lp-store-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.lp-store-card {
    min-width: 184px;
    min-height: 82px;
    padding: 16px 18px;
    display: grid;
    align-content: center;
    gap: 6px;
    border-radius: 22px;
    color: var(--lp-text);
}

.lp-store-card strong {
    color: var(--lp-text);
    font-size: 1.06rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.lp-pricing__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-plan {
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
}

.lp-plan::before,
.lp-bottom::before {
    background: linear-gradient(135deg, rgba(62, 152, 255, 0.06), transparent 38%, rgba(33, 199, 122, 0.08));
}

.lp-plan.is-featured {
    border-color: rgba(98, 188, 255, 0.22);
    background:
        radial-gradient(circle at top right, rgba(33, 199, 122, 0.16), transparent 22%),
        linear-gradient(180deg, rgba(16, 25, 41, 0.96) 0%, rgba(10, 16, 28, 0.98) 100%);
    transform: translate3d(0, calc(var(--lp-reveal-y, 0px) - 8px), 0);
}

.lp-plan__badge {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(98, 188, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.lp-plan__head h3 {
    margin: 12px 0 8px;
    font-size: 1.28rem;
}

.lp-plan__price {
    display: grid;
    gap: 8px;
}

.lp-plan__price strong,
.checkout-price strong,
.checkout-option > strong {
    display: block;
    color: var(--lp-text);
    font-family: var(--lp-font-display);
    font-size: 1.68rem;
    font-weight: 620;
    letter-spacing: -0.04em;
}

.lp-plan__price small {
    color: var(--lp-text-soft);
    line-height: 1.56;
}

.lp-plan__cta,
.checkout-panel__button {
    width: 100%;
    margin-top: auto;
}

.lp-bottom {
    background:
        radial-gradient(circle at top right, rgba(33, 199, 122, 0.14), transparent 22%),
        radial-gradient(circle at left center, rgba(62, 152, 255, 0.12), transparent 26%),
        linear-gradient(180deg, rgba(12, 18, 31, 0.96), rgba(8, 13, 24, 0.98));
}

.lp-bottom p {
    max-width: 32ch;
}

.lp-bottom__actions {
    justify-content: flex-end;
}

[data-reveal] {
    opacity: 0;
    --lp-reveal-y: 28px;
}

[data-reveal].is-visible {
    opacity: 1;
    --lp-reveal-y: 0px;
}

@keyframes lp-halo-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.02);
        opacity: 0.92;
    }
}

.checkout-shell {
    display: grid;
    gap: 28px;
    padding-top: 12px;
}

.checkout-header {
    justify-content: space-between;
}

.checkout-back {
    color: var(--lp-text-soft);
    font-weight: 600;
    transition: color 180ms ease;
}

.checkout-back:hover {
    color: var(--lp-text);
}

.checkout-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 18px;
    align-items: stretch;
}

.checkout-hero__copy,
.checkout-panel,
.checkout-option {
    border-radius: 28px;
}

.checkout-hero__copy {
    padding: 32px;
}

.checkout-hero__copy h1 {
    font-size: clamp(1.9rem, 3.1vw, 2.7rem);
    line-height: 1.02;
}

.checkout-price {
    display: grid;
    gap: 8px;
    margin: 24px 0;
}

.checkout-section-head {
    display: grid;
    gap: 10px;
    max-width: 680px;
}

.checkout-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkout-panel {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-panel__visual {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 22px;
    background: #040812;
}

.checkout-panel__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 10, 20, 0.16), rgba(6, 10, 20, 0.84)),
        linear-gradient(90deg, rgba(6, 10, 20, 0.72), rgba(6, 10, 20, 0.12) 62%, rgba(6, 10, 20, 0.58));
}

.checkout-panel__visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.checkout-panel__visual-copy {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: grid;
    gap: 8px;
}

.checkout-alternatives__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.checkout-option {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.checkout-option__head h3 {
    margin: 10px 0 0;
}

.checkout-option.is-featured {
    border-color: rgba(98, 188, 255, 0.22);
    background:
        radial-gradient(circle at top right, rgba(33, 199, 122, 0.14), transparent 24%),
        linear-gradient(180deg, rgba(16, 25, 41, 0.96) 0%, rgba(10, 16, 28, 0.98) 100%);
}

@media (max-width: 1280px) {
    .lp-hero-desktop__copy {
        width: min(37%, 500px);
        top: 18%;
        gap: 20px;
    }

    .lp-hero-desktop__copy p {
        max-width: 19ch;
    }

    .lp-hero-desktop__actions .lp-button {
        min-height: 52px;
        padding: 0 24px;
        font-size: 1rem;
    }

    .lp-hero-desktop__canvas img {
        object-position: 54% 58%;
    }

    .lp-hero {
        grid-template-columns: 1fr;
    }

    .lp-hero__content h1 {
        max-width: none;
    }

    .lp-hero__visual {
        min-height: 760px;
    }

    .lp-command__grid,
    .lp-pricing__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-intelligence,
    .lp-spotlight__layout,
    .checkout-hero {
        grid-template-columns: 1fr;
    }

    .lp-app-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-spotlight__media {
        position: static;
    }

    .checkout-alternatives__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .lp-hero-desktop {
        display: block;
    }

    .lp-topbar--mobile,
    .lp-hero--mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .lp-hero-desktop {
        display: none;
    }

    .lp-topbar {
        position: static;
        border-radius: 28px;
    }

    .lp-topbar__actions {
        width: 100%;
    }

    .lp-link,
    .lp-topbar__actions > .lp-button {
        flex: 1 1 auto;
        justify-content: center;
    }

    .lp-command__grid,
    .lp-intelligence__grid,
    .lp-pricing__grid,
    .checkout-alternatives__grid {
        grid-template-columns: 1fr;
    }

    .lp-hero__visual {
        min-height: auto;
        padding: 24px;
        border-radius: 32px;
        border: 1px solid var(--lp-border);
        background: linear-gradient(180deg, rgba(12, 18, 31, 0.84), rgba(8, 13, 24, 0.9));
    }

    .lp-hero__halo {
        inset: 14px;
        border-radius: 28px;
    }

    .lp-device-cluster {
        min-height: auto;
        display: grid;
        gap: 22px;
    }

    .lp-device,
    .lp-hero__art,
    .lp-hero__note {
        position: static;
        width: 100%;
        max-width: none;
        margin-top: 0;
        transform: none !important;
    }

    .lp-hero__art {
        width: 100%;
        min-height: 540px;
        margin: 0 auto;
    }

    .lp-device--macbook {
        right: auto;
    }

    .lp-device--tablet,
    .lp-device--iphone {
        width: min(100%, 270px);
        margin-left: auto;
        margin-right: auto;
    }

    .lp-device--macbook {
        width: 100%;
    }

    .lp-stage {
        padding: 18px;
    }

    .lp-stage__frame {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .lp-stage-card {
        max-width: 220px;
    }

    .lp-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-bottom__actions,
    .lp-store-grid {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .lp-shell,
    .checkout-shell {
        width: min(100%, calc(100% - 24px));
    }

    .finance-page-shell--marketing {
        padding-bottom: 74px;
    }

    .lp-shell {
        gap: 22px;
    }

    .lp-hero__content h1 {
        font-size: clamp(2.45rem, 11vw, 3.5rem);
    }

    .lp-hero__content > p,
    .lp-section-head p,
    .lp-intelligence__copy p,
    .lp-app-band__copy p,
    .lp-bottom p,
    .checkout-hero__copy p,
    .checkout-option p,
    .checkout-panel__note,
    .checkout-price small {
        font-size: 0.96rem;
    }

    .lp-topbar,
    .lp-command__card,
    .lp-step,
    .lp-intelligence,
    .lp-intelligence__card,
    .lp-plan,
    .lp-app-band,
    .lp-bottom,
    .checkout-hero__copy,
    .checkout-panel,
    .checkout-option {
        border-radius: 24px;
    }

    .lp-topbar__actions,
    .lp-hero__actions,
    .lp-bottom__actions {
        width: 100%;
    }

    .lp-button,
    .lp-store-card {
        width: 100%;
    }

    .lp-step {
        grid-template-columns: 1fr;
    }

    .lp-step__number {
        width: 56px;
        height: 56px;
    }

    .lp-stage__frame {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .lp-stage-card {
        position: static;
        max-width: none;
        margin: 14px;
        transform: none !important;
        opacity: 1;
    }

    .checkout-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-hero__halo {
        animation: none;
    }

    .lp-button,
    .lp-device,
    .lp-hero__note,
    .lp-command__card,
    .lp-intelligence,
    .lp-intelligence__card,
    .lp-plan,
    .lp-app-band,
    .lp-store-card,
    .lp-step,
    [data-reveal] {
        transition: none !important;
        transform: none !important;
    }

    [data-reveal] {
        opacity: 1 !important;
    }
}
