/* =====================================================================
   EMOLESS.FUN — LANDING PAGE  v3
   Matrix / Bot style · Dark · Green · No boxes · Fully centered
   ===================================================================== */

/* ── Override app container when landing is visible ── */
body.landing-visible .container > #mainHeader { display: none !important; }
body.landing-visible .container {
    padding: 0;
    max-width: none;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* ── Root variables ── */
:root {
    --g:           #00ff88;
    --g-dim:       rgba(0,255,136,0.7);
    --g-faint:     rgba(0,255,136,0.08);
    --g-glow-sm:   0 0 12px rgba(0,255,136,0.45);
    --g-glow-md:   0 0 28px rgba(0,255,136,0.55);
    --g-glow-lg:   0 0 56px rgba(0,255,136,0.4);
    --dark:        #030a06;
    --dark2:       #060f09;
    --text:        rgba(255,255,255,0.9);
    --text-dim:    rgba(255,255,255,0.55);
    --red:         rgba(255,80,80,0.9);
    --red-bg:      rgba(255,50,50,0.06);
    --red-border:  rgba(255,80,80,0.18);
}

/* ── Wrapper ── */
.lp {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--dark);
}

/* ─────────────────────────────────────────────────────────────────
   BACKGROUND
───────────────────────────────────────────────────────────────── */
.lp-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: var(--dark);
}

.lp-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 50% at 50% 20%,  rgba(0,50,30,0.55)   0%, transparent 65%),
        radial-gradient(ellipse 70%  50% at 88% 65%,  rgba(0,255,136,0.06) 0%, transparent 55%),
        radial-gradient(ellipse 55%  65% at 12% 80%,  rgba(0,255,136,0.04) 0%, transparent 55%);
    animation: lpGradShift 14s ease-in-out infinite;
}
@keyframes lpGradShift {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.8; }
}

.lp-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,255,136,0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.032) 1px, transparent 1px);
    background-size: 44px 44px;
    animation: lpGridScroll 28s linear infinite;
}
@keyframes lpGridScroll {
    from { transform: translateY(0); }
    to   { transform: translateY(44px); }
}

.lp-bg-scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,255,136,0.012) 50%, transparent 100%);
    background-size: 100% 8px;
    animation: lpScan 11s linear infinite;
}
@keyframes lpScan {
    from { transform: translateY(-100vh); }
    to   { transform: translateY(100vh); }
}

.lp-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    animation: lpGlowDrift 20s ease-in-out infinite;
}
.lp-bg-glow-1 { width: 520px; height: 520px; left: -160px; top: 8%;  background: rgba(0,255,136,0.17); animation-delay: 0s; }
.lp-bg-glow-2 { width: 420px; height: 420px; right:-130px; top: 48%; background: rgba(0,200,110,0.11); animation-delay: -7s; }
.lp-bg-glow-3 { width: 360px; height: 360px; left: 38%;   bottom:-90px; background: rgba(0,255,136,0.09); animation-delay: -14s; }
@keyframes lpGlowDrift {
    0%, 100% { transform: translate(0,0)      scale(1);    }
    33%       { transform: translate(45px,-28px) scale(1.07); }
    66%       { transform: translate(-28px,35px) scale(0.93); }
}

/* ─────────────────────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────────────────────── */
.lp-navbar {
    position: sticky;
    top: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.lp-navbar-backdrop {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 90px;
    background: linear-gradient(180deg,
        rgba(3,10,6,0.96) 0%,
        rgba(3,10,6,0.92) 55%,
        rgba(3,10,6,0.0)  100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 199;
    pointer-events: none;
}

.lp-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.02em;
    z-index: 1;
}
.lp-logo-img {
    width: 30px; height: 30px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0,255,136,0.8));
    animation: logoGlow 3.5s ease-in-out infinite;
}
@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0,255,136,0.75)); }
    50%       { filter: drop-shadow(0 0 22px rgba(0,255,136,1));    }
}
.lp-logo-text { text-shadow: 0 0 22px rgba(0,255,136,0.35); }

/* nav */
.lp-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
}
.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.lp-nav-a {
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-size: 0.91rem;
    font-weight: 500;
    padding: 9px 18px;
    border-radius: 8px;
    transition: color .2s, background .2s;
    white-space: nowrap;
}
.lp-nav-a:hover { color: var(--g); background: rgba(0,255,136,0.07); }

.lp-nav-cta {
    color: var(--g) !important;
    text-decoration: none;
    font-size: 0.91rem;
    font-weight: 700;
    padding: 9px 22px;
    margin-left: 14px;
    border-radius: 8px;
    border: 1px solid rgba(0,255,136,0.45);
    background: rgba(0,255,136,0.09);
    transition: all .2s;
    white-space: nowrap;
    animation: navCtaGlow 3s ease-in-out infinite;
}
@keyframes navCtaGlow {
    0%, 100% { box-shadow: 0 0 12px rgba(0,255,136,0.15); }
    50%       { box-shadow: 0 0 22px rgba(0,255,136,0.35); }
}
.lp-nav-cta:hover {
    background: rgba(0,255,136,0.2);
    border-color: var(--g);
    box-shadow: 0 0 30px rgba(0,255,136,0.4) !important;
}

.lp-nav-toggle {
    display: none;
    background: rgba(0,255,136,0.09);
    border: 1px solid rgba(0,255,136,0.3);
    color: var(--g);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    z-index: 1;
}

/* ─────────────────────────────────────────────────────────────────
   HERO — Full screen, fully centered
───────────────────────────────────────────────────────────────── */
.lp-hero {
    position: relative;
    z-index: 1;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px 90px;
}

/* Logo + rings */
.lp-hero-logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
}
.lp-hero-logo {
    width: 150px; height: 150px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 44px rgba(0,255,136,0.65));
    animation: heroFloat 5.5s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0)    scale(1);    filter: drop-shadow(0 0 44px rgba(0,255,136,0.65)); }
    50%       { transform: translateY(-12px) scale(1.03); filter: drop-shadow(0 0 70px rgba(0,255,136,0.9));  }
}
.lp-hero-ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(0,255,136,0.18);
    animation: ringPulse 3.5s ease-in-out infinite;
}
.lp-hero-ring-1 { width: 220px; height: 220px; margin: -110px 0 0 -110px; }
.lp-hero-ring-2 { width: 300px; height: 300px; margin: -150px 0 0 -150px; border-color: rgba(0,255,136,0.08); animation-delay: -1.75s; }
@keyframes ringPulse {
    0%, 100% { transform: scale(1);    opacity: 0.6; }
    50%       { transform: scale(1.04); opacity: 1;   }
}

/* Badge */
.lp-hero-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--g);
    padding: 5px 16px;
    border-radius: 100px;
    background: rgba(0,255,136,0.1);
    border: 1px solid rgba(0,255,136,0.28);
    margin-bottom: 18px;
}

.lp-hero-title {
    margin: 0 0 18px;
    font-size: clamp(2.6rem, 6.5vw, 4.4rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1.08;
    text-shadow: 0 0 60px rgba(0,255,136,0.4), 0 0 120px rgba(0,255,136,0.15);
    animation: titleGlow 4s ease-in-out infinite;
}
@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 60px rgba(0,255,136,0.4), 0 0 120px rgba(0,255,136,0.15); }
    50%       { text-shadow: 0 0 90px rgba(0,255,136,0.6), 0 0 160px rgba(0,255,136,0.25); }
}

.lp-hero-subtitle {
    max-width: 600px;
    margin: 0 0 40px;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-dim);
    line-height: 1.6;
}
.lp-hero-subtitle strong { color: rgba(255,255,255,0.92); }

/* CTA button */
.lp-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 17px 46px;
    font-size: 1.05rem;
    font-weight: 800;
    color: #000;
    background: var(--g);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 0 48px rgba(0,255,136,0.6), 0 4px 24px rgba(0,255,136,0.35);
    animation: ctaPulse 2.5s ease-in-out infinite;
    margin-bottom: 56px;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 48px rgba(0,255,136,0.6), 0 4px 24px rgba(0,255,136,0.35); }
    50%       { box-shadow: 0 0 72px rgba(0,255,136,0.8), 0 8px 36px rgba(0,255,136,0.5);  }
}
.lp-hero-cta:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 0 90px rgba(0,255,136,0.85), 0 12px 48px rgba(0,255,136,0.5) !important;
}
.lp-hero-cta-arrow { font-size: 1.2rem; }

/* Stats row */
.lp-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}
.lp-hero-stat { text-align: center; }
.lp-hero-stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--g);
    text-shadow: 0 0 20px rgba(0,255,136,0.55);
    line-height: 1;
    margin-bottom: 4px;
}
.lp-hero-stat-label {
    display: block;
    font-size: 0.72rem;
    color: var(--text-dim);
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.lp-hero-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(0,255,136,0.18);
}

.lp-hero-cta-note {
    margin: -36px 0 40px;
    font-size: 0.8rem;
    color: rgba(0,255,136,0.6);
    letter-spacing: 0.04em;
}

.lp-hero-scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.78rem;
    color: rgba(0,255,136,0.38);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.4; }
    50%       { transform: translateX(-50%) translateY(7px);  opacity: 0.9; }
}

/* ─────────────────────────────────────────────────────────────────
   SHARED SECTION BASE
───────────────────────────────────────────────────────────────── */
.lp-section {
    position: relative;
    z-index: 1;
    padding: 88px 24px;
    text-align: center;
}
.lp-inner {
    max-width: 1060px;
    margin: 0 auto;
}

/* Shared typography */
.lp-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--g);
    margin-bottom: 10px;
    opacity: 0.8;
}
.lp-divider {
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--g), transparent);
    margin: 12px auto 20px;
}
.lp-sec-title {
    margin: 0 0 14px;
    font-size: clamp(1.7rem, 3.8vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.15;
    text-shadow: 0 0 30px rgba(0,255,136,0.18);
}
.lp-sec-title em { color: var(--g); font-style: normal; }
.lp-sec-sub {
    max-width: 620px;
    margin: 0 auto 56px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-dim);
}
.lp-sec-sub strong { color: rgba(255,255,255,0.88); }

/* ─────────────────────────────────────────────────────────────────
   PAIN vs SOLUTION
───────────────────────────────────────────────────────────────── */
.lp-pain { background: none; }

.lp-pain-versus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 840px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}
.lp-pain-col {
    padding: 40px 36px;
}
.lp-pain-col--human {
    background: var(--red-bg);
    border: 1px solid var(--red-border);
    border-right: none;
    border-radius: 20px 0 0 20px;
}
.lp-pain-col--bot {
    background: rgba(0,255,136,0.05);
    border: 1px solid rgba(0,255,136,0.15);
    border-radius: 0 20px 20px 0;
}
.lp-pain-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.lp-pain-col--human .lp-pain-label { color: rgba(255,100,100,0.9); }
.lp-pain-col--bot   .lp-pain-label { color: var(--g); }

.lp-pain-head {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 22px;
    text-align: center;
}
.lp-pain-col--human .lp-pain-head { color: rgba(255,120,120,0.9); }
.lp-pain-col--bot   .lp-pain-head { color: var(--g); }

.lp-pain-list {
    list-style: none;
    padding: 0; margin: 0;
}
.lp-pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.92rem;
    line-height: 1.45;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.lp-pain-list li:last-child { border-bottom: none; }

.lp-pain-col--human .lp-pain-list li { color: rgba(255,185,185,0.85); }
.lp-pain-col--bot   .lp-pain-list li { color: rgba(180,255,220,0.88); }

.lp-pain-icon {
    flex-shrink: 0;
    font-size: 0.95rem;
    margin-top: 1px;
    font-style: normal;
}
.lp-pain-col--human .lp-pain-icon { color: rgba(255,100,100,0.85); }
.lp-pain-col--bot   .lp-pain-icon { color: var(--g); }

/* ─────────────────────────────────────────────────────────────────
   BOT FEATURES — full-width black strip
───────────────────────────────────────────────────────────────── */
.lp-bot {
    width: 100vw;
    max-width: 100vw;
    margin-left:  calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: #000 !important;
    box-sizing: border-box;
}

/* Feature cards */
.lp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 0;
}
.lp-card {
    padding: 36px 28px;
    border-radius: 18px;
    background: rgba(0,255,136,0.03);
    border: 1px solid rgba(0,255,136,0.1);
    text-align: center;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    position: relative;
    overflow: hidden;
}
.lp-card::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,255,136,0.55), transparent);
}
.lp-card:hover {
    border-color: rgba(0,255,136,0.28);
    box-shadow: 0 0 48px rgba(0,255,136,0.1), inset 0 0 50px rgba(0,255,136,0.025);
    transform: translateY(-4px);
}
.lp-card-icon {
    font-size: 2.6rem;
    display: block;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 12px rgba(0,255,136,0.55));
}
.lp-card-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--g);
    margin: 0 0 12px;
    text-shadow: 0 0 18px rgba(0,255,136,0.35);
}
.lp-card-text {
    font-size: 0.9rem;
    line-height: 1.62;
    color: var(--text-dim);
    margin-bottom: 18px;
}
.lp-card-bullets {
    list-style: none;
    padding: 0; margin: 0;
    text-align: left;
    border-top: 1px solid rgba(0,255,136,0.08);
    padding-top: 16px;
}
.lp-card-bullets li {
    font-size: 0.85rem;
    color: rgba(180,255,220,0.82);
    padding: 4px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}
.lp-card-bullets li::before {
    content: '›';
    color: var(--g);
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────────
   HOW IT WORKS — 3 numbered steps
───────────────────────────────────────────────────────────────── */
.lp-how { /* plain lp-section */ }

.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}
.lp-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 16.7%;
    right: 16.7%;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(0,255,136,0.25),
        rgba(0,255,136,0.5),
        rgba(0,255,136,0.25));
}
.lp-step { padding: 0 28px; text-align: center; }
.lp-step-num {
    width: 70px; height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(0,255,136,0.45);
    background: rgba(0,255,136,0.07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--g);
    text-shadow: 0 0 18px rgba(0,255,136,0.7);
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    animation: stepGlow 3.5s ease-in-out infinite;
}
.lp-step:nth-child(2) .lp-step-num { animation-delay: -1.17s; }
.lp-step:nth-child(3) .lp-step-num { animation-delay: -2.33s; }
@keyframes stepGlow {
    0%, 100% { box-shadow: 0 0 22px rgba(0,255,136,0.22); }
    50%       { box-shadow: 0 0 40px rgba(0,255,136,0.45); }
}
.lp-step-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}
.lp-step-desc {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.55;
}
.lp-step-desc strong { color: var(--g); }

/* ─────────────────────────────────────────────────────────────────
   ALPHA FEED — 2 cards
───────────────────────────────────────────────────────────────── */
.lp-alpha { /* plain lp-section, alternates with white-ish */ }

.lp-alpha-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 780px;
    margin: 0 auto;
}
.lp-alpha-card {
    padding: 36px 28px;
    border-radius: 18px;
    border: 1px solid rgba(0,255,136,0.1);
    background: rgba(0,255,136,0.03);
    text-align: center;
    transition: border-color .25s, box-shadow .25s;
}
.lp-alpha-card:hover {
    border-color: rgba(0,255,136,0.25);
    box-shadow: 0 0 40px rgba(0,255,136,0.08);
}
.lp-alpha-icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 10px rgba(0,255,136,0.5));
}
.lp-alpha-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--g);
    margin: 0 0 10px;
}
.lp-alpha-text {
    font-size: 0.88rem;
    color: var(--text-dim);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────────────────────────── */
.lp-statsbar {
    position: relative;
    z-index: 1;
    padding: 22px 24px;
    background: rgba(0,255,136,0.025);
    border-top:    1px solid rgba(0,255,136,0.07);
    border-bottom: 1px solid rgba(0,255,136,0.07);
    text-align: center;
}
.lp-statsbar-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 44px;
    flex-wrap: wrap;
}
.lp-statsbar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-dim);
}
.lp-statsbar-item strong { color: var(--g); }
.lp-statsbar-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--g);
    box-shadow: 0 0 8px rgba(0,255,136,0.9);
    flex-shrink: 0;
    animation: dotBlink 2.2s ease-in-out infinite;
}
@keyframes dotBlink {
    0%, 100% { opacity: 1;   }
    50%       { opacity: 0.3; }
}

/* ─────────────────────────────────────────────────────────────────
   COIN SECTION — full-width dark strip
───────────────────────────────────────────────────────────────── */
.lp-coin {
    position: relative;
    z-index: 1;
    width: 100vw;
    max-width: 100vw;
    margin-left:  calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background: rgba(0,8,4,0.75) !important;
    box-sizing: border-box;
    text-align: center;
    padding: 88px 24px;
}
.lp-coin-inner { max-width: 960px; margin: 0 auto; }

.lp-coin-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #000;
    padding: 6px 18px;
    border-radius: 100px;
    background: var(--g);
    margin-bottom: 24px;
    box-shadow: 0 0 24px rgba(0,255,136,0.55);
    animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 24px rgba(0,255,136,0.55); }
    50%       { box-shadow: 0 0 44px rgba(0,255,136,0.85); }
}
.lp-coin-title {
    margin: 0 0 22px;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    text-shadow: 0 0 44px rgba(0,255,136,0.35);
}
.lp-coin-title em { color: var(--g); font-style: normal; }
.lp-coin-text {
    max-width: 620px;
    margin: 0 auto 14px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-dim);
}
.lp-coin-text strong { color: rgba(255,255,255,0.92); }

.lp-coin-perks {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 36px auto 0;
    max-width: 780px;
}
.lp-coin-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(0,255,136,0.18);
    background: rgba(0,255,136,0.05);
    font-size: 0.86rem;
    color: rgba(200,255,230,0.88);
    white-space: nowrap;
}
.lp-coin-perk-star { color: var(--g); font-size: 0.9rem; }

/* Roadmap */
.lp-roadmap {
    margin-top: 72px;
    text-align: center;
}
.lp-roadmap-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--g);
    opacity: 0.75;
    margin-bottom: 44px;
    display: block;
}
.lp-roadmap-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    max-width: 880px;
    margin: 0 auto;
}
.lp-roadmap-track::before {
    content: '';
    position: absolute;
    top: 23px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
        rgba(0,255,136,0.1),
        rgba(0,255,136,0.45),
        rgba(0,255,136,0.1));
}
.lp-rm-item {
    padding: 0 8px;
    text-align: center;
    position: relative;
}
.lp-rm-node {
    width: 46px; height: 46px;
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.lp-rm-item.done .lp-rm-node {
    background: rgba(0,255,136,0.18);
    border: 2px solid rgba(0,255,136,0.6);
    color: var(--g);
    animation: rmNodePulse 2.5s ease-in-out infinite;
}
@keyframes rmNodePulse {
    0%, 100% { box-shadow: 0 0 18px rgba(0,255,136,0.35); }
    50%       { box-shadow: 0 0 32px rgba(0,255,136,0.65); }
}
.lp-rm-item.next .lp-rm-node {
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.35);
}
.lp-rm-name {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
}
.lp-rm-item.done .lp-rm-name { color: var(--g); }
.lp-rm-item.next .lp-rm-name { color: rgba(255,255,255,0.65); }
.lp-rm-desc {
    font-size: 0.7rem;
    color: var(--text-dim);
    line-height: 1.4;
}
.lp-roadmap-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 36px;
    font-size: 0.8rem;
    color: var(--text-dim);
}
.lp-roadmap-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.lp-rm-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
}
.lp-rm-dot.done { background: var(--g); box-shadow: 0 0 8px rgba(0,255,136,0.7); }
.lp-rm-dot.next { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); }

/* ─────────────────────────────────────────────────────────────────
   LOGIN CTA
───────────────────────────────────────────────────────────────── */
.lp-login {
    position: relative;
    z-index: 1;
    padding: 108px 24px 128px;
    text-align: center;
}
.lp-login-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 500px; height: 500px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,136,0.07) 0%, transparent 70%);
    filter: blur(70px);
    pointer-events: none;
}
.lp-login-title {
    margin: 16px 0 14px;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    text-shadow: 0 0 36px rgba(0,255,136,0.22);
}
.lp-login-sub {
    max-width: 480px;
    margin: 0 auto 40px;
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
}
.lp-telegram { margin-bottom: 14px; }
.lp-telegram #openTelegramBotLoginBtn {
    font-size: 1.05rem;
    font-weight: 800;
    padding: 17px 52px;
    border-radius: 100px;
    background: var(--g);
    border: none;
    color: #000;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 0 48px rgba(0,255,136,0.6);
    animation: ctaPulse 2.5s ease-in-out infinite;
}
.lp-telegram #openTelegramBotLoginBtn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 0 80px rgba(0,255,136,0.85) !important;
}
.lp-auth-state {
    margin-top: 14px;
    font-size: 0.88rem;
    color: rgba(0,255,136,0.8);
}
.lp-login-note {
    margin-top: 24px;
    font-size: 0.78rem;
    color: var(--text-dim);
    opacity: 0.65;
}

/* ─────────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────────── */
.lp-footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px 24px;
    font-size: 0.76rem;
    color: var(--text-dim);
    opacity: 0.45;
    border-top: 1px solid rgba(0,255,136,0.06);
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE — TABLET
───────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .lp-cards { grid-template-columns: 1fr; gap: 16px; }
    .lp-steps { grid-template-columns: 1fr; gap: 36px; }
    .lp-steps::before { display: none; }
    .lp-alpha-grid { grid-template-columns: 1fr; gap: 16px; }
    .lp-roadmap-track { grid-template-columns: 1fr 1fr; gap: 28px; }
    .lp-roadmap-track::before { display: none; }
    .lp-coin-perks { gap: 10px; }
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE
───────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
    .lp-navbar { padding: 14px 18px; }

    /* Nav overlay on mobile */
    .lp-nav-toggle { display: block; }
    .lp-nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 12px; right: 12px;
        flex-direction: column;
        gap: 8px;
        padding: 20px;
        background: rgba(4,12,8,0.97);
        border-radius: 16px;
        border: 1px solid rgba(0,255,136,0.14);
        box-shadow: 0 0 48px rgba(0,255,136,0.15);
        z-index: 998;
        backdrop-filter: blur(12px);
    }
    #landingNav.is-open .lp-nav-links { display: flex; }
    .lp-nav-cta { margin-left: 0; }

    /* Hero */
    .lp-hero { padding: 48px 20px 72px; min-height: auto; }
    .lp-hero-logo { width: 110px; height: 110px; }
    .lp-hero-ring-1 { width: 170px; height: 170px; margin: -85px 0 0 -85px; }
    .lp-hero-ring-2 { width: 230px; height: 230px; margin: -115px 0 0 -115px; }
    .lp-hero-stats { flex-direction: column; gap: 18px; }
    .lp-hero-stat-sep { display: none; }

    /* Pain */
    .lp-pain-versus {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .lp-pain-col--human {
        border-right: 1px solid var(--red-border);
        border-bottom: none;
        border-radius: 16px 16px 0 0;
    }
    .lp-pain-col--bot { border-radius: 0 0 16px 16px; }

    /* Roadmap */
    .lp-roadmap-track { grid-template-columns: 1fr; gap: 20px; }

    /* Coin perks */
    .lp-coin-perks { flex-direction: column; align-items: center; }
    .lp-coin-perk { white-space: normal; }

    /* Stats bar */
    .lp-statsbar-inner { gap: 20px; flex-direction: column; }

    /* Sections */
    .lp-section { padding: 64px 20px; }
    .lp-coin { padding: 64px 20px; }
    .lp-login { padding: 80px 20px 96px; }
}
