:root {
    --lp-ink: #0b1220;
    --lp-muted: #64748b;
    --lp-navy: #0a1630;
    --lp-navy-2: #122447;
    --lp-yellow: #f5c518;
    --lp-yellow-2: #ffe566;
    --lp-blue: #2563eb;
    --lp-bg: #f4f6fb;
    --lp-card: #ffffff;
    --lp-line: #e2e8f0;
    --lp-font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --lp-display: 'Unbounded', system-ui, sans-serif;
    --lp-hand: 'Caveat', cursive;
}

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

html {
    scroll-behavior: smooth;
    background: #dbe3f0;
}

body.lp {
    margin: 0 auto;
    max-width: 480px;
    min-height: 100dvh;
    font-family: var(--lp-font);
    color: var(--lp-ink);
    background: var(--lp-bg);
    line-height: 1.5;
    box-shadow: 0 0 48px rgba(15, 23, 42, 0.12);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.lp-wrap {
    width: calc(100% - 1.5rem);
    margin-inline: auto;
}

/* Nav — white */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lp-line);
}
.lp-nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 3.75rem;
}
.lp-brand img {
    height: 2.2rem;
    width: auto;
    object-fit: contain;
}
.lp-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--lp-line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.65rem 1rem 1rem;
    gap: 0.35rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}
.lp-nav-links.is-open { display: flex; }
.lp-nav-links > a:not(.lp-btn) {
    font-size: 0.92rem;
    font-weight: 650;
    color: #334155;
    padding: 0.7rem 0.35rem;
}
.lp-nav-links > a:not(.lp-btn):hover { color: var(--lp-navy); }
.lp-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--lp-line);
    background: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.7rem;
    color: var(--lp-navy);
    cursor: pointer;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 0.85rem;
    font-weight: 800;
    font-size: 0.86rem;
    padding: 0.55rem 1.05rem;
    border: 1px solid transparent;
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.lp-btn:hover { transform: translateY(-1px); }
.lp-btn-primary {
    background: linear-gradient(180deg, var(--lp-yellow-2), var(--lp-yellow));
    color: #111827;
    box-shadow: 0 8px 20px rgba(245, 197, 24, 0.35);
}
.lp-btn-primary:hover { filter: brightness(1.04); }
.lp-btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}
.lp-nav .lp-btn-ghost {
    border-color: var(--lp-line);
    color: var(--lp-navy);
    background: #fff;
}
.lp-nav-links .lp-btn {
    width: 100%;
    margin-top: 0.15rem;
}
.lp-btn-lg {
    padding: 0.85rem 1.35rem;
    font-size: 0.92rem;
    width: 100%;
}

/* Hero — mobile first */
.lp-hero {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0 2rem;
    background: #050a18;
    color: #fff;
    min-height: 0;
}
.lp-hero-media {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: #050a18;
}
.lp-hero-media-nebula {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    filter: saturate(1.08) contrast(1.05);
}
.lp-hero-media-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 10, 24, 0.55) 0%, rgba(5, 10, 24, 0.35) 40%, rgba(5, 10, 24, 0.72) 100%);
}
.lp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
}
.lp-hero-copy { order: 2; }
.lp-hero-visual {
    order: 1;
    justify-self: center;
    width: min(100%, 280px);
}
.lp-hero-visual img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.45));
}
.lp-eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0b1220;
    background: linear-gradient(90deg, var(--lp-yellow), var(--lp-yellow-2));
    margin: 0 0 0.75rem;
    padding: 0.32rem 0.7rem;
    border-radius: 999px;
}
.lp-section-head .lp-eyebrow {
    background: transparent;
    color: var(--lp-blue);
    padding: 0;
}
.lp-hero h1 {
    font-family: var(--lp-display);
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin: 0;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.lp-hero h1 strong,
.lp-hero h1 b,
.lp-hero h1 em {
    color: var(--lp-yellow);
    font-style: normal;
}
.lp-lead {
    margin: 0.85rem auto 0;
    color: #cbd5e1;
    font-size: 0.92rem;
    max-width: 22rem;
}
.lp-hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 1.2rem;
}
.lp-hero .lp-btn-ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}
.lp-pills {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.45rem;
    padding: 0;
    margin: 1.15rem 0 0;
}
.lp-pills li {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
}
.lp-pills i { color: var(--lp-yellow); }

@keyframes lp-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}
.lp-hero-visual > img {
    animation: lp-float 5s ease-in-out infinite;
}

.lp-scribble {
    font-family: var(--lp-hand);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--lp-yellow);
    margin: 0;
    line-height: 1.15;
}
.lp-scribble-center {
    text-align: center;
    margin-top: 1.5rem;
}
.lp-scribble.is-light { color: var(--lp-yellow-2); }

/* Strip */
.lp-strip {
    margin-top: -1.75rem;
    position: relative;
    z-index: 2;
    padding-bottom: 0.5rem;
}
.lp-strip-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}
.lp-strip article {
    background: var(--lp-card);
    border: 1px solid var(--lp-line);
    border-radius: 1.15rem;
    padding: 1.2rem 1.2rem 1.25rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}
.lp-strip-ico,
.lp-ico-bubble {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 999px;
    font-size: 1.05rem;
    line-height: 1;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow:
        0 8px 16px rgba(15, 23, 42, 0.18),
        inset 0 2px 0 rgba(255, 255, 255, 0.45),
        inset 0 -3px 0 rgba(0, 0, 0, 0.12);
    overflow: hidden;
}
.lp-strip-ico > i,
.lp-ico-bubble > i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
    font-style: normal;
    font-size: 1em;
    display: block;
}
.lp-strip-ico > i::before,
.lp-ico-bubble > i::before {
    display: block;
    line-height: 1;
    margin: 0;
}
.lp-strip-ico.is-yellow,
.lp-ico-bubble.is-yellow {
    background: linear-gradient(160deg, #ffe566 0%, #f5c518 45%, #eab308 100%);
    color: #7c2d12;
}
.lp-strip-ico.is-blue,
.lp-ico-bubble.is-blue {
    background: linear-gradient(160deg, #60a5fa 0%, #3b82f6 45%, #1d4ed8 100%);
    color: #fff;
}
.lp-strip-ico.is-green,
.lp-ico-bubble.is-green {
    background: linear-gradient(160deg, #4ade80 0%, #22c55e 45%, #15803d 100%);
    color: #fff;
}
.lp-ico-bubble.is-red {
    background: linear-gradient(160deg, #fb7185 0%, #f43f5e 45%, #e11d48 100%);
    color: #fff;
}
.lp-ico-bubble.is-sm {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.9rem;
}
.lp-strip h3 {
    font-family: var(--lp-display);
    font-size: 0.88rem;
    margin: 0.65rem 0 0.3rem;
}
.lp-strip p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.84rem;
}

/* Sections */
.lp-section { padding: 2.75rem 0; }
.lp-section-alt {
    background: #fff;
    border-block: 1px solid var(--lp-line);
}
.lp-section-head {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto 2rem;
}
.lp-section-head-left {
    text-align: left;
    margin-left: 0;
}
.lp-section-head h2 {
    font-family: var(--lp-display);
    font-size: clamp(1.4rem, 2.6vw, 2.05rem);
    letter-spacing: -0.03em;
    margin: 0;
    line-height: 1.15;
}
.lp-section-head p {
    margin: 0.7rem 0 0;
    color: var(--lp-muted);
}

.lp-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: stretch;
}
.lp-steps article {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 1.15rem;
    padding: 1.55rem 1.15rem 1.35rem;
    position: relative;
    text-align: center;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}
.lp-step-num {
    position: absolute;
    top: -0.65rem;
    left: -0.55rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    background: #6d28d9;
    color: #fff;
    font-family: var(--lp-display);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 6px 14px rgba(109, 40, 217, 0.35);
    z-index: 1;
}
.lp-step-ico {
    margin: 0.15rem auto 0;
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 0;
    display: grid;
    place-items: center;
    background: transparent;
    border: 0;
    overflow: visible;
}
.lp-step-ico img {
    width: 3.4rem;
    height: 3.4rem;
    object-fit: contain;
}
.lp-steps h3 {
    font-family: var(--lp-display);
    font-size: 0.98rem;
    margin: 0.75rem 0 0.45rem;
    color: #0f172a;
}
.lp-steps p {
    margin: 0 auto;
    color: #64748b;
    font-size: 0.86rem;
    max-width: 16rem;
    line-height: 1.45;
}
.lp-step-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.95rem;
    align-self: center;
    transform: rotate(90deg);
    padding: 0.1rem 0;
}

/* Catalog */
.lp-catalog {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.lp-card {
    display: block;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 1.2rem;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(10, 22, 48, 0.12);
}
.lp-card-media {
    position: relative;
    background: #0f172a;
}
.lp-card-media img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: contain;
}
.lp-card-price {
    position: absolute;
    left: 0.7rem;
    bottom: 0.7rem;
    background: var(--lp-yellow);
    color: #111827;
    font-family: var(--lp-display);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.32rem 0.6rem;
    border-radius: 999px;
}
.lp-card-body { padding: 0.95rem 1rem 1.1rem; }
.lp-card-body h3 {
    font-family: var(--lp-display);
    font-size: 0.95rem;
    margin: 0;
}
.lp-card-body p {
    margin: 0.35rem 0 0;
    color: var(--lp-muted);
    font-size: 0.78rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lp-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.8rem;
    color: #92400e;
    font-size: 0.8rem;
    font-weight: 800;
}
.lp-empty {
    text-align: center;
    color: var(--lp-muted);
    padding: 2rem;
    background: #fff;
    border: 1px dashed var(--lp-line);
    border-radius: 1rem;
}

/* Stores */
.lp-stores-section {
    position: relative;
    overflow: hidden;
    background: #f4f7fb;
    padding: 2.75rem 0;
    min-height: 0;
}
.lp-stores-bg {
    position: absolute;
    inset: 0;
    background-image: var(--lp-stores-bg);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}
.lp-stores-section .lp-wrap {
    position: relative;
    z-index: 1;
}
.lp-stores-inner {
    display: flex;
    align-items: center;
    min-height: 0;
}
.lp-stores-copy {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 1.25rem;
    padding: 1.15rem 1.05rem 1.2rem;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.lp-checklist {
    list-style: none;
    padding: 0;
    margin: 1.1rem 0 0;
    display: grid;
    gap: 0.85rem;
}
.lp-checklist li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.lp-checklist .lp-ico-bubble {
    margin-top: 0;
    align-self: flex-start;
}
.lp-checklist strong {
    display: block;
    font-size: 0.9rem;
    color: var(--lp-ink);
}
.lp-checklist span {
    display: block;
    color: var(--lp-muted);
    font-size: 0.8rem;
    line-height: 1.4;
}
.lp-stores {
    margin-top: 1.1rem;
    display: grid;
    gap: 0.5rem;
}
.lp-store-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 999px;
    padding: 0.55rem 0.85rem 0.55rem 0.55rem;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--lp-ink);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}
.lp-store-item .lp-ico-bubble {
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.88rem;
}

/* FAQ */
.lp-faq-wrap { max-width: 760px; }
.lp-faq details {
    background: #fff;
    border: 1px solid var(--lp-line);
    border-radius: 0.95rem;
    padding: 0.2rem 1rem;
    margin-bottom: 0.55rem;
}
.lp-faq summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.9rem 0;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
    content: '+';
    float: right;
    color: var(--lp-navy);
    font-weight: 800;
}
.lp-faq details[open] summary::after { content: '−'; }
.lp-faq p {
    margin: 0 0 0.95rem;
    color: var(--lp-muted);
    font-size: 0.9rem;
}

/* CTA band */
.lp-cta-band {
    position: relative;
    overflow: hidden;
    padding: 3.8rem 0;
    background: #070f22;
    color: #fff;
    text-align: center;
}
.lp-cta-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
    pointer-events: none;
}
.lp-cta-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(5, 10, 24, 0.82), rgba(12, 28, 58, 0.72));
    pointer-events: none;
}
.lp-cta-band .lp-wrap { position: relative; z-index: 1; }
.lp-cta-band h2 {
    font-family: var(--lp-display);
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    margin: 0;
}
.lp-cta-band p {
    margin: 0.65rem 0 0;
    color: #cbd5e1;
}
.lp-cta-band .lp-hero-cta { justify-content: center; }
.lp-cta-band .lp-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}
button.lp-btn { font: inherit; }

/* Footer — white */
.lp-footer {
    background: #fff;
    color: #64748b;
    padding: 2.25rem 0 1.25rem;
    border-top: 1px solid var(--lp-line);
}
.lp-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--lp-line);
}
.lp-footer-logo {
    height: 2rem;
    width: auto;
    margin-bottom: 0.65rem;
}
.lp-footer h4 {
    color: var(--lp-ink);
    font-size: 0.82rem;
    margin: 0 0 0.55rem;
    font-family: var(--lp-display);
}
.lp-footer a,
.lp-footer p {
    display: block;
    font-size: 0.82rem;
    margin: 0.3rem 0;
    color: #64748b;
}
.lp-footer a:hover { color: var(--lp-navy); }
.lp-pay, .lp-secure {
    display: flex !important;
    align-items: center;
    gap: 0.45rem;
}
.lp-pay i { color: #14b8a6; }
.lp-secure i { color: #34d399; }
.lp-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding-top: 1rem;
    font-size: 0.72rem;
    text-align: center;
}

@media (max-width: 480px) {
    .lp-stores-bg {
        background-position: center right;
        opacity: 0.4;
    }
    .lp-stores-section {
        background: linear-gradient(180deg, #f8fafc, #eef2ff);
        min-height: 0;
        padding: 2.5rem 0;
    }
    .lp-stores-inner { min-height: 0; }
}
