/* ============================================================
   Landing page (/) — namespaced under .lp-* to avoid collisions
   Palette aligned to project: #943EEA primary, #C59FFF accent
   ============================================================ */

/* Page-level: gradient lives on BODY so it covers the area behind the navbar too
   (otherwise the navbar floats over a solid black strip while the hero glows below).
   background-attachment: fixed pins the glow to the viewport top regardless of scroll. */
body:has(.lp-root) {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%,
            rgba(148, 62, 234, 0.22) 0%,
            rgba(148, 62, 234, 0.08) 40%,
            transparent 70%),
        linear-gradient(180deg, #0B0215 0%, #07000F 100%) !important;
    background-attachment: fixed !important;
}

/* Hero section: bg now transparent so the body gradient shows through continuously
   from the very top of the page through the navbar and hero. */
body:has(.lp-root) .hero-section {
    background: transparent !important;
    min-height: auto;
}

/* Navbar tint — original is a navy-blue rgba that clashes with the new darker bg.
   Restyle just for the landing page so it blends in.
   No box-shadow: the original purple glow paints a visible rectangular halo
   behind the pill that reads as a different surface color. */
body:has(.lp-root) .navbar-custom {
    background: rgba(11, 2, 21, 0.55) !important;
    border: 1px solid rgba(197, 159, 255, 0.12) !important;
    box-shadow: none !important;
}

/* Headline width constraint — match the design's tighter line wrap and centering. */
body:has(.lp-root) .hero-title {
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-wrap: balance;
}

body:has(.lp-root) .hero-description {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    text-wrap: pretty;
}

.lp-root {
    --lp-bg: #0B0215;
    --lp-surf: #15082A;
    --lp-surf-2: #1d0c36;
    --lp-primary: #943EEA;
    --lp-accent: #C59FFF;
    --lp-text: #F5EDFF;
    --lp-mute: rgba(245, 237, 255, 0.65);
    --lp-mute-2: rgba(245, 237, 255, 0.4);
    --lp-border: rgba(197, 159, 255, 0.14);
    --lp-border-strong: rgba(197, 159, 255, 0.28);
    --lp-grad: linear-gradient(135deg, #943EEA 0%, #C59FFF 100%);
    color: var(--lp-text);
}

/* Shared wrap */
.lp-wrap {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-center {
    text-align: center;
}

.lp-section {
    padding: 80px 0;
    position: relative;
}

.lp-section.lp-tight {
    padding-top: 0;
}

/* Typography */
.lp-h-sec {
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.lp-lede {
    color: var(--lp-mute);
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
}

.lp-body {
    color: var(--lp-mute);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 20px 0;
}

.lp-grad {
    background: var(--lp-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Eyebrow chip */
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(197, 159, 255, 0.1);
    border: 1px solid var(--lp-border-strong);
    color: var(--lp-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lp-eyebrow svg {
    width: 14px;
    height: 14px;
}

.lp-eyebrow.lp-flag {
    background: rgba(197, 159, 255, 0.14);
}

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
    white-space: nowrap;
}

.lp-btn svg {
    width: 18px;
    height: 18px;
}

.lp-btn-lav {
    background: var(--lp-grad);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(148, 62, 234, 0.32);
}

.lp-btn-lav:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(148, 62, 234, 0.45);
    color: #ffffff;
    filter: brightness(1.08);
}

.lp-btn-bright {
    background: #ffffff;
    color: #2a0a4a;
    padding: 16px 36px;
    font-size: 1.05rem;
}

.lp-btn-bright:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.25);
    color: #2a0a4a;
}

/* ============================================================
   HERO embellishments (chips + press strip) — wraps existing hero block
   ============================================================ */
.lp-hero-decor {
    padding: 14px 0 0;
}

/* Hero CTA row — primary lavender fill + ghost secondary, stacked on mobile */
body:has(.lp-root) .hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 6px;
}

body:has(.lp-root) .btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--lp-accent);
    background: rgba(197, 159, 255, 0.08);
    border: 1px solid var(--lp-border-strong);
    transition: all 0.2s ease;
}

body:has(.lp-root) .btn-cta-secondary:hover {
    background: rgba(197, 159, 255, 0.16);
    border-color: var(--lp-accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.lp-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.lp-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(197, 159, 255, 0.08);
    border: 1px solid var(--lp-border);
    color: var(--lp-text);
    font-size: 0.86rem;
    font-weight: 500;
}

.lp-chip svg {
    width: 16px;
    height: 16px;
    color: var(--lp-accent);
}

/* Press bar — full-bleed marquee with continuous slide. */
.lp-press-bar {
    width: 100%;
    margin: 56px 0 0;
    padding: 28px 0 32px;
    background: rgba(190, 164, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.lp-press-label {
    display: block;
    text-align: center;
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
    font-weight: 700;
}

.lp-press-marquee {
    width: 100%;
    overflow: hidden;
    /* Fade the edges so logos slide in/out gracefully instead of popping */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

.lp-press-track {
    display: flex;
    align-items: center;
    gap: 72px;
    width: max-content;
    animation: lp-press-slide 40s linear infinite;
}

.lp-press-bar:hover .lp-press-track {
    animation-play-state: paused;
}

.lp-press-track img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    flex-shrink: 0;
    transition: filter 0.15s ease;
}

.lp-press-track img:hover {
    filter: brightness(1.15);
}

@keyframes lp-press-slide {
    from { transform: translateX(0); }
    /* The track holds 2 copies of the logo list; translating -50% loops seamlessly. */
    to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .lp-press-track { animation: none; }
}

/* ============================================================
   How it works — 3 numbered cards
   ============================================================ */
.lp-howgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 44px;
}

.lp-howcard {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    padding: 28px;
    text-align: left;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-howcard:hover {
    transform: translateY(-3px);
    border-color: var(--lp-border-strong);
    box-shadow: 0 14px 40px rgba(148, 62, 234, 0.18);
}

.lp-howcard .lp-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.lp-howcard .lp-num {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--lp-grad);
    color: #ffffff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-howcard .lp-ic {
    width: 30px;
    height: 30px;
    color: var(--lp-accent);
}

.lp-howcard h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.lp-howcard p {
    color: var(--lp-mute);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

/* ============================================================
   Feature row (text + image, alternating)
   ============================================================ */
.lp-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lp-feature.lp-rev .lp-ftext {
    order: 2;
}

.lp-feature.lp-rev .lp-fmedia {
    order: 1;
}

.lp-ftext h2 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 18px 0;
    letter-spacing: -0.01em;
}

.lp-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-checks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--lp-mute);
    font-size: 0.95rem;
    line-height: 1.5;
}

.lp-cm {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(110, 231, 183, 0.14);
    color: #6ee7b7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.lp-cm svg {
    width: 14px;
    height: 14px;
}

.lp-fmedia {
    position: relative;
}

.lp-fmedia img,
.lp-fmedia .lp-img-placeholder {
    width: 100%;
    border-radius: 22px;
    background: var(--lp-surf-2);
    box-shadow: 0 24px 80px rgba(148, 62, 234, 0.22);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.lp-img-placeholder {
    background: linear-gradient(135deg, rgba(148, 62, 234, 0.35), rgba(197, 159, 255, 0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-mute);
    font-size: 0.85rem;
    border: 1px dashed var(--lp-border-strong);
}

/* ============================================================
   Pill grid (categories + brands)
   ============================================================ */
.lp-pillgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 36px;
}

.lp-pillgrid.lp-cols-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.lp-pillcard {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--lp-border);
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
    color: var(--lp-text);
}

.lp-pillcard:hover {
    background: rgba(197, 159, 255, 0.08);
    border-color: var(--lp-border-strong);
    transform: translateY(-2px);
    color: var(--lp-text);
}

.lp-pillcard .lp-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(197, 159, 255, 0.12);
    color: var(--lp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-pillcard .lp-ico svg {
    width: 18px;
    height: 18px;
}

.lp-pillcard .lp-lab {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 600;
}

.lp-pillcard .lp-arr {
    width: 18px;
    height: 18px;
    color: var(--lp-mute-2);
    transition: transform 0.15s ease, color 0.15s ease;
}

.lp-pillcard:hover .lp-arr {
    color: var(--lp-accent);
    transform: translateX(3px);
}

/* ============================================================
   Why people use — 4 reason cards
   ============================================================ */
.lp-whygrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 44px;
}

.lp-whycard {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.2s ease;
}

.lp-whycard:hover {
    border-color: var(--lp-border-strong);
    transform: translateY(-3px);
}

.lp-whycard .lp-ico {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(197, 159, 255, 0.12);
    color: var(--lp-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.lp-whycard .lp-ico svg {
    width: 20px;
    height: 20px;
}

.lp-whycard h3 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 6px 0;
}

.lp-whycard p {
    color: var(--lp-mute);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   Loved by + horizontal-scroll gallery
   ============================================================ */
.lp-loved-head {
    text-align: center;
    margin-bottom: 36px;
}

.lp-loved-head .lp-eyebrow {
    margin-bottom: 16px;
}

.lp-loved-head .lp-lede {
    margin-top: 14px;
}

.lp-gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.lp-gallery-head h3 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}

.lp-gnav {
    display: flex;
    gap: 8px;
}

.lp-gbtn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--lp-border);
    color: var(--lp-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s ease;
}

.lp-gbtn:hover {
    background: rgba(197, 159, 255, 0.14);
    border-color: var(--lp-border-strong);
    color: var(--lp-accent);
}

.lp-gbtn svg {
    width: 16px;
    height: 16px;
}

.lp-gallery {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 6px;
}

.lp-gallery::-webkit-scrollbar {
    display: none;
}

.lp-gcard {
    flex: 0 0 308px;
    height: 308px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    background: var(--lp-surf-2);
    border: 1px solid var(--lp-border);
}

.lp-gcard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-glab {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(11, 2, 21, 0.78);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ============================================================
   Testimonials
   ============================================================ */
.lp-tgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.lp-tcard {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    padding: 24px;
    transition: all 0.2s ease;
}

.lp-tcard:hover {
    border-color: var(--lp-border-strong);
    transform: translateY(-2px);
}

.lp-stars {
    display: flex;
    gap: 2px;
    color: #FFD15A;
    margin-bottom: 14px;
}

.lp-stars svg {
    width: 16px;
    height: 16px;
}

.lp-tcard blockquote {
    color: var(--lp-text);
    font-size: 0.98rem;
    line-height: 1.55;
    margin: 0 0 18px 0;
    font-weight: 500;
}

.lp-tperson {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-tav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--lp-grad);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.lp-tperson .lp-nm {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.2;
}

.lp-tperson .lp-loc {
    color: var(--lp-mute);
    font-size: 0.8rem;
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.lp-faqwrap {
    max-width: 820px;
    margin: 36px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-faq {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.lp-faq.lp-open {
    border-color: var(--lp-border-strong);
}

.lp-faq button {
    width: 100%;
    background: transparent;
    color: #ffffff;
    text-align: left;
    padding: 18px 22px;
    border: 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.lp-faq .lp-pm {
    width: 20px;
    height: 20px;
    color: var(--lp-accent);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.lp-faq.lp-open .lp-pm {
    transform: rotate(45deg);
}

.lp-faq .lp-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.lp-faq .lp-ans p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--lp-mute);
    font-size: 0.96rem;
    line-height: 1.6;
}

/* ============================================================
   Final CTA banner
   ============================================================ */
.lp-finalcta {
    background: linear-gradient(135deg, #2a0a4a 0%, #15082A 100%);
    border: 1px solid var(--lp-border-strong);
    border-radius: 24px;
    padding: 56px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-finalcta::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 159, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.lp-finalcta > * {
    position: relative;
    z-index: 1;
}

.lp-finalcta h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.lp-finalcta .lp-lede {
    margin: 0 auto 28px;
}

/* ============================================================
   SEO link-cloud (3-column internal-link cluster above footer)
   ============================================================ */
.lp-linkcloud {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 28px 0 12px;
    border-top: 1px solid var(--lp-border);
}

.lp-linkcloud-col h3 {
    color: var(--lp-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 14px 0;
}

.lp-linkcloud-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-linkcloud-col a {
    color: var(--lp-mute);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.15s ease;
}

.lp-linkcloud-col a:hover {
    color: var(--lp-accent);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
    .lp-howgrid,
    .lp-tgrid,
    .lp-whygrid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .lp-feature {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .lp-feature.lp-rev .lp-ftext,
    .lp-feature.lp-rev .lp-fmedia {
        order: initial;
    }
}

@media (max-width: 900px) {
    .lp-linkcloud {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .lp-section {
        padding: 56px 0;
    }

    .lp-howgrid,
    .lp-tgrid,
    .lp-whygrid,
    .lp-pillgrid,
    .lp-linkcloud {
        grid-template-columns: 1fr;
    }

    .lp-press-bar {
        margin-top: 40px;
        padding: 22px 0 24px;
    }

    .lp-press-track {
        gap: 44px;
        animation-duration: 30s;
    }

    .lp-press-track img {
        height: 32px;
        max-width: 130px;
    }

    .lp-press-label {
        font-size: 0.64rem;
        margin-bottom: 16px;
    }

    .lp-press-marquee {
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 32px, #000 calc(100% - 32px), transparent 100%);
    }

    .lp-gcard {
        flex: 0 0 240px;
        height: 240px;
    }

    .lp-finalcta {
        padding: 40px 20px;
    }
}
