﻿/* ===== 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(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.08);
    color: rgba(0, 217, 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(0, 217, 255, 0.15);
        border-color: rgba(0, 217, 255, 0.6);
        box-shadow: 0 0 10px rgba(0, 217, 255, 0.4), inset 0 0 10px rgba(0, 217, 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-weight: 900;
    letter-spacing: .12em;
    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: .14em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    margin: 0 0 10px;
}

.lpHero__title {
    margin: 0 0 12px;
    font-size: 56px;
    letter-spacing: .02em;
    line-height: 1.02;
    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: 16px;
    line-height: 1.65;
    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);
}

.lpDot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
}

.lpMock__title {
    margin-left: 6px;
    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(255,255,255,.08);
    background: radial-gradient(600px 200px at 20% 20%, rgba(211,176,106,.10), rgba(0,0,0,0) 60%), rgba(0,0,0,.20);
}

.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));
}

/* ===== 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(0, 217, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3), 0 18px 50px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(0, 217, 255, 0.05);
    transform: translateY(-8px);
}

.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(0, 217, 255, 0) 0%, rgba(0, 217, 255, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .lpPanel:hover .lpPanel__media::before {
        opacity: 1;
    }

.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(0, 217, 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(0, 217, 255, 1);
        text-shadow: 0 0 8px rgba(0, 217, 255, 0.6);
        transform: translateX(4px);
    }

    .lpLink::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #00d9ff, #ff0080);
        transition: width 0.3s ease;
    }

    .lpLink:hover::after {
        width: 100%;
    }

/* Placeholder media blocks */
.lpMediaPlaceholder {
    height: 320px;
    border-radius: 28px;
    border: 2px dashed rgba(0, 217, 255, 0.3);
    background: radial-gradient(800px 400px at 20% 20%, rgba(0, 217, 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(0, 217, 255, 0.6);
        background: radial-gradient(800px 400px at 20% 20%, rgba(0, 217, 255, 0.15), rgba(0, 0, 0, 0) 60%), rgba(0, 0, 0, .22);
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.3), inset 0 0 20px rgba(0, 217, 255, 0.05);
    }

    .lpMediaPlaceholder::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
        animation: none;
        pointer-events: none;
    }

.lpMediaPlaceholder--alt {
    border-color: rgba(255, 0, 127, 0.3);
    background: radial-gradient(800px 400px at 70% 20%, rgba(255, 0, 127, 0.08), rgba(0, 0, 0, 0) 60%), rgba(0, 0, 0, .22);
}

    .lpMediaPlaceholder--alt:hover {
        border-color: rgba(255, 0, 127, 0.6);
        background: radial-gradient(800px 400px at 70% 20%, rgba(255, 0, 127, 0.15), rgba(0, 0, 0, 0) 60%), rgba(0, 0, 0, .22);
        box-shadow: 0 0 20px rgba(255, 0, 127, 0.3), inset 0 0 20px rgba(255, 0, 127, 0.05);
    }

.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: 180px;
    max-height: 150px;
}

/* 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 {
    animation: lpMomentumBounce 3s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

/* Block 4: Database */
.lpDataFlow {
    animation: lpDataFlowAnim 2.4s ease-in-out infinite;
}

.lpDataLine {
    animation: lpEnergyPulse 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 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;
}

/* Block 5: Power BI */
.lpBiBar {
    animation: lpStaggeredGrow 3.5s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
    transform-origin: center bottom;
}

.lpBiPie {
    animation: lpDataPointGlow 3s ease-in-out 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; /* thickness of rail */
        z-index: 2;
        pointer-events: none;
        /* animated gradient rail (gold <-> aqua) */
        background: linear-gradient( 90deg, transparent 0%, rgba(211,176,106,.00) 8%, rgba(211,176,106,.85) 18%, rgba(134,183,255,.85) 50%, rgba(211,176,106,.85) 82%, rgba(211,176,106,.00) 92%, transparent 100% );
        background-size: 220% 100%;
        animation: lpRailMove 5s linear infinite;
        /* glow */
        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: 220% 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(0, 217, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(0, 217, 255, 0.6), 0 0 25px rgba(255, 0, 127, 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.85); opacity: 0.5; }
    25% { transform: translateY(-12px) scale(1.05); opacity: 1; }
    50% { transform: translateY(0) scale(0.9); opacity: 0.7; }
    75% { transform: translateY(-6px) scale(0.95); opacity: 0.85; }
}

@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 lpStaggeredGrow {
    0% { transform: scaleY(0.2); opacity: 0.3; }
    30% { transform: scaleY(1); opacity: 1; }
    70% { transform: scaleY(1); opacity: 1; }
    100% { transform: scaleY(0.2); opacity: 0.3; }
}

@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;
    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;
    }



