:root {
    --lp-bg: #f9f8f6;
    --lp-soft: #f3efe8;
    --lp-mist: #efe8de;
    --lp-sage: #e7f3ed;
    --lp-muted-bg: #f3efe8;
    --lp-ink: #1a1a1e;
    --lp-text: #1a1a1e;
    --lp-subtle: #5c5c63;
    --lp-line: rgba(225, 220, 210, .7);
    --lp-primary: #72b095;
    --lp-primary-hover: #5f9a7e;
    --lp-mint: #a8e6cf;
    --lp-info: #a3c9e2;
    --lp-peach: #e8a598;
    --lp-peach-soft: #ffd3b6;
    --lp-lavender: #d4c1ec;
    --lp-surface: rgba(255, 255, 255, .8);
    --lp-app-side: #1f2937;
    --lp-app-blue: #1976d2;
    --lp-radius: 10px;
    --lp-wrap: 1280px;
    --lp-header: 4.25rem;
    --lp-shadow: 0 20px 40px -15px rgba(0, 0, 0, .05);
    --lp-shadow-sm: 0 8px 22px -12px rgba(0, 0, 0, .08);
    --lp-ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--lp-header) + .75rem);
}

body.lp-page {
    margin: 0;
    overflow-x: hidden;
    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 1.0125rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.lp-page.lp-nav-lock {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--lp-primary);
    text-decoration: none;
}

.lp-wrap {
    width: min(var(--lp-wrap), calc(100% - 2rem));
    max-width: 100%;
    margin-inline: auto;
}

.lp-hero-grid > *,
.lp-split > *,
.lp-cta-grid > *,
.lp-fashion-visual,
.lp-hero-visual,
.lp-hero-desk {
    min-width: 0;
    max-width: 100%;
}

.lp-narrow {
    max-width: 40rem;
}

.lp-narrow.lp-wrap,
.lp-wrap .lp-narrow {
    margin-inline: auto;
}

.lp-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.lp-header::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(249, 248, 246, .75);
    border-bottom: 1px solid rgba(230, 225, 215, .5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    pointer-events: none;
    content: "";
}

.lp-header.is-scrolled::before,
.lp-header.is-legal::before,
.lp-header.is-open::before {
    background: rgba(249, 248, 246, .86);
    border-bottom-color: rgba(230, 225, 215, .5);
}

.lp-header.is-scrolled,
.lp-header.is-legal,
.lp-header.is-open {
    border-bottom-color: transparent;
}

.lp-header-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 3.75rem;
}

.lp-header.is-legal .lp-header-inner > .lp-btn {
    margin-left: auto;
}

.lp-logo {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--lp-text);
    font-weight: 600;
    letter-spacing: -.02em;
}

.lp-logo img {
    display: block;
    height: 1.75rem;
    width: auto;
}

.lp-logo-mark {
    display: grid;
    place-items: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 8px;
    background: #5f9a7e;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
}

.lp-nav-layer {
    position: fixed;
    inset: 0;
    z-index: 55;
    overflow: hidden;
    pointer-events: none;
    visibility: hidden;
}

.lp-header.is-open .lp-nav-layer {
    visibility: visible;
    pointer-events: auto;
}

.lp-backdrop {
    position: absolute;
    inset: 0;
    z-index: 55;
    background: rgba(26, 26, 30, .32);
}

.lp-backdrop[hidden] {
    display: none !important;
}

.lp-drawer {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 60;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: min(20rem, 86vw);
    height: 100dvh;
    padding: 5rem 1.25rem 1.75rem;
    overflow-y: auto;
    background: rgba(249, 248, 246, .97);
    border-left: 1px solid var(--lp-line);
    box-shadow: -12px 0 40px rgba(0, 0, 0, .08);
    transform: translateX(110%);
    transition: transform .3s ease;
    pointer-events: auto;
}

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

.lp-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
}

.lp-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    color: var(--lp-text);
    font-size: 1.05rem;
}

.lp-nav a::after {
    position: absolute;
    left: 0;
    bottom: .45rem;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width .2s ease;
    content: "";
}

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

.lp-nav a:hover::after {
    width: 100%;
}

.lp-header-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .6rem;
}

.lp-header-actions .lp-btn {
    width: 100%;
    min-height: 2.75rem;
}

.lp-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 62;
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--lp-line);
    border-radius: 8px;
    background: #fff;
    touch-action: manipulation;
}

.lp-nav-toggle span,
.lp-nav-toggle span::before,
.lp-nav-toggle span::after {
    display: block;
    width: 1rem;
    height: 1.5px;
    margin: 0 auto;
    background: var(--lp-text);
    content: "";
}

.lp-nav-toggle span {
    position: relative;
}

.lp-nav-toggle span::before,
.lp-nav-toggle span::after {
    position: absolute;
    left: 0;
}

.lp-nav-toggle span::before {
    top: -.35rem;
}

.lp-nav-toggle span::after {
    top: .35rem;
}

.lp-nav-toggle span,
.lp-nav-toggle span::before,
.lp-nav-toggle span::after {
    transition: transform .2s ease, top .2s ease, background .2s ease;
}

.lp-header.is-open .lp-nav-toggle span {
    background: transparent;
}

.lp-header.is-open .lp-nav-toggle span::before {
    top: 0;
    transform: rotate(45deg);
}

.lp-header.is-open .lp-nav-toggle span::after {
    top: 0;
    transform: rotate(-45deg);
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    min-width: 2.75rem;
    padding: .65rem 1.15rem;
    border-radius: 10px;
    font-weight: 550;
    font-size: .9375rem;
    line-height: 1.2;
    touch-action: manipulation;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.lp-btn:hover {
    transform: translateY(-1px);
}

.lp-btn-primary {
    background: var(--lp-primary);
    color: var(--lp-text);
}

.lp-btn-primary:hover {
    background: var(--lp-primary-hover);
    color: #fff;
}

.lp-btn-secondary,
.lp-btn-ghost {
    background: #fff;
    border: 1px solid var(--lp-line);
    color: var(--lp-text);
}

.lp-btn-secondary:hover,
.lp-btn-ghost:hover {
    border-color: #cfcfcf;
    color: var(--lp-text);
}

.lp-btn-ghost {
    min-height: 2.75rem;
    padding-inline: .9rem;
}

.lp-btn-light {
    background: #fff;
    color: var(--lp-text);
}

.lp-btn-light:hover {
    background: #f3f3f1;
    color: var(--lp-text);
}

.lp-btn-outline {
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
}

.lp-btn-outline:hover {
    border-color: #fff;
    color: #fff;
}

.lp-hero {
    position: relative;
    padding: 3rem 0;
    overflow-x: hidden;
}

.lp-hero::before {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 18%, rgba(168, 230, 207, .35), transparent 36%),
        radial-gradient(circle at 88% 8%, rgba(212, 193, 236, .22), transparent 32%),
        linear-gradient(rgba(225, 220, 210, .45) 1px, transparent 1px),
        linear-gradient(90deg, rgba(225, 220, 210, .45) 1px, transparent 1px);
    background-size: auto, auto, 44px 48px, 44px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .75), transparent 88%);
    pointer-events: none;
    content: "";
}

.lp-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.lp-hero-visual {
    position: relative;
    display: grid;
    gap: 1.5rem;
    min-height: 0;
    padding: 0;
    justify-items: center;
}

.lp-hero-desk {
    width: 100%;
    max-width: 100%;
    height: auto;
    will-change: transform;
}

.lp-hero-phone {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 3;
    width: min(15.25rem, 100%);
    max-width: 100%;
    will-change: auto;
    filter: drop-shadow(0 10px 16px rgba(17, 24, 39, .1));
}

h1,
h2,
h3 {
    margin: 0;
    letter-spacing: -.03em;
    line-height: 1.2;
    font-weight: 650;
}

h1 {
    max-width: 14ch;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

.lp-lead {
    margin: 1rem 0 0;
    color: var(--lp-subtle);
    font-size: 1.0625rem;
}

.lp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.75rem;
}

.lp-section {
    padding: 3rem 0;
}

.lp-section-tight {
    padding-top: 1.5rem;
}

.lp-tone-white {
    background: var(--lp-bg);
}

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

.lp-tone-mist {
    background: var(--lp-mist);
}

#moda {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: #f6f1ea;
}

.lp-parallax-bg,
.lp-parallax-mid {
    position: absolute;
    pointer-events: none;
    will-change: transform;
}

.lp-parallax-bg {
    inset: -22% 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(225, 220, 210, .4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(225, 220, 210, .4) 1px, transparent 1px);
    background-size: 42px 42px;
    background-attachment: scroll;
}

.lp-parallax-mid {
    inset: -28% -12%;
    z-index: 1;
    background: radial-gradient(circle, rgba(168, 230, 207, .3) 0%, rgba(255, 211, 182, .3) 100%);
}

.lp-parallax-fg {
    position: relative;
    z-index: 2;
}

.lp-tone-sage {
    background: var(--lp-sage);
}

.lp-tone-dark {
    background: var(--lp-ink);
    color: #fff;
}

.lp-tone-dark .lp-lead,
.lp-tone-dark p,
.lp-tone-dark .lp-checks li {
    color: rgba(255, 255, 255, .82);
}

.lp-tone-dark .lp-checks li::before {
    background: #9bb8b0;
}

.lp-section-muted {
    background: var(--lp-muted-bg);
}

.lp-section h2 + .lp-lead,
.lp-narrow h2 + .lp-lead {
    margin-top: .85rem;
}

.lp-modules {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem .9rem;
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--lp-text);
    font-weight: 550;
}

.lp-modules li + li {
    padding-left: 0;
    border-left: 0;
}

.lp-benefits,
.lp-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}

.lp-benefits article,
.lp-features article {
    position: relative;
    padding: 1.35rem 1.25rem 1.2rem;
    border: 1px solid rgba(225, 220, 210, .5);
    border-radius: 12px;
    background: var(--lp-surface);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--lp-shadow);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.lp-benefits article:hover,
.lp-features article:hover,
.lp-plan:hover {
    border-color: var(--lp-primary);
    box-shadow: var(--lp-shadow-sm);
}

.lp-num {
    display: block;
    margin-bottom: .15rem;
    color: rgba(23, 23, 23, .1);
    font-size: 2.35rem;
    font-weight: 700;
    letter-spacing: -.06em;
    line-height: 1;
}

.lp-features article:nth-child(3n) {
    background: rgba(212, 193, 236, .16);
}

.lp-benefits h3,
.lp-features h3,
.lp-plan h3,
.lp-steps h3 {
    font-size: clamp(1.15rem, 2.4vw, 1.4rem);
}

.lp-benefits p,
.lp-features p,
.lp-steps p,
.lp-plan-desc,
.lp-faq p,
.lp-split p {
    margin: 0;
    color: var(--lp-subtle);
}

.lp-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.lp-checks {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.lp-checks li {
    position: relative;
    padding: .45rem 0 .45rem 1.35rem;
}

.lp-checks li::before {
    position: absolute;
    left: 0;
    top: .85rem;
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: var(--lp-primary);
    content: "";
}

.lp-matrix-scroll {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--lp-primary) transparent;
}

.lp-matrix-scroll::after {
    display: block;
    height: 3px;
    margin-top: .55rem;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--lp-primary), var(--lp-mint), transparent);
    content: "";
}

.lp-matrix {
    position: relative;
    z-index: 2;
    min-width: 28rem;
    padding: 0 1.2rem 1rem;
    border: 1px solid rgba(225, 220, 210, .5);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    box-shadow: var(--lp-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lp-matrix-chrome {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-height: 2.2rem;
    margin: 0 -1.2rem 1rem;
    padding: 0 .9rem;
    border-bottom: 1px solid var(--lp-line);
    background: #f3f3f1;
    border-radius: var(--lp-radius) var(--lp-radius) 0 0;
    color: var(--lp-subtle);
    font-size: .75rem;
}

.lp-fashion-visual {
    position: relative;
    padding-bottom: 1.25rem;
}

.lp-product-card {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin-top: 1rem;
    padding: .95rem 1rem;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 8px 20px -12px rgba(0, 0, 0, .08);
    will-change: auto;
}

.lp-product-card span,
.lp-product-card p {
    display: block;
    margin: .15rem 0 0;
    color: var(--lp-subtle);
    font-size: .82rem;
}

.lp-product-price {
    margin-top: .55rem !important;
    color: var(--lp-text) !important;
    font-size: 1.15rem !important;
    font-weight: 650;
    letter-spacing: -.03em;
}

.lp-matrix header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .9rem;
    color: var(--lp-subtle);
    font-size: .875rem;
}

.lp-matrix header strong {
    color: var(--lp-text);
}

.lp-matrix table,
.lp-mini-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.lp-matrix th,
.lp-matrix td,
.lp-mini-table th,
.lp-mini-table td {
    padding: .55rem .4rem;
    border-bottom: 1px solid var(--lp-line);
    text-align: center;
}

.lp-matrix th:first-child,
.lp-mini-table th:first-child,
.lp-mini-table td:first-child {
    text-align: left;
}

.lp-matrix tbody th {
    font-weight: 500;
}

.lp-matrix td[data-tip] {
    position: relative;
    cursor: pointer;
    border-radius: 6px;
    transition: background .15s ease, transform .15s ease, color .15s ease;
}

.lp-matrix td[data-tip]:hover,
.lp-matrix td[data-tip]:focus-visible {
    z-index: 3;
    background: var(--lp-mint);
    font-weight: 650;
}

.lp-matrix td.is-zero[data-tip]:hover,
.lp-matrix td.is-zero[data-tip]:focus-visible {
    background: var(--lp-peach-soft);
}

.lp-matrix td[data-tip]:hover::after,
.lp-matrix td[data-tip]:focus-visible::after {
    position: absolute;
    left: 50%;
    bottom: calc(100% + .4rem);
    z-index: 4;
    width: max-content;
    max-width: 12rem;
    padding: .4rem .55rem;
    border-radius: 8px;
    background: var(--lp-text);
    color: #fff;
    font-size: .72rem;
    font-weight: 500;
    line-height: 1.3;
    transform: translateX(-50%);
    content: attr(data-tip);
    pointer-events: none;
}

.lp-swatch {
    display: inline-block;
    width: .7rem;
    height: .7rem;
    margin-right: .4rem;
    border: 1px solid var(--lp-line);
    border-radius: 999px;
    vertical-align: middle;
}

.is-zero {
    color: #b42318;
    font-weight: 600;
}

.lp-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2.25rem 0 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.lp-steps span {
    display: block;
    margin-bottom: .35rem;
    color: rgba(23, 23, 23, .1);
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -.06em;
    line-height: 1;
}

.lp-preview {
    position: relative;
    padding-bottom: 1.25rem;
}

.lp-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: 1.75rem 0 1rem;
}

.lp-tabs button {
    min-height: 2.75rem;
    min-width: 2.75rem;
    padding: .4rem .9rem;
    border: 1px solid var(--lp-line);
    border-radius: 999px;
    background: #fff;
    color: var(--lp-subtle);
    font: inherit;
    font-size: .9rem;
    touch-action: manipulation;
}

.lp-tabs button.is-on {
    background: var(--lp-text);
    border-color: var(--lp-text);
    color: #fff;
}

.lp-plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
    margin-top: 2.25rem;
}

.lp-plan {
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1.3rem 1.3rem;
    border: 1px solid rgba(225, 220, 210, .5);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--lp-shadow);
    transition: border-color .18s ease, box-shadow .18s ease, transform .15s ease;
}

.lp-plan.is-featured {
    border: 2px solid var(--lp-primary);
    box-shadow: var(--lp-shadow-sm);
}

.lp-plan-badge {
    margin: 0 0 .55rem;
    color: var(--lp-primary);
    font-size: .75rem;
    font-weight: 650;
    letter-spacing: .04em;
}

.lp-plan-price {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    margin: 1rem 0 1.1rem;
}

.lp-plan-price strong {
    font-size: 1.55rem;
    letter-spacing: -.03em;
}

.lp-plan-price span,
.lp-plan ul {
    color: var(--lp-subtle);
}

.lp-plan ul {
    margin: 0 0 1.35rem;
    padding: 0;
    list-style: none;
    flex: 1;
}

.lp-plan li {
    padding: .28rem 0;
}

.lp-plan .lp-btn {
    width: 100%;
}

.lp-faq {
    margin-top: 1.75rem;
    border-top: 1px solid var(--lp-line);
}

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

.lp-faq summary {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    cursor: pointer;
    padding: 1rem 1.5rem 1rem 0;
    font-weight: 550;
    list-style: none;
}

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

.lp-faq p {
    padding: 0 0 1rem;
}

.lp-cta {
    padding: 3rem 0;
    background: var(--lp-ink);
    color: #fff;
}

.lp-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.lp-cta p {
    color: rgba(255, 255, 255, .72);
}

.lp-cta h2 {
    max-width: 16ch;
}

.lp-cta-note {
    margin-top: 1.15rem;
}

.lp-cta-mail {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    margin-top: 1.5rem;
    font-size: .95rem;
}

.lp-cta-mail a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    color: #fff;
}

.lp-form {
    display: grid;
    gap: .85rem;
}

.lp-form label {
    display: grid;
    gap: .35rem;
    color: rgba(255, 255, 255, .78);
    font-size: .875rem;
}

.lp-form input,
.lp-form select,
.lp-form textarea {
    width: 100%;
    min-height: 2.75rem;
    padding: .65rem .8rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font: inherit;
    font-size: 16px;
}

.lp-form textarea {
    min-height: 6.5rem;
    resize: vertical;
}

.lp-form input:focus,
.lp-form select:focus,
.lp-form textarea:focus {
    outline: 2px solid rgba(255, 255, 255, .35);
    outline-offset: 1px;
}

.lp-form select option {
    color: #171717;
}

.lp-form small {
    color: #f0b4ae;
}

.lp-form .lp-btn {
    width: 100%;
    margin-top: .35rem;
}

.lp-hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.lp-alert {
    margin: 0;
    padding: .75rem .85rem;
    border-radius: 10px;
    font-size: .9rem;
}

.lp-alert.is-ok {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.lp-alert.is-err {
    background: rgba(180, 35, 24, .2);
    color: #f0b4ae;
}

.lp-footer {
    padding: 2.5rem 0 2.75rem;
    border-top: 1px solid var(--lp-line);
    color: var(--lp-subtle);
    font-size: .9rem;
}

.lp-footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem 2rem;
    align-items: start;
}

.lp-footer a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    color: var(--lp-subtle);
}

.lp-footer-name {
    margin: 0 0 .2rem;
    color: var(--lp-text);
    font-weight: 650;
}

.lp-footer p {
    margin: 0;
}

.lp-footer nav {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.lp-footer a:hover {
    color: var(--lp-text);
}

.lp-copy {
    margin: 0;
}

.lp-legal {
    padding: 3.5rem 0 5rem;
}

.lp-legal h2 {
    margin: 2rem 0 .6rem;
    font-size: 1.15rem;
}

.lp-browser {
    position: relative;
    margin: 0;
    max-width: 100%;
    height: auto;
    border: 1px solid rgba(225, 220, 210, .5);
    border-radius: 12px;
    background: var(--lp-surface);
    overflow: hidden;
    box-shadow: var(--lp-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    transition: transform .45s var(--lp-ease);
}

.lp-browser.is-tilting {
    transition: none;
}

.lp-browser .lp-browser-bar,
.lp-browser .lp-app {
    overflow: hidden;
}

.lp-browser .lp-browser-bar {
    border-radius: 12px 12px 0 0;
}

.lp-browser-bar {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-height: 2.35rem;
    padding: 0 .8rem;
    background: #f3f3f1;
    border-bottom: 1px solid var(--lp-line);
}

.lp-browser-dots {
    display: flex;
    gap: .3rem;
}

.lp-browser-dots i {
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: #d4d4d0;
}

.lp-browser-url {
    flex: 1;
    padding: .2rem .7rem;
    border-radius: 6px;
    background: #fff;
    color: var(--lp-subtle);
    font-size: .75rem;
}

.lp-app {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 16rem;
    background: #e8ecf2;
}

.lp-app-side {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: .7rem;
    padding: .75rem .45rem;
    background: var(--lp-app-side);
}

.lp-app-mark {
    display: grid;
    place-items: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 6px;
    background: var(--lp-app-blue);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
}

.lp-app-nav {
    width: 1.35rem;
    height: .45rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, .18);
}

.lp-app-nav.is-on {
    background: #fff;
}

.lp-app-main {
    min-width: 0;
}

.lp-app-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .7rem .9rem;
    background: #fff;
    border-bottom: 1px solid #dfe3e8;
    font-size: .8rem;
}

.lp-app-top span {
    color: var(--lp-subtle);
}

.lp-app-body {
    padding: .85rem;
}

.lp-screen {
    display: none;
}

.lp-screen.is-on {
    display: block;
}

.lp-kpis {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
}

.lp-kpi {
    padding: .7rem .75rem;
    border: 1px solid rgba(163, 201, 226, .35);
    border-radius: 6px;
    background: rgba(255, 255, 255, .92);
}

.lp-kpi:nth-child(3) {
    border-color: rgba(232, 165, 152, .45);
    background: rgba(255, 211, 182, .28);
}

.lp-kpi:nth-child(4) {
    border-color: rgba(212, 193, 236, .45);
    background: rgba(212, 193, 236, .18);
}

.lp-kpi span {
    display: block;
    color: #5b6472;
    font-size: .7rem;
}

.lp-kpi strong {
    display: block;
    margin-top: .15rem;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: -.02em;
    overflow-wrap: anywhere;
}

.lp-chart {
    margin-top: .7rem;
    padding: .7rem .8rem .5rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 6px;
    background: #fff;
}

.lp-chart p {
    margin: 0 0 .35rem;
    color: #5b6472;
    font-size: .75rem;
}

.lp-pos {
    display: grid;
    grid-template-columns: 1fr;
    gap: .6rem;
}

.lp-pos-search,
.lp-pos-row,
.lp-pos-cart,
.lp-product-head {
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 6px;
    background: #fff;
}

.lp-pos-search {
    margin-bottom: .45rem;
    padding: .45rem .65rem;
    color: #5b6472;
    font-size: .75rem;
}

.lp-pos-row {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    margin-bottom: .35rem;
    padding: .45rem .65rem;
    font-size: .78rem;
}

.lp-pos-row.is-on {
    border-color: var(--lp-app-blue);
}

.lp-pos-cart {
    padding: .7rem .75rem .8rem;
}

.lp-pos-cart p {
    margin: 0 0 .55rem;
    font-size: .75rem;
    font-weight: 600;
}

.lp-pos-total {
    display: flex;
    justify-content: space-between;
    margin: .55rem 0 .7rem;
    font-size: .85rem;
}

.lp-pos-pay {
    display: block;
    padding: .5rem;
    border-radius: 6px;
    background: var(--lp-app-blue);
    color: #fff;
    font-size: .78rem;
    text-align: center;
}

.lp-product-head {
    margin-bottom: .55rem;
    padding: .7rem .8rem;
}

.lp-product-head span {
    display: block;
    color: #5b6472;
    font-size: .78rem;
}

.lp-mini-table {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 6px;
}

.lp-mini-table th,
.lp-mini-table td {
    padding: .5rem .6rem;
}

.lp-float-card {
    display: none;
    position: absolute;
    right: 1.1rem;
    bottom: -1.1rem;
    z-index: 4;
    min-width: 9.5rem;
    padding: .7rem .85rem;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--lp-shadow);
}

.lp-float-card span {
    display: block;
    color: #5b6472;
    font-size: .7rem;
}

.lp-float-card strong {
    display: block;
    margin-top: .1rem;
    font-size: .92rem;
    font-weight: 650;
}

.lp-phone {
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
    transform-style: preserve-3d;
    transition: transform .45s var(--lp-ease);
}

.lp-phone.is-tilting {
    transition: none;
}

.lp-phone-bezel {
    padding: .55rem .5rem .7rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 28px;
    background: #2a2e2b;
    box-shadow:
        0 8px 18px -10px rgba(0, 0, 0, .16),
        inset 0 1px 0 rgba(255, 255, 255, .12);
}

.lp-phone-status {
    display: flex;
    justify-content: space-between;
    padding: .2rem .7rem .45rem;
    color: rgba(255, 255, 255, .72);
    font-size: .62rem;
    letter-spacing: .04em;
}

.lp-phone-app {
    overflow: hidden;
    border-radius: 18px;
    background: #e8ecf2;
}

.lp-phone-top {
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    padding: .55rem .7rem;
    background: var(--lp-app-blue);
    color: #fff;
    font-size: .72rem;
}

.lp-phone-top span {
    opacity: .82;
}

.lp-phone-body {
    display: grid;
    gap: .45rem;
    padding: .6rem;
}

.lp-phone-kpi {
    display: flex;
    gap: .55rem;
    padding: .55rem .6rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
}

.lp-phone-ico {
    flex: 0 0 1.7rem;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 6px;
    background: var(--lp-app-blue);
}

.lp-phone-ico.is-warn {
    background: var(--lp-peach);
}

.lp-phone-kpi span {
    display: block;
    color: #5b6472;
    font-size: .65rem;
}

.lp-phone-kpi strong {
    display: block;
    font-size: .88rem;
    font-weight: 650;
    letter-spacing: -.02em;
}

.lp-phone-list {
    padding: .55rem .6rem .4rem;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 6px;
    background: #fff;
}

.lp-phone-list p {
    margin: 0 0 .35rem;
    font-size: .7rem;
    font-weight: 650;
}

.lp-phone-list .lp-pos-row {
    margin-bottom: .3rem;
    font-size: .7rem;
}

.lp-online {
    align-items: center;
}

.lp-online-visual {
    display: flex;
    justify-content: center;
    will-change: transform;
}

.lp-device-stage {
    width: min(17.5rem, 100%);
    max-width: 100%;
    padding: 1.1rem 1rem 1.2rem;
    border-radius: 36px;
    background: #eef1ea;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
}

.lp-online-visual .lp-phone {
    width: 100%;
}

.lp-tone-dark .lp-phone-bezel {
    background: #2c322e;
    border-color: rgba(23, 26, 24, .2);
    box-shadow:
        0 12px 28px rgba(17, 24, 39, .18),
        inset 0 1px 0 rgba(255, 255, 255, .18);
}

.lp-devices {
    display: flex;
    flex-wrap: wrap;
    gap: .15rem 1.35rem;
    margin-bottom: .35rem;
}

.lp-stagger > :nth-child(1) { --index: 0; --lp-stagger: 0ms; }
.lp-stagger > :nth-child(2) { --index: 1; --lp-stagger: 90ms; }
.lp-stagger > :nth-child(3) { --index: 2; --lp-stagger: 180ms; }
.lp-stagger > :nth-child(4) { --index: 3; --lp-stagger: 270ms; }
.lp-stagger > :nth-child(5) { --index: 4; --lp-stagger: 360ms; }
.lp-stagger > :nth-child(6) { --index: 5; --lp-stagger: 450ms; }
.lp-stagger > :nth-child(7) { --index: 6; --lp-stagger: 540ms; }
.lp-stagger > :nth-child(8) { --index: 7; --lp-stagger: 630ms; }
.lp-stagger > :nth-child(9) { --index: 8; --lp-stagger: 720ms; }

@keyframes lp-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-lp-count] {
    font-variant-numeric: tabular-nums;
}

html.lp-js .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s var(--lp-ease), transform .6s var(--lp-ease);
    transition-delay: var(--lp-stagger, 0ms);
}

html.lp-js .reveal-left {
    transform: translateX(-30px);
}

html.lp-js .reveal-right {
    transform: translateX(30px);
}

html.lp-js .reveal-scale {
    transform: translateY(24px) scale(.985);
}

html.lp-js .reveal-phone {
    transform: translateY(30px) rotate(2deg);
}

html.lp-js .reveal.is-in {
    opacity: 1;
    transform: none;
}

html.lp-js .lp-features .reveal,
html.lp-js .lp-steps .reveal {
    transition: none;
}

html.lp-js .lp-features .reveal.is-in,
html.lp-js .lp-steps .reveal.is-in {
    animation: lp-fade-in-up .6s var(--lp-ease) both;
    animation-delay: calc(var(--index, 0) * 90ms);
}

@media (min-width: 640px) {
    .lp-wrap {
        width: min(var(--lp-wrap), calc(100% - 2.5rem));
    }

    .lp-benefits,
    .lp-features,
    .lp-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lp-pos {
        grid-template-columns: 1.3fr .9fr;
    }

    .lp-hero-phone {
        width: min(16.5rem, 100%);
    }

    .lp-matrix {
        min-width: 0;
    }

    .lp-matrix-scroll::after {
        display: none;
    }

    .lp-device-stage {
        width: min(19.5rem, 100%);
    }

    .lp-modules li + li {
        padding-left: .9rem;
        border-left: 1px solid var(--lp-line);
    }
}

@media (min-width: 1024px) {
    .lp-wrap {
        width: min(var(--lp-wrap), calc(100% - 3rem));
        margin-inline: auto;
    }

    .lp-nav-toggle,
    .lp-backdrop {
        display: none !important;
    }

    .lp-header-inner {
        min-height: var(--lp-header);
    }

    .lp-drawer {
        position: static;
        flex-direction: row;
        align-items: center;
        gap: 1.25rem;
        width: auto;
        height: auto;
        margin-left: auto;
        padding: 0;
        overflow: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
        transform: none;
        visibility: visible;
        pointer-events: auto;
    }

    .lp-nav-layer {
        position: static;
        display: contents;
        overflow: visible;
        visibility: visible;
        pointer-events: auto;
    }

    .lp-nav {
        flex-direction: row;
        gap: 1.35rem;
        margin-left: auto;
    }

    .lp-nav a {
        min-height: 0;
        padding: 0;
        color: var(--lp-subtle);
        font-size: .9375rem;
    }

    .lp-nav a::after {
        bottom: -.2rem;
    }

    .lp-header-actions {
        flex-direction: row;
        align-items: center;
    }

    .lp-header-actions .lp-btn {
        width: auto;
    }

    .lp-hero {
        padding: 4.5rem 0 6.5rem;
        overflow-x: clip;
    }

    .lp-hero-grid {
        grid-template-columns: minmax(0, .82fr) minmax(0, 1.28fr);
        gap: 3.25rem;
    }

    .lp-hero-visual {
        display: block;
        min-height: 24rem;
        padding: .5rem 5.5rem 2.75rem 0;
    }

    .lp-hero-phone {
        position: absolute;
        right: -0.35rem;
        bottom: -1.1rem;
        width: 15.25rem;
        will-change: transform;
        filter: drop-shadow(0 22px 28px rgba(17, 24, 39, .18));
    }

    .lp-section,
    .lp-cta {
        padding: 6rem 0;
    }

    .lp-features,
    .lp-plans,
    .lp-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lp-split {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        gap: 3rem;
    }

    .lp-cta-grid {
        grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
        gap: 3rem;
    }

    .lp-footer-inner {
        grid-template-columns: 1.3fr 1fr 1fr auto;
    }

    .lp-footer a {
        min-height: 0;
    }

    .lp-product-card {
        position: absolute;
        right: -0.85rem;
        bottom: -1.35rem;
        width: 11.5rem;
        margin-top: 0;
        box-shadow: var(--lp-shadow);
        will-change: transform;
    }

    .lp-matrix {
        box-shadow: var(--lp-shadow);
    }

    .lp-matrix td[data-tip]:hover,
    .lp-matrix td[data-tip]:focus-visible {
        transform: scale(1.05);
    }

    .lp-browser {
        overflow: visible;
        box-shadow: var(--lp-shadow);
        transform-style: preserve-3d;
        will-change: transform;
    }

    .lp-app {
        grid-template-columns: 3.1rem minmax(0, 1fr);
        min-height: 18.5rem;
    }

    .lp-app-side {
        display: flex;
    }

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

    .lp-kpi strong {
        font-size: .95rem;
    }

    .lp-float-card {
        display: block;
    }

    .lp-phone-bezel {
        box-shadow:
            0 20px 40px -15px rgba(0, 0, 0, .18),
            inset 0 1px 0 rgba(255, 255, 255, .12);
    }

    .lp-device-stage {
        width: min(19.5rem, 100%);
        padding: 1.35rem 1.2rem 1.5rem;
        box-shadow: 0 28px 50px rgba(0, 0, 0, .28);
    }
}

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

    html.lp-js .reveal,
    html.lp-js .reveal.is-in,
    html.lp-js .lp-features .reveal.is-in,
    html.lp-js .lp-steps .reveal.is-in,
    .lp-btn,
    .lp-browser,
    .lp-plan,
    .lp-nav a::after {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none;
    }

    .lp-btn:hover,
    .lp-browser:hover,
    .lp-matrix td[data-tip]:hover {
        transform: none;
    }

    .lp-parallax-bg,
    .lp-parallax-mid {
        will-change: auto;
        background-attachment: scroll;
    }
}
