﻿/* ===== Theme (keep your colors) ===== */
:root {
    --bg: #0E1014;
    --bg2: #12151B;
    --surface: rgba(255,255,255,.03);
    --surface2: rgba(255,255,255,.05);
    --border: rgba(255,255,255,.10);
    --border2: rgba(255,255,255,.14);
    --text: rgba(255,255,255,.90);
    --muted: rgba(255,255,255,.72);
    --subtle: rgba(255,255,255,.56);
    --gold: #D3B06A;
    --goldSoft: rgba(211,176,106,.18);
    --goldBorder: rgba(211,176,106,.35);
    --aqua: #86B7FF;
    --aquaSoft: rgba(134,183,255,.14);
    --shadow: 0 18px 60px rgba(0,0,0,.55);
}

html, body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
}

/* ===== Page shell ===== */
.lp {
    min-height: 100vh;
}

/* ===== Buttons ===== */
.lpBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.04);
    color: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .lpBtn:hover {
        background: rgba(255,255,255,.06);
    }

.lpBtn--primary {
    background: var(--goldSoft);
    border-color: var(--goldBorder);
}

    .lpBtn--primary:hover {
        background: rgba(211,176,106,.24);
    }

.lpBtn--ghost {
    background: rgba(255,255,255,.03);
}

    .lpBtn--ghost:hover {
        background: rgba(0,0,0,.28);
    }

.lpBtn--soft {
    background: rgba(134,183,255,.10);
    border-color: rgba(134,183,255,.28);
}

    .lpBtn--soft:hover {
        background: rgba(134,183,255,.16);
    }

/* ===== Pills / tags ===== */
.lpPill {
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.03);
    color: rgba(255,255,255,.78);
    font-size: 12px;
    letter-spacing: .02em;
}

.lpTagRow {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lpTag {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(134, 183, 255, 0.3);
    background: rgba(134, 183, 255, 0.08);
    color: rgba(134, 183, 255, 0.85);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    transition: all 0.3s ease;
}

    .lpTag:nth-child(1) { animation-delay: 0.55s; }
    .lpTag:nth-child(2) { animation-delay: 0.65s; }
    .lpTag:nth-child(3) { animation-delay: 0.75s; }

    .lpTag:hover {
        background: rgba(134, 183, 255, 0.15);
        border-color: rgba(134, 183, 255, 0.6);
        box-shadow: 0 0 10px rgba(134, 183, 255, 0.4), inset 0 0 10px rgba(134, 183, 255, 0.05);
        transform: translateY(-2px);
    }

/* ===== Top nav (Discord-ish) ===== */
.lpNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.45), rgba(0,0,0,0));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.lpNav__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
}

.lpBrand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
}

.lpBrand__mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    color: rgba(0,0,0,.9);
    background: linear-gradient(135deg, rgba(211,176,106,1), rgba(255,255,255,.75));
    box-shadow: 0 10px 30px rgba(211,176,106,.18);
}

.lpBrand__name {
    font-weight: 900;
    letter-spacing: .10em;
    font-size: 13px;
    opacity: .92;
}

.lpNav__links {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 18px;
}

.lpNav__link {
    text-decoration: none;
    color: rgba(255,255,255,.78);
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 700;
}

    .lpNav__link:hover {
        color: #fff;
        background: rgba(255,255,255,.08);
    }

.lpNav__actions {
    justify-self: end;
}

/* ===== Hero ===== */
.lpHero {
    position: relative;
    padding-top: 86px; /* nav spacing */
    min-height: 92vh;
    overflow: hidden;
}

/* “Discord-like” background: stars + gradients */
.lpHero__bg {
    position: absolute;
    inset: -40%;
    background: radial-gradient(1200px 700px at 18% 0%, rgba(211,176,106,.12), rgba(0,0,0,0) 60%), radial-gradient(900px 600px at 78% 18%, rgba(134,183,255,.12), rgba(0,0,0,0) 55%), radial-gradient(800px 600px at 50% 95%, rgba(255,255,255,.06), rgba(0,0,0,0) 60%), linear-gradient(to bottom, rgba(255,255,255,.03), rgba(255,255,255,0));
    filter: blur(6px);
    opacity: .95;
    pointer-events: none;
}

.lpHero__inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 54px 20px 36px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 26px;
    align-items: center;
}

.lpKicker {
    color: rgba(211,176,106,.92);
    letter-spacing: var(--ls-kicker);
    text-transform: uppercase;
    font-size: var(--fs-kicker);
    font-weight: var(--fw-kicker);
    margin: 0 0 10px;
}

.lpHero__title {
    margin: 0 0 12px;
    font-size: var(--fs-title);
    font-weight: var(--fw-title);
    letter-spacing: var(--ls-title);
    line-height: var(--lh-title);
    color: rgba(255,255,255,.94);
    text-shadow: 0 4px 18px rgba(0,0,0,.55);
}

.lpHero__lead {
    margin: 0;
    max-width: 60ch;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--muted);
}

.lpHero__cta {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lpHero__meta {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lpHero__media {
    display: grid;
    justify-items: end;
}

/* Mock preview (you replace with image/video later) */
.lpMock {
    width: min(520px, 92vw);
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(15,18,22,.72);
    box-shadow: 0 30px 120px rgba(0,0,0,.65);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.lpMock__top {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.lpMock__dots {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lpDot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
}

.lpMock__title {
    color: rgba(255,255,255,.75);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .06em;
}

.lpMock__body {
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 300px;
}

.lpMock__sidebar {
    border-right: 1px solid rgba(255,255,255,.07);
    background: linear-gradient(to bottom, rgba(255,255,255,.03), rgba(255,255,255,0));
}

.lpMock__content {
    padding: 14px;
    display: grid;
    gap: 12px;
}

.lpMock__card {
    height: 72px;
    border-radius: 16px;
    border: 1px solid rgba(134,183,255,0.25);
    background: radial-gradient(600px 200px at 20% 20%, rgba(134,183,255,.2), rgba(0,0,0,0) 60%), linear-gradient(135deg, rgba(211,176,106,.12), rgba(134,183,255,.08));
    animation: lpCardSlideIn 12s cubic-bezier(0.22, 1.15, 0.36, 1) infinite;
    opacity: 0;
}

.lpMock__card:nth-child(1) {
    animation-delay: 0s;
}

.lpMock__card:nth-child(2) {
    animation-delay: -0.15s;
}

.lpMock__card:nth-child(3) {
    animation-delay: -0.3s;
}

@keyframes lpCardSlideIn {
    0%, 36% {
        opacity: 0;
        transform: translateY(20px);
    }
    38% {
        opacity: 1;
        transform: translateY(2px);
    }
    41% {
        opacity: 1;
        transform: translateY(-4px);
    }
    44% {
        opacity: 1;
        transform: translateY(0);
    }
    44%, 62% {
        opacity: 1;
        transform: translateY(0);
    }
    67%, 100% {
        opacity: 0;
        transform: translateY(-18px);
    }
}

.lpHero__fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(14,16,20,1));
}

/* ===== Carousel ===== */
.lpMockCarousel {
    position: relative;
    width: min(520px, 92vw);
    height: 360px;
    overflow: hidden;
}

.lpMock--carousel {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    top: 0;
    left: 0;
}

.lpMock--carousel:nth-child(1) {
    animation: lpCarouselFade1 12s infinite;
}

.lpMock--carousel:nth-child(2) {
    animation: lpCarouselFade2 12s infinite;
}

.lpMock--carousel:nth-child(3) {
    animation: lpCarouselFade3 12s infinite;
}

@keyframes lpCarouselFade1 {
    0%, 100% {
        opacity: 0;
    }
    5%, 30% {
        opacity: 1;
    }
    35%, 100% {
        opacity: 0;
    }
}

@keyframes lpCarouselFade2 {
    0%, 32% {
        opacity: 0;
    }
    37%, 62% {
        opacity: 1;
    }
    67%, 100% {
        opacity: 0;
    }
}

@keyframes lpCarouselFade3 {
    0%, 64% {
        opacity: 0;
    }
    69%, 94% {
        opacity: 1;
    }
    99%, 100% {
        opacity: 0;
    }
}

.lpMock--phone {
    width: 200px;
    height: 360px;
    border-radius: 40px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border: 8px solid rgba(255,255,255,.12);
    background: rgba(0,0,0,.5);
}

.lpMock--phone .lpMock__body {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.lpMock__notch {
    height: 24px;
    background: rgba(0,0,0,.8);
    border-radius: 0 0 16px 16px;
    margin: 0 auto;
    width: 120px;
    margin-bottom: 8px;
}

.lpMock__body--web {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
}

/* Website Header/Navigation - Minimal */
.lpWebsite__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 28px;
    padding: 8px;
    border-bottom: 1px solid rgba(134,183,255,0.2);
}

.lpWebsite__logo {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(211,176,106,1), rgba(134,183,255,0.9));
    border-radius: 3px;
    animation: lpLogoFadeIn 0.34s cubic-bezier(0.22, 1.15, 0.36, 1) forwards;
    opacity: 0;
}

@keyframes lpLogoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(6px) scale(0.86);
    }
    68% {
        opacity: 1;
        transform: translateY(-2px) scale(1.08);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Navigation - Simplified */
.lpWebsite__nav {
    display: flex;
    gap: 6px;
    margin: 0;
}

.lpWebsite__nav-item {
    height: 3px;
    width: 24px;
    background: linear-gradient(90deg, rgba(134,183,255,0.85), rgba(211,176,106,0.8));
    border-radius: 1.5px;
    animation: lpNavItemFade 0.26s cubic-bezier(0.22, 1.15, 0.36, 1) forwards;
    opacity: 0;
}

.lpWebsite__nav-item:nth-child(1) {
    animation-delay: 0.05s;
}

.lpWebsite__nav-item:nth-child(2) {
    animation-delay: 0.08s;
}

@keyframes lpNavItemFade {
    0% {
        opacity: 0;
        transform: scaleX(0.6) translateY(2px);
    }
    70% {
        opacity: 1;
        transform: scaleX(1.08) translateY(-1px);
    }
    100% {
        opacity: 1;
        transform: scaleX(1) translateY(0);
    }
}

/* Hero Section - Clean */
.lpWebsite__hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 16px 8px;
}

.lpWebsite__hero-title {
    height: 10px;
    background: linear-gradient(90deg, rgba(134,183,255,0.95), rgba(211,176,106,0.85));
    border-radius: 2px;
    animation: lpTitleGrow 0.36s cubic-bezier(0.22, 1.15, 0.36, 1) forwards;
    width: 0;
    margin-bottom: 2px;
}

@keyframes lpTitleGrow {
    0% {
        width: 0;
        opacity: 0;
    }
    72% {
        width: 82%;
        opacity: 1;
    }
    100% {
        width: 75%;
        opacity: 1;
    }
}

.lpWebsite__hero-title {
    animation-delay: 0.14s;
}

.lpWebsite__hero-subtitle {
    height: 5px;
    background: linear-gradient(90deg, rgba(211,176,106,0.8), rgba(134,183,255,0.7));
    border-radius: 1px;
    animation: lpSubtitleGrow 0.32s cubic-bezier(0.22, 1.15, 0.36, 1) forwards;
    width: 0;
    opacity: 0;
}

@keyframes lpSubtitleGrow {
    0% {
        width: 0;
        opacity: 0;
    }
    72% {
        width: 62%;
        opacity: 1;
    }
    100% {
        width: 55%;
        opacity: 1;
    }
}

.lpWebsite__hero-subtitle {
    animation-delay: 0.19s;
}

/* Footer/CTA */
.lpWebsite__footer {
    display: flex;
    align-items: center;
    padding: 0 8px 8px;
}

.lpWebsite__button {
    height: 7px;
    width: 50px;
    background: linear-gradient(90deg, rgba(134,183,255,0.95), rgba(211,176,106,0.9));
    border-radius: 2px;
    animation: lpButtonFade 0.3s cubic-bezier(0.22, 1.15, 0.36, 1) forwards;
    opacity: 0;
}

.lpWebsite__button {
    animation-delay: 0.24s;
}

@keyframes lpButtonFade {
    0% {
        opacity: 0;
        transform: translateY(3px) scaleX(0.82);
    }
    72% {
        opacity: 1;
        transform: translateY(-1px) scaleX(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scaleX(1);
    }
}

/* Repeat website preview animation every carousel cycle (1st slide: 5%-30% of 12s) */
.lpMock--carousel:nth-child(1) .lpWebsite__logo {
    animation: lpWebsiteLogoCycle 12s cubic-bezier(0.22, 1.15, 0.36, 1) infinite;
}

.lpMock--carousel:nth-child(1) .lpWebsite__nav-item:nth-child(1) {
    animation: lpWebsiteNavItem1Cycle 12s cubic-bezier(0.22, 1.15, 0.36, 1) infinite;
}

.lpMock--carousel:nth-child(1) .lpWebsite__nav-item:nth-child(2) {
    animation: lpWebsiteNavItem2Cycle 12s cubic-bezier(0.22, 1.15, 0.36, 1) infinite;
}

.lpMock--carousel:nth-child(1) .lpWebsite__hero-title {
    animation: lpWebsiteTitleCycle 12s cubic-bezier(0.22, 1.15, 0.36, 1) infinite;
}

.lpMock--carousel:nth-child(1) .lpWebsite__hero-subtitle {
    animation: lpWebsiteSubtitleCycle 12s cubic-bezier(0.22, 1.15, 0.36, 1) infinite;
}

.lpMock--carousel:nth-child(1) .lpWebsite__button {
    animation: lpWebsiteButtonCycle 12s cubic-bezier(0.22, 1.15, 0.36, 1) infinite;
}

@keyframes lpWebsiteLogoCycle {
    0%, 5% { opacity: 0; transform: translateY(6px) scale(0.86); }
    7% { opacity: 1; transform: translateY(-2px) scale(1.08); }
    9%, 30% { opacity: 1; transform: translateY(0) scale(1); }
    31%, 100% { opacity: 0; transform: translateY(6px) scale(0.86); }
}

@keyframes lpWebsiteNavItem1Cycle {
    0%, 6% { opacity: 0; transform: scaleX(0.6) translateY(2px); }
    8% { opacity: 1; transform: scaleX(1.08) translateY(-1px); }
    10%, 30% { opacity: 1; transform: scaleX(1) translateY(0); }
    31%, 100% { opacity: 0; transform: scaleX(0.6) translateY(2px); }
}

@keyframes lpWebsiteNavItem2Cycle {
    0%, 6.5% { opacity: 0; transform: scaleX(0.6) translateY(2px); }
    8.5% { opacity: 1; transform: scaleX(1.08) translateY(-1px); }
    10.5%, 30% { opacity: 1; transform: scaleX(1) translateY(0); }
    31%, 100% { opacity: 0; transform: scaleX(0.6) translateY(2px); }
}

@keyframes lpWebsiteTitleCycle {
    0%, 7% { width: 0; opacity: 0; }
    10% { width: 82%; opacity: 1; }
    12%, 30% { width: 75%; opacity: 1; }
    31%, 100% { width: 0; opacity: 0; }
}

@keyframes lpWebsiteSubtitleCycle {
    0%, 8% { width: 0; opacity: 0; }
    11% { width: 62%; opacity: 1; }
    13%, 30% { width: 55%; opacity: 1; }
    31%, 100% { width: 0; opacity: 0; }
}

@keyframes lpWebsiteButtonCycle {
    0%, 9% { opacity: 0; transform: translateY(3px) scaleX(0.82); }
    12% { opacity: 1; transform: translateY(-1px) scaleX(1.05); }
    14%, 30% { opacity: 1; transform: translateY(0) scaleX(1); }
    31%, 100% { opacity: 0; transform: translateY(3px) scaleX(0.82); }
}

.lpMock__header {
    height: 40px;
    background: linear-gradient(90deg, rgba(134,183,255,0.2), rgba(211,176,106,0.1));
    border-radius: 8px;
}

.lpMock__line {
    height: 8px;
    background: rgba(134,183,255,0.3);
    border-radius: 4px;
}

.lpMock__line--long {
    width: 100%;
}

.lpMock__line--medium {
    width: 85%;
}

.lpMock__line--short {
    width: 60%;
}

.lpMock__body--phone {
    gap: 8px;
}

.lpMock__app-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(134,183,255,0.85), rgba(211,176,106,0.8));
    border-radius: 12px;
    margin: 8px 0;
    animation: lpAppIconAppear 12s cubic-bezier(0.22, 1.15, 0.36, 1) infinite;
}

@keyframes lpAppIconAppear {
    0%, 36% {
        opacity: 0;
        transform: scale(0.78) translateY(8px);
    }
    37.5% {
        opacity: 1;
        transform: scale(1.1) translateY(-2px);
    }
    40.5% {
        opacity: 1;
        transform: scale(0.98) translateY(1px);
    }
    43%, 62% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    67%, 100% {
        opacity: 0;
        transform: scale(0.86) translateY(-8px);
    }
}

.lpMock__body--dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    padding: 12px;
    height: 100%;
}

.lpMock__chart {
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(134,183,255,0.15);
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 8px;
    gap: 4px;
    position: relative;
}

.lpMock__chart--bar {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.lpMock__bar {
    flex: 1;
    background: linear-gradient(180deg, rgba(134,183,255,0.8), rgba(211,176,106,0.5));
    border-radius: 2px;
    min-height: 4px;
}

.lpMock__chart--pie {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-content: center;
    align-items: center;
}

.lpMock__pie-segment {
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
}

.lpMock__pie-segment--1 {
    background: conic-gradient(from 0deg, rgba(134,183,255,0.7) 0deg, rgba(134,183,255,0.7) 120deg, transparent 120deg);
    width: 24px;
    height: 24px;
}

.lpMock__pie-segment--2 {
    background: conic-gradient(from 120deg, rgba(211,176,106,0.7) 0deg, rgba(211,176,106,0.7) 150deg, transparent 150deg);
    width: 24px;
    height: 24px;
    opacity: 0.8;
    left: 4px;
    top: 2px;
}

.lpMock__pie-segment--3 {
    background: radial-gradient(circle, rgba(134,183,255,0.4) 0%, transparent 70%);
    width: 14px;
    height: 14px;
}

.lpMock__chart--line {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    padding: 6px;
}

.lpMock__chart--line svg {
    width: 100%;
    height: 100%;
}

.lpMock__stat {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: linear-gradient(135deg, rgba(134,183,255,0.1), rgba(211,176,106,0.05));
    border: 1px solid rgba(134,183,255,0.2);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.lpMock__stat-value {
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(90deg, #86B7FF, #D3B06A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lpMock__stat-label {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

/* Dashboard animations - synced with carousel visibility (69%-94% of 12s cycle) */
.lpMock--carousel:nth-child(3) .lpMock__bar {
    animation: lpBarGrowCycle 12s cubic-bezier(0.22, 1.15, 0.36, 1) infinite;
    transform-origin: bottom;
}

.lpMock--carousel:nth-child(3) .lpMock__bar:nth-child(1) {
    animation-delay: 0s;
}

.lpMock--carousel:nth-child(3) .lpMock__bar:nth-child(2) {
    animation-delay: -0.12s;
}

.lpMock--carousel:nth-child(3) .lpMock__bar:nth-child(3) {
    animation-delay: -0.24s;
}

.lpMock--carousel:nth-child(3) .lpMock__bar:nth-child(4) {
    animation-delay: -0.36s;
}

@keyframes lpBarGrowCycle {
    0%, 68% {
        opacity: 0;
        transform: scaleY(0.05) translateY(6px);
    }
    70% {
        opacity: 1;
        transform: scaleY(1.14) translateY(-1px);
    }
    73%, 94% {
        opacity: 1;
        transform: scaleY(1) translateY(0);
    }
    97%, 100% {
        opacity: 0;
        transform: scaleY(0.9) translateY(-4px);
    }
}

.lpMock--carousel:nth-child(3) .lpMock__pie-segment {
    animation: lpPieRotateCycle 12s cubic-bezier(0.22, 1.15, 0.36, 1) infinite;
    transform-origin: center;
}

.lpMock--carousel:nth-child(3) .lpMock__pie-segment--1 {
    animation-delay: 0s;
}

.lpMock--carousel:nth-child(3) .lpMock__pie-segment--2 {
    animation-delay: -0.12s;
}

.lpMock--carousel:nth-child(3) .lpMock__pie-segment--3 {
    animation-delay: -0.24s;
}

@keyframes lpPieRotateCycle {
    0%, 68% {
        transform: rotate(-90deg) scale(0.78);
        opacity: 0;
    }
    70% {
        transform: rotate(12deg) scale(1.1);
        opacity: 1;
    }
    74%, 94% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    97%, 100% {
        transform: rotate(0deg) scale(0.9);
        opacity: 0;
    }
}

.lpMock--carousel:nth-child(3) .lpMock__chart--line svg {
    animation: lpLineRevealCycle 12s cubic-bezier(0.22, 1.15, 0.36, 1) infinite;
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
}

@keyframes lpLineRevealCycle {
    0%, 68% {
        stroke-dashoffset: 200;
        opacity: 0;
        transform: translateY(5px);
    }
    70% {
        stroke-dashoffset: 200;
        opacity: 1;
        transform: translateY(-1px);
    }
    77%, 94% {
        stroke-dashoffset: 0;
        opacity: 1;
        transform: translateY(0);
    }
    97%, 100% {
        stroke-dashoffset: 0;
        opacity: 0;
        transform: translateY(-4px);
    }
}

.lpMock--carousel:nth-child(3) .lpMock__stat {
    animation: lpStatPulseCycle 12s cubic-bezier(0.22, 1.2, 0.36, 1) infinite;
}

@keyframes lpStatPulseCycle {
    0%, 68% {
        transform: scale(0.8);
        opacity: 0;
    }
    70% {
        transform: scale(0.8);
        opacity: 0;
    }
    73% {
        transform: scale(1.08);
        opacity: 1;
    }
    76% {
        transform: scale(1);
        opacity: 1;
    }
    94% {
        transform: scale(1);
        opacity: 1;
    }
    97%, 100% {
        transform: scale(0.92);
        opacity: 0;
    }
}

/* ===== Sections ===== */
.lpSection {
    max-width: 1180px;
    margin: 0 auto;
    padding: 52px 20px 10px;
}

.lpSection__head {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.lpSection__title {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: .02em;
    color: rgba(211,176,106,.92);
}

.lpRule {
    height: 2px;
    background: linear-gradient(to right, rgba(211,176,106,.55), rgba(255,255,255,.12));
}

.lpSection__sub {
    margin: 0;
    color: var(--subtle);
    font-size: 13px;
    max-width: 80ch;
}

/* ===== “Discord” stacked panels ===== */
.lpStack {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.lpPanel {
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.03);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Hover effect with glow */
.lpPanel:hover {
    border-color: rgba(134, 183, 255, 0.4);
    box-shadow: 0 0 20px rgba(134, 183, 255, 0.3), 0 18px 50px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(134, 183, 255, 0.05);
    transform: translateY(-8px);
}

.lpPanel:has(.lpMediaPlaceholder--alt):hover {
    border-color: rgba(211, 176, 106, 0.4);
    box-shadow: 0 0 20px rgba(211, 176, 106, 0.3), 0 18px 50px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(211, 176, 106, 0.05);
}

.lpPanel--split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: stretch;
}

.lpPanel__media {
    padding: 22px;
    display: grid;
    position: relative;
    overflow: hidden;
}

    .lpPanel__media::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(134, 183, 255, 0) 0%, rgba(134, 183, 255, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .lpPanel:hover .lpPanel__media::before {
        opacity: 1;
    }

    .lpPanel:has(.lpMediaPlaceholder--alt) .lpPanel__media::before {
        background: linear-gradient(135deg, rgba(211, 176, 106, 0) 0%, rgba(211, 176, 106, 0.1) 100%);
    }

.lpPanel__copy {
    padding: 22px 22px 20px;
    display: grid;
    align-content: center;
    gap: 10px;
    background: rgba(0,0,0,.12);
    border-left: 1px solid rgba(255,255,255,.06);
}

.lpPanel--reverse .lpPanel__copy {
    border-left: 0;
    border-right: 1px solid rgba(255,255,255,.06);
}

.lpPanel--reverse {
    direction: rtl;
}

    .lpPanel--reverse > * {
        direction: ltr;
    }

.lpPanel__title {
    margin: 0;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.05;
    color: rgba(255,255,255,.94);
    opacity: 0;
    animation: fadeInDown 0.8s ease-out 0.3s forwards;
}

.lpPanel__text {
    margin: 0;
    color: rgba(255,255,255,.74);
    line-height: 1.6;
    max-width: 60ch;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.lpLink {
    color: rgba(134, 183, 255, 0.92);
    text-decoration: none;
    font-weight: 800;
    width: max-content;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    transition: all 0.3s ease;
}

    .lpLink:hover {
        color: rgba(134, 183, 255, 1);
        text-shadow: 0 0 8px rgba(134, 183, 255, 0.6);
        transform: translateX(4px);
    }

    .lpLink::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #86B7FF, #D3B06A);
        transition: width 0.3s ease;
    }

    .lpLink:hover::after {
        width: 100%;
    }

/* Placeholder media blocks */
.lpMediaPlaceholder {
    height: 320px;
    border-radius: 28px;
    border: 2px dashed rgba(134, 183, 255, 0.3);
    background: radial-gradient(800px 400px at 20% 20%, rgba(134, 183, 255, 0.08), rgba(0, 0, 0, 0) 60%), rgba(0, 0, 0, .22);
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, .60);
    font-weight: 800;
    letter-spacing: .06em;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .lpMediaPlaceholder:hover {
        border-color: rgba(134, 183, 255, 0.6);
        background: radial-gradient(800px 400px at 20% 20%, rgba(134, 183, 255, 0.15), rgba(0, 0, 0, 0) 60%), rgba(0, 0, 0, .22);
    }

    .lpMediaPlaceholder::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(134, 183, 255, 0.1), transparent);
        animation: none;
        pointer-events: none;
    }

.lpMediaPlaceholder--alt {
    border-color: rgba(211, 176, 106, 0.3);
    background: radial-gradient(800px 400px at 70% 20%, rgba(211, 176, 106, 0.08), rgba(0, 0, 0, 0) 60%), rgba(0, 0, 0, .22);
}

    .lpMediaPlaceholder--alt::before {
        background: linear-gradient(90deg, transparent, rgba(211, 176, 106, 0.1), transparent);
    }

    .lpMediaPlaceholder--alt:hover {
        border-color: rgba(211, 176, 106, 0.6);
        background: radial-gradient(800px 400px at 70% 20%, rgba(211, 176, 106, 0.15), rgba(0, 0, 0, 0) 60%), rgba(0, 0, 0, .22);
    }

.lpMediaPlaceholder__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* Feature-specific animations */
.lpFeatureAnimation {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.22));
}

/* Efficiency animation: side-by-side comparison - STATIC */
.lpInefficient {
    animation: none;
}

.lpChaosItem {
    animation: none;
}

.lpChaosLine {
    animation: none;
}

.lpVsIcon {
    opacity: 0.7;
    animation: none;
}

.lpEfficient {
    animation: none;
}

.lpOrderItem {
    animation: none;
}

.lpSpeedIndicator {
    animation: none;
}

/* Clean & Improved Animations */

/* Block 1: Efficiency - Papers floating */
.lpPaperItem {
    animation: lpPaperFloat 3.5s cubic-bezier(0.42, 0.0, 0.58, 1.0) infinite;
    transform-origin: center;
}

.lpPaperItem:nth-child(1) { 
    animation: lpPaperFloat1 3.5s cubic-bezier(0.42, 0.0, 0.58, 1.0) infinite;
}
.lpPaperItem:nth-child(2) { 
    animation: lpPaperFloat2 3.5s cubic-bezier(0.42, 0.0, 0.58, 1.0) infinite;
}
.lpPaperItem:nth-child(3) { 
    animation: lpPaperFloat3 3.5s cubic-bezier(0.42, 0.0, 0.58, 1.0) infinite;
}
.lpPaperItem:nth-child(4) { 
    animation: lpPaperFloat4 3.5s cubic-bezier(0.42, 0.0, 0.58, 1.0) infinite;
}

.lpVsIcon {
    animation: lpPulseGlow 3.5s ease-in-out infinite;
}

.lpEfficient .lpOrderItem {
    animation: lpSolutionFloat 3.5s cubic-bezier(0.42, 0.0, 0.58, 1.0) infinite;
    transform-origin: center;
}

.lpEfficient .lpOrderItem:nth-child(1) { animation: lpSolutionFloat1 3.5s cubic-bezier(0.42, 0.0, 0.58, 1.0) infinite; }
.lpEfficient .lpOrderItem:nth-child(2) { animation: lpSolutionFloat2 3.5s cubic-bezier(0.42, 0.0, 0.58, 1.0) infinite; }
.lpEfficient .lpOrderItem:nth-child(3) { animation: lpSolutionFloat3 3.5s cubic-bezier(0.42, 0.0, 0.58, 1.0) infinite; }
.lpEfficient .lpOrderItem:nth-child(4) { animation: lpSolutionFloat4 3.5s cubic-bezier(0.42, 0.0, 0.58, 1.0) infinite; }
.lpEfficient .lpOrderItem:nth-child(5) { animation: lpSolutionFloat5 3.5s cubic-bezier(0.42, 0.0, 0.58, 1.0) infinite; }

/* Block 2: Website */
.lpWebsiteContent rect {
    animation: lpCascadeReveal 3.8s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
    transform-origin: left center;
}

.lpWebsiteContent rect:nth-child(1) { animation-delay: 0s; }
.lpWebsiteContent rect:nth-child(2) { animation-delay: 0.3s; }
.lpWebsiteContent rect:nth-child(3) { animation-delay: 0.6s; }

/* Block 3: App */
.lpAppScreen {
    transform-origin: center;
    animation: lpPhoneDrift 3.2s ease-in-out infinite;
}

.lpAppScreen__hero,
.lpAppScreen__card1,
.lpAppScreen__card2,
.lpAppScreen__cta,
.lpAppScreen__dot,
.lpAppScreen__status {
    transform-origin: left center;
    animation: lpAppReveal 3.2s cubic-bezier(0.22, 1.1, 0.36, 1) infinite;
}

.lpAppScreen__hero { animation-delay: 0s; }
.lpAppScreen__card1 { animation-delay: 0.18s; }
.lpAppScreen__card2 { animation-delay: 0.32s; }
.lpAppScreen__cta { animation-delay: 0.46s; }
.lpAppScreen__dot:nth-of-type(1) { animation-delay: 0.58s; }
.lpAppScreen__dot:nth-of-type(2) { animation-delay: 0.64s; }
.lpAppScreen__dot:nth-of-type(3) { animation-delay: 0.7s; }
.lpAppScreen__status { animation-delay: 0.1s; }
}

/* Block 4: Database */
.lpDataFlow {
    animation: lpDataFlowAnim 2.8s linear infinite;
}

.lpDataLine {
    animation: lpDataLinePulse 2.8s ease-in-out infinite;
}

.lpDbCore {
    animation: lpDbCoreFloat 3.6s ease-in-out infinite;
}

.lpDbRing {
    animation: lpDbRingPulse 3.6s ease-in-out infinite;
}

.lpDbSuccess {
    animation: lpDbSuccessPop 3s cubic-bezier(0.22, 1.1, 0.36, 1) infinite;
}

.lpDataLine:nth-child(1) { animation-delay: 0s; }
.lpDataLine:nth-child(2) { animation-delay: 0.4s; }
.lpDataLine:nth-child(3) { animation-delay: 0.8s; }

.lpDataCheck {
    animation: lpCheckDraw 2.5s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

@keyframes lpDataFlowAnim {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes lpDataLinePulse {
    0%, 100% {
        stroke-width: 2.2;
        opacity: 0.45;
    }
    50% {
        stroke-width: 3.2;
        opacity: 1;
    }
}

@keyframes lpDbCoreFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes lpDbRingPulse {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.6; }
}

@keyframes lpDbSuccessPop {
    0%, 100% { transform: scale(0.96); opacity: 0.75; }
    50% { transform: scale(1.02); opacity: 1; }
}

/* Block 5: Power BI */
.lpBiBar {
    transform-origin: center bottom;
}

.lpBiBar rect {
    transform-origin: center bottom;
    animation: lpBiBarStep 3s cubic-bezier(0.22, 1.1, 0.36, 1) infinite;
}
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.lpMediaPlaceholder__icon {
    width: 48px;
    height: 48px;
    animation: lpFloatUp 3s ease-in-out infinite;
}

.lpMediaPlaceholder__arrow {
    animation: lpArrowBounce 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    transform-origin: 32px 24px;
}

.lpMediaPlaceholder__cloud {
    animation: lpCloudFloat 4s ease-in-out infinite;
    transform-origin: 32px 36px;
}

.lpMediaPlaceholder__text {
    font-size: 14px;
    font-weight: 700;
    color: rgba(0, 217, 255, 0.8);
    text-align: center;
    animation: lpTextPulse 2s ease-in-out infinite;
}

.lpMediaPlaceholder--alt .lpMediaPlaceholder__text {
    color: rgba(255, 0, 127, 0.8);
}

.lpMediaPlaceholder__subtext {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0;
    animation: lpSubtextFade 2.5s ease-in-out 0.5s infinite;
}

/* ===== Stripe section (big words) ===== */
.lpStripe {
    margin-top: 44px;
    padding: 44px 0;
    background: linear-gradient(to bottom, rgba(255,255,255,.02), rgba(255,255,255,0)), rgba(0,0,0,.10);
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: relative;
    overflow: hidden;
    isolation: isolate; /* keeps glow contained */
    align-items: center;
}

    .lpStripe::before,
    .lpStripe::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 3px;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(
            90deg,
            rgba(211,176,106,.85) 0%,
            rgba(134,183,255,.85) 32%,
            rgba(211,176,106,.85) 50%,
            rgba(134,183,255,.85) 82%,
            rgba(211,176,106,.85) 100%
        );
        background-size: 200% 100%;
        animation: lpRailMove 5s linear infinite;
        filter: blur(.2px) drop-shadow(0 0 10px rgba(211,176,106,.35)) drop-shadow(0 0 12px rgba(134,183,255,.25));
        opacity: .95;
    }

    .lpStripe::before {
        top: 0;
    }

    .lpStripe::after {
        bottom: 0;
        animation-direction: reverse;
        opacity: .85;
    }

@keyframes lpRailMove {
    0% {
        background-position: 0% 0;
    }

    100% {
        background-position: -200% 0;
    }
}


.lpStripe__inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    align-items: center;
    gap: 10px;
    z-index: 3;
}
    .lpStripe__inner::before {
        content: "";
        position: absolute;
        inset: -24px 0;
        background: radial-gradient(900px 180px at 15% 0%, rgba(211,176,106,.12), transparent 60%), radial-gradient(900px 180px at 85% 100%, rgba(134,183,255,.10), transparent 60%);
        opacity: .8;
        pointer-events: none;
        z-index: -1;
    }

.lpStripe__words {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center; /* center words inside flex row */
    text-align: center;
    font-weight: 1000;
    letter-spacing: .10em;
    color: #f0eadc;
    font-size: 44px;
    text-shadow: 0 4px 18px rgba(0,0,0,.75), 0 0 30px rgba(0,0,0,.6);
    position: relative;
}


    .lpStripe__words span {
        position: relative;
        font-weight: 1000;
        letter-spacing: .10em;
        color: #f0eadc;
        --shadow-flat: 0 0 0 rgba(0,0,0,0), 0 0 0 rgba(0,0,0,0);
        --shadow-extrude: 0 6px 18px rgba(0,0,0,.55), 1px 1px 0 rgba(0,0,0,.55), 2px 2px 0 rgba(0,0,0,.55), 3px 3px 0 rgba(0,0,0,.55), 4px 4px 0 rgba(211,176,106,.55), 5px 5px 0 rgba(134,183,255,.40), 0 0 20px rgba(211,176,106,.18), 0 0 18px rgba(134,183,255,.14);
        /* start flat */
        text-shadow: var(--shadow-flat);
        animation: lpExtrudeSnap 4.8s infinite, lpWordGlow 2.6s ease-in-out infinite;
    }
        .lpStripe__words span:nth-child(1) {
            animation-delay: 0ms, 0ms;
        }

        .lpStripe__words span:nth-child(2) {
            animation-delay: 500ms, 0ms;
        }

        .lpStripe__words span:nth-child(3) {
            animation-delay: 1000ms, 0ms;
        }

        .lpStripe__words span:nth-child(4) {
            animation-delay: 1500ms, 0ms;
        }

/* ===== Animation Keyframes for Features ===== */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(134, 183, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(134, 183, 255, 0.6), 0 0 25px rgba(211, 176, 106, 0.3);
    }
}

@keyframes lpPaperFloat1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes lpPaperFloat2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes lpPaperFloat3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes lpPaperFloat4 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-9px); }
}

@keyframes lpPulseGlow {
    0%, 100% { opacity: 0.5; filter: drop-shadow(0 0 0px rgba(0, 217, 255, 0)); }
    50% { opacity: 1; filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.7)); }
}

@keyframes lpSolutionFloat1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-7px); }
}

@keyframes lpSolutionFloat2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-9px); }
}

@keyframes lpSolutionFloat3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
}

@keyframes lpSolutionFloat4 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes lpSolutionFloat5 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-7px); }
}

@keyframes lpItemSlide {
    0%, 50% { transform: translateX(-20px); opacity: 0.2; }
    55% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes lpOrganize1 {
    0%, 100% { cx: 20; cy: 40; opacity: 0.5; }
    50% { cx: 28; cy: 35; opacity: 0.8; }
}

@keyframes lpOrganize2 {
    0%, 100% { cx: 32; cy: 55; opacity: 0.4; }
    50% { cx: 32; cy: 48; opacity: 0.75; }
}

@keyframes lpOrganize3 {
    0%, 100% { cx: 15; cy: 70; opacity: 0.6; }
    50% { cx: 28; cy: 58; opacity: 0.85; }
}

@keyframes lpOrganize4 {
    0%, 100% { cx: 28; cy: 80; opacity: 0.45; }
    50% { cx: 25; cy: 68; opacity: 0.8; }
}

@keyframes lpLineVanish {
    0%, 40% { opacity: 0.3; stroke-width: 1.5; }
    50% { opacity: 0; stroke-width: 1; }
    60%, 100% { opacity: 0; }
}

@keyframes lpAlignSlide {
    0%, 50% { transform: translateX(-15px); opacity: 0.3; }
    55% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes lpPulseGlow {
    0%, 100% { opacity: 0.5; filter: drop-shadow(0 0 0px rgba(0, 217, 255, 0)); }
    50% { opacity: 1; filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.6)); }
}

@keyframes lpCascadeReveal {
    0% { transform: scaleX(0); opacity: 0; }
    30% { opacity: 0; }
    40% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(1); opacity: 1; }
}

@keyframes lpMomentumBounce {
    0%, 100% { transform: translateY(0) scale(0.97); opacity: 0.85; }
    30% { transform: translateY(-6px) scale(1.02); opacity: 1; }
    58% { transform: translateY(0) scale(0.99); opacity: 0.92; }
    78% { transform: translateY(-3px) scale(1.01); opacity: 0.96; }
}

@keyframes lpPhoneDrift {
    0%, 100% { transform: translateY(0); opacity: 0.92; }
    50% { transform: translateY(-4px); opacity: 1; }
}

@keyframes lpAppReveal {
    0%, 12% {
        opacity: 0.15;
        transform: translateX(-6px) translateY(1px);
    }
    24% {
        opacity: 1;
        transform: translateX(1px) translateY(-1px);
    }
    34%, 84% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    100% {
        opacity: 0.25;
        transform: translateX(-4px) translateY(1px);
    }
}

@keyframes lpEnergyPulse {
    0%, 100% { stroke-width: 1.5; opacity: 0.3; filter: drop-shadow(0 0 0px rgba(0, 217, 255, 0)); }
    50% { stroke-width: 3.5; opacity: 1; filter: drop-shadow(0 0 6px rgba(0, 217, 255, 0.8)); }
}

@keyframes lpCheckDraw {
    0%, 60% { opacity: 0; transform: scale(0) rotate(-90deg); }
    65% { opacity: 1; transform: scale(1.2) rotate(0deg); }
    75%, 100% { opacity: 0.9; transform: scale(1) rotate(0deg); }
}

@keyframes lpBiBarStep {
    0%, 50%, 100% {
        opacity: 0.95;
        transform: scaleY(1);
    }
    56% {
        opacity: 1;
        transform: scaleY(1.08);
    }
    62% {
        opacity: 0.92;
        transform: scaleY(0.98);
    }
    68% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes lpOrbitRotate {
    0% { transform: rotate(0deg) scaleX(0.8); opacity: 0.4; }
    50% { transform: rotate(180deg) scaleX(1); opacity: 1; }
    100% { transform: rotate(360deg) scaleX(0.8); opacity: 0.4; }
}

@keyframes lpZzzScale {
    0%, 100% {
        transform: scale(0.7);
        opacity: 0.6;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes lpZzzGlitch {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0px);
    }
    50% {
        opacity: 0.7;
        transform: translateX(2px);
    }
}

@keyframes lpZzzSlide {
    0%, 100% {
        transform: translateX(-10px);
        opacity: 0.5;
    }
    50% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes lpZzzRotate {
    0%, 100% {
        transform: rotate(0deg) scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: rotate(5deg) scale(1);
        opacity: 1;
    }
}

@keyframes lpZzzScaleWidth {
    0%, 100% {
        transform: scaleX(0.6);
        opacity: 0.5;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes lpZzzBounce {
    0%, 100% {
        transform: translateY(0px) scale(0.95);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-8px) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(0px) scale(0.95);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-4px) scale(0.98);
        opacity: 0.9;
    }
}

@keyframes lpZzzPulseFlow {
    0%, 100% {
        stroke-width: 1.5;
        opacity: 0.4;
    }
    50% {
        stroke-width: 3;
        opacity: 1;
    }
}

@keyframes lpZzzCheckmark {
    0%, 100% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes lpZzzBarScale {
    0%, 100% {
        transform: scaleY(0.6);
        opacity: 0.5;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes lpGentleGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.85;
    }
}

@keyframes lpVsPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes lpWebsiteGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.85;
    }
}

@keyframes lpAppPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.85;
    }
}

@keyframes lpDataPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes lpCheckPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes lpBarGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes lpPieGlow {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes lpFloatUp {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes lpArrowBounce {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

@keyframes lpCloudFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-4px) translateX(2px);
        opacity: 0.9;
    }
}

@keyframes lpTextPulse {
    0%, 100% {
        opacity: 0.7;
        letter-spacing: 0.06em;
    }
    50% {
        opacity: 1;
        letter-spacing: 0.08em;
    }
}

@keyframes lpSubtextFade {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes lpShimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Feature-specific keyframes */
@keyframes lpChaosFloat {
    0%, 100% {
        opacity: 0.6;
        cy: 0px;
    }
    50% {
        opacity: 0.3;
        cy: 8px;
    }
}

@keyframes lpChaosLineFlicker {
    0%, 100% {
        opacity: 0.3;
        stroke-width: 1.5;
    }
    50% {
        opacity: 0.1;
        stroke-width: 1;
    }
}

@keyframes lpVsPulse {
    0%, 100% {
        opacity: 0.5;
        font-size: 32px;
    }
    50% {
        opacity: 1;
        font-size: 36px;
    }
}

@keyframes lpOrderSlide {
    0% {
        opacity: 0.5;
        x: 5px;
    }
    50% {
        opacity: 1;
        x: 0px;
    }
    100% {
        opacity: 0.8;
        x: 2px;
    }
}

@keyframes lpSpeedPulse {
    0%, 100% {
        opacity: 0.5;
        stroke-width: 2;
    }
    50% {
        opacity: 1;
        stroke-width: 3;
    }
}

@keyframes lpOrderReveal {
    0%, 50% {
        opacity: 0;
    }
    67% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes lpArrowPulse {
    0%, 25% {
        opacity: 0;
    }
    33%, 67% {
        opacity: 1;
    }
    75%, 100% {
        opacity: 0;
    }
}

@keyframes lpWebsiteLoad {
    0%, 100% {
        opacity: 0.3;
        width: 0%;
    }
    50% {
        opacity: 1;
        width: 100%;
    }
}

@keyframes lpAppFadeInOut {
    0%, 100% {
        opacity: 0;
    }
    33%, 66% {
        opacity: 1;
    }
}

@keyframes lpDataFlow {
    0% {
        stroke-dashoffset: 30;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -30;
        opacity: 0;
    }
}

@keyframes lpDataValidate {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lpBarGrow {
    0%, 10% {
        height: 0;
        y: 140;
    }
    50%, 100% {
        height: 30;
        y: 110;
    }
}

@keyframes lpPieRevolve {
    0%, 100% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg);
        opacity: 1;
    }
}

@keyframes lpWordGlow {
    0%,100% {
        filter: drop-shadow(0 0 0 rgba(0,0,0,0));
        opacity: .92;
    }

    50% {
        filter: drop-shadow(0 0 10px rgba(211,176,106,.20)) drop-shadow(0 0 10px rgba(134,183,255,.16));
        opacity: 1;
    }
}


@keyframes lpSheen {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}
@keyframes lpExtrudeSnap {
    /* --- FLAT (long pause) --- */
    0% {
        text-shadow: var(--shadow-flat);
        transform: translateY(0px);
    }

    22% {
        text-shadow: var(--shadow-flat);
        transform: translateY(0px);
    }
    /* --- SNAP OUT --- */
    28% {
        text-shadow: var(--shadow-extrude);
        transform: translateY(-2px);
        animation-timing-function: cubic-bezier(.10, 1.15, .30, 1.00);
    }
    /* small settle */
    34% {
        text-shadow: var(--shadow-extrude);
        transform: translateY(0px);
    }
    /* --- EXTRUDED HOLD (long pause) --- */
    60% {
        text-shadow: var(--shadow-extrude);
        transform: translateY(0px);
    }
    /* --- SNAP BACK --- */
    68% {
        text-shadow: var(--shadow-flat);
        transform: translateY(1px);
        animation-timing-function: cubic-bezier(.20, .90, .20, 1.00);
    }
    /* settle */
    74% {
        text-shadow: var(--shadow-flat);
        transform: translateY(0px);
    }
    /* rest until loop */
    100% {
        text-shadow: var(--shadow-flat);
        transform: translateY(0px);
    }
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .lpStripe::before, .lpStripe::after,
    .lpStripe__words, .lpStripe__words span,
    .lpStripe__words span::after {
        animation: none !important;
    }
}

.lpStripe__sub {
    margin: 0;
    color: rgba(255,255,255,.70);
    max-width: 90ch;
    line-height: 1.6;
}

/* ===== Optional cards ===== */
.lpGrid2 {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lpCard {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(10,12,16,.55);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px;
}

.lpCard__title {
    margin: 0;
    font-weight: 900;
    color: rgba(255,255,255,.92);
}

.lpCard__text {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

/* ===== Final CTA ===== */
.lpFinal {
    padding: 54px 0 60px;
}

.lpFinal__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.10);
    background: radial-gradient(1000px 500px at 18% 20%, rgba(211,176,106,.14), rgba(0,0,0,0) 60%), radial-gradient(900px 500px at 78% 30%, rgba(134,183,255,.12), rgba(0,0,0,0) 60%), rgba(0,0,0,.18);
    box-shadow: var(--shadow);
    padding: 28px;
    display: grid;
    gap: 10px;
    text-align: center;
}

.lpFinal__title {
    margin: 0;
    font-size: 34px;
    font-weight: 1000;
    color: #f0eadc;
}

.lpFinal__text {
    margin: 0 auto 24px;
    max-width: 60ch;
    text-align: center;
    font-size: 16px;
    color: rgba(255,255,255,.74);
    line-height: 1.6;
}

.lpFinal__cta {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.lpFooter {
    padding: 22px 0 30px;
    border-top: 1px solid rgba(255,255,255,.06);
}

.lpFooter__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.60);
    font-size: 13px;
}

.lpFooter__links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.lpFooter__link {
    color: rgba(255,255,255,.72);
    text-decoration: none;
    font-weight: 700;
}

    .lpFooter__link:hover {
        color: #fff;
        text-decoration: underline;
    }

/* ===== Responsive ===== */
@media (max-width: 980px) {
    .lpNav__links {
        display: none;
    }
    /* like Discord: simplify nav on small screens */
    .lpHero__inner {
        grid-template-columns: 1fr;
        padding-top: 44px;
    }

    .lpHero__media {
        justify-items: start;
    }

    .lpHero__title {
        font-size: 46px;
    }

    .lpPanel--split {
        grid-template-columns: 1fr;
    }

    .lpPanel__copy {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.06);
    }

    .lpPanel--reverse {
        direction: ltr;
    }

    .lpGrid2 {
        grid-template-columns: 1fr;
    }

    .lpStripe__words {
        font-size: 34px;
    }
}



.lpScrollHint {
    position: absolute;
    bottom: 24px; /* space above rail */
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    font-weight: 700;
    letter-spacing: .08em;
    font-size: 18px;
    color: #D3B06A;
}



/* Subtle static gradient rail at bottom of hero */
.lpHero {
    position: relative;
}

    .lpHero::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 2px; /* thinner = more premium */
        pointer-events: none;
        z-index: 5;
        background: linear-gradient( 90deg, transparent 0%, rgba(211,176,106,.45) 20%, rgba(134,183,255,.55) 50%, rgba(211,176,106,.45) 80%, transparent 100% );
        /* Soft glow */
        filter: drop-shadow(0 0 8px rgba(211,176,106,.25)) drop-shadow(0 0 8px rgba(134,183,255,.20));
        opacity: .8;
    }



