/* LP2 - Premium Waiting List Landing Page */
/* Dark fintech aesthetic with glassmorphism and micro-animations */

:root {
    --lp-bg: #06070a;
    --lp-bg-alt: #0c0e14;
    --lp-bg-card: rgba(255,255,255,0.025);
    --lp-accent: #00e8a2;
    --lp-accent-dim: rgba(0,232,162,0.15);
    --lp-cyan: #00d4ff;
    --lp-purple: #8b5cf6;
    --lp-red: #ff4757;
    --lp-gold: #ffc107;
    --lp-text: #ffffff;
    --lp-text-dim: rgba(255,255,255,0.65);
    --lp-text-muted: rgba(255,255,255,0.4);
    --lp-border: rgba(255,255,255,0.07);
    --lp-glass: rgba(255,255,255,0.04);
    --lp-glass-border: rgba(255,255,255,0.08);
    --grad-main: linear-gradient(135deg, #00e8a2 0%, #00d4ff 100%);
    --grad-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --grad-warm: linear-gradient(135deg, #ffc107 0%, #ff6b35 100%);
    --shadow-glow: 0 0 60px rgba(0,232,162,0.15);
    --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--lp-bg);
    color: var(--lp-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.lp-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
.text-accent { color: var(--lp-accent) !important; }
.text-red    { color: var(--lp-red) !important; }
.text-gold   { color: var(--lp-gold) !important; }
.text-dim    { color: var(--lp-text-dim) !important; }
.text-grad {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.headline {
    font-family: 'Bebas Neue', Impact, sans-serif;
    letter-spacing: 2px;
    line-height: 1.08;
}

/* ── HEADER ── */
.lp2-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(6,7,10,0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--lp-border);
    padding: 14px 0;
}
.lp2-header .lp-wrap {
    display: flex; justify-content: space-between; align-items: center;
}
.lp2-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: #fff; font-weight: 700; font-size: 1.25rem;
}
.lp2-logo i { font-size: 1.4rem; background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.header-cta {
    background: var(--grad-main); color: #000; padding: 10px 28px;
    border-radius: var(--radius-pill); text-decoration: none;
    font-weight: 700; font-size: 0.88rem; letter-spacing: 0.5px;
    transition: all 0.3s; display: flex; align-items: center; gap: 8px;
}
.header-cta:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(0,232,162,0.4); }

/* ── HERO ── */
.lp2-hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 130px 24px 80px; position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse at 25% 15%, rgba(0,232,162,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 85%, rgba(139,92,246,0.1) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.05) 0%, transparent 60%),
        var(--lp-bg);
}
.hero-particles {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-particles .orb {
    position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4;
}
.hero-particles .orb-1 { width: 400px; height: 400px; background: rgba(0,232,162,0.12); top: -10%; left: -5%; animation: orbFloat 12s ease-in-out infinite; }
.hero-particles .orb-2 { width: 300px; height: 300px; background: rgba(139,92,246,0.1); bottom: -5%; right: -3%; animation: orbFloat 15s ease-in-out infinite reverse; }
.hero-particles .orb-3 { width: 200px; height: 200px; background: rgba(0,212,255,0.08); top: 40%; right: 20%; animation: orbFloat 10s ease-in-out infinite 2s; }

@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-20px) scale(1.1); }
    66% { transform: translate(-20px,30px) scale(0.95); }
}

.scarcity-bar {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,71,87,0.1); border: 1px solid rgba(255,71,87,0.3);
    color: var(--lp-red); padding: 10px 28px; border-radius: var(--radius-pill);
    font-size: 0.88rem; font-weight: 600; letter-spacing: 0.5px;
    margin-bottom: 36px; animation: pulseBadge 2.5s ease-in-out infinite;
}
@keyframes pulseBadge {
    0%,100%{ box-shadow: 0 0 0 0 rgba(255,71,87,0.35); }
    50%{ box-shadow: 0 0 0 12px rgba(255,71,87,0); }
}

.hero-h1 {
    font-size: clamp(3rem, 9vw, 5.5rem);
    margin-bottom: 28px;
}
.hero-sub {
    font-size: 1.3rem; color: var(--lp-text-dim);
    max-width: 620px; margin: 0 auto 44px; line-height: 1.7;
}
.hero-sub strong { color: var(--lp-accent); }

.hero-metrics {
    display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-metric { text-align: center; }
.hero-metric-val {
    display: block; font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem; line-height: 1;
    background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-metric-lbl { font-size: 0.85rem; color: var(--lp-text-muted); text-transform: uppercase; letter-spacing: 1px; }
.hero-metric-divider { width: 1px; height: 50px; background: var(--lp-border); align-self: center; }

/* ── CTA Buttons ── */
.cta {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 12px; padding: 18px 44px; border-radius: var(--radius-pill);
    font-size: 1.05rem; font-weight: 700; text-decoration: none;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s;
    border: none; cursor: pointer; position: relative; overflow: hidden;
}
.cta-primary {
    background: var(--grad-main); color: #000;
    box-shadow: 0 4px 30px rgba(0,232,162,0.25);
}
.cta-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 50px rgba(0,232,162,0.45); }
.cta-primary.pulse { animation: ctaPulse 2.2s ease-in-out infinite; }
@keyframes ctaPulse {
    0%,100%{ box-shadow: 0 4px 30px rgba(0,232,162,0.25); }
    50%{ box-shadow: 0 4px 60px rgba(0,232,162,0.5); }
}
.cta-outline {
    background: transparent; color: var(--lp-cyan);
    border: 2px solid var(--lp-cyan);
}
.cta-outline:hover { background: var(--lp-cyan); color: #000; }
.cta-full { width: 100%; }

.hero-trust {
    margin-top: 24px; color: var(--lp-text-muted); font-size: 0.92rem;
}
.hero-trust i { color: var(--lp-accent); margin-right: 6px; }

.scroll-arrow {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: var(--lp-text-muted); animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%,100%{ transform: translateX(-50%) translateY(0); }
    50%{ transform: translateX(-50%) translateY(12px); }
}

/* ── SECTIONS ── */
.lp2-section { padding: 110px 24px; position: relative; }
.lp2-section.alt-bg { background: var(--lp-bg-alt); }
.sec-badge {
    display: inline-block; background: var(--grad-main); color: #000;
    padding: 7px 22px; border-radius: var(--radius-pill);
    font-size: 0.82rem; font-weight: 700; letter-spacing: 2px;
    margin-bottom: 20px; text-transform: uppercase;
}
.sec-badge.purple { background: var(--grad-purple); color: #fff; }
.sec-badge.warm { background: var(--grad-warm); color: #000; }
.sec-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    text-align: center; margin-bottom: 20px;
}
.sec-sub {
    text-align: center; color: var(--lp-text-dim); font-size: 1.1rem;
    max-width: 650px; margin: 0 auto 60px; line-height: 1.7;
}

/* ── PROBLEM SECTION (Psychology Cards) ── */
.problem-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px; margin-bottom: 50px;
}
.problem-card {
    background: var(--lp-glass); border: 1px solid var(--lp-glass-border);
    border-radius: var(--radius); padding: 32px;
    transition: all 0.35s ease; position: relative; overflow: hidden;
}
.problem-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--lp-red), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.problem-card:hover { border-color: rgba(255,71,87,0.3); transform: translateY(-6px); box-shadow: var(--shadow-card); }
.problem-card:hover::before { opacity: 1; }
.problem-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: rgba(255,71,87,0.1); display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--lp-red); margin-bottom: 20px;
}
.problem-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.problem-card p { color: var(--lp-text-dim); font-size: 0.93rem; }

.problem-bridge {
    text-align: center; max-width: 700px; margin: 0 auto;
    padding: 32px; background: var(--lp-accent-dim);
    border: 1px solid rgba(0,232,162,0.2); border-radius: var(--radius);
}
.problem-bridge p { font-size: 1.15rem; color: var(--lp-text-dim); }
.problem-bridge strong { color: var(--lp-accent); }

/* ── HOW IT WORKS ── */
.steps-row {
    display: flex; align-items: stretch; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.step-box {
    background: var(--lp-glass); border: 1px solid var(--lp-glass-border);
    border-radius: var(--radius); padding: 40px 28px; text-align: center;
    flex: 1; min-width: 220px; max-width: 320px; transition: all 0.35s;
}
.step-box:hover { border-color: rgba(0,232,162,0.25); transform: translateY(-5px); box-shadow: var(--shadow-card); }
.step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--grad-main); display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #000;
    margin: 0 auto 18px;
}
.step-box h3 { font-size: 1.15rem; margin-bottom: 10px; }
.step-box p { color: var(--lp-text-dim); font-size: 0.92rem; }
.step-arrow { font-size: 1.4rem; color: var(--lp-accent); align-self: center; }

/* ── SECURITY CARDS ── */
.security-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px;
}
.sec-card {
    background: var(--lp-glass); border: 1px solid var(--lp-glass-border);
    border-radius: var(--radius); padding: 36px; text-align: center;
    transition: all 0.35s; position: relative; overflow: hidden;
}
.sec-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad-main); opacity: 0; transition: opacity 0.3s;
}
.sec-card:hover { border-color: rgba(0,232,162,0.2); transform: translateY(-5px); box-shadow: var(--shadow-card); }
.sec-card:hover::before { opacity: 1; }
.sec-card-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--grad-main); display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #000; margin: 0 auto 20px;
}
.sec-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.sec-card p { color: var(--lp-text-dim); font-size: 0.93rem; }

/* ── LIVE TRADES TABLE ── */
.trades-table-wrap {
    background: var(--lp-glass); border: 1px solid var(--lp-glass-border);
    border-radius: var(--radius); overflow: hidden;
}
.trades-table {
    width: 100%; border-collapse: collapse;
}
.trades-table th {
    text-align: left; padding: 16px 20px; font-size: 0.82rem;
    color: var(--lp-text-muted); text-transform: uppercase; letter-spacing: 1px;
    background: rgba(255,255,255,0.02); border-bottom: 1px solid var(--lp-border);
}
.trades-table td {
    padding: 14px 20px; border-bottom: 1px solid var(--lp-border);
    font-size: 0.93rem;
}
.trades-table tr:last-child td { border-bottom: none; }
.trades-table tr:hover td { background: rgba(255,255,255,0.02); }
.side-long { color: var(--lp-accent); font-weight: 700; }
.side-short { color: var(--lp-red); font-weight: 700; }
.pnl-positive { color: var(--lp-accent); font-weight: 700; }
.badge-sm {
    display: inline-block; padding: 3px 10px; border-radius: 6px;
    font-size: 0.78rem; font-weight: 600;
}
.badge-profit { background: rgba(0,232,162,0.1); color: var(--lp-accent); }
.badge-live { background: rgba(0,212,255,0.1); color: var(--lp-cyan); }

/* ── BOT SPECS ── */
.specs-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px;
    margin-top: 40px;
}
.spec-item {
    background: var(--lp-glass); border: 1px solid var(--lp-glass-border);
    border-radius: 12px; padding: 20px; text-align: center;
}
.spec-val {
    display: block; font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem; color: var(--lp-cyan); line-height: 1;
}
.spec-lbl { font-size: 0.82rem; color: var(--lp-text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ── PRICING SECTION ── */
.pricing-wrapper {
    max-width: 520px; margin: 0 auto;
    background: var(--lp-glass); border: 1px solid var(--lp-glass-border);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
}
.pricing-wrapper::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad-main);
}
.pricing-head {
    background: var(--grad-main); padding: 32px; text-align: center;
}
.pricing-head h3 { font-size: 1.5rem; color: #000; margin-bottom: 4px; font-weight: 800; }
.pricing-head p { color: rgba(0,0,0,0.7); font-size: 0.95rem; }
.pricing-body { padding: 36px; text-align: center; }
.pricing-spots {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,71,87,0.08); border: 1px solid rgba(255,71,87,0.2);
    color: var(--lp-red); padding: 8px 20px; border-radius: var(--radius-pill);
    font-size: 0.9rem; font-weight: 600; margin-bottom: 28px;
}
.pricing-old {
    text-decoration: line-through; color: var(--lp-text-muted); font-size: 1.4rem;
    margin-bottom: 4px;
}
.pricing-new {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem; line-height: 1;
    background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.pricing-new span { font-size: 1.4rem; -webkit-text-fill-color: var(--lp-text-dim); }
.pricing-trial {
    display: inline-block; background: var(--lp-accent-dim);
    border: 1px solid rgba(0,232,162,0.2); color: var(--lp-accent);
    padding: 8px 20px; border-radius: var(--radius-pill);
    font-size: 0.9rem; font-weight: 600; margin: 16px 0 28px;
}
.pricing-benefits {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: 24px; text-align: left;
}
.pricing-benefits span {
    color: var(--lp-text-dim); font-size: 0.92rem;
}
.pricing-benefits i { color: var(--lp-accent); margin-right: 10px; width: 16px; }
.pricing-foot {
    padding: 20px 36px; border-top: 1px solid var(--lp-border); text-align: center;
}
.pricing-foot p { color: var(--lp-text-muted); font-size: 0.88rem; }
.pricing-foot a { color: var(--lp-cyan); text-decoration: none; font-weight: 600; }
.pricing-foot a:hover { text-decoration: underline; }

/* ── TRUST BADGES ── */
.trust-row {
    display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 48px;
}
.trust-item {
    display: flex; align-items: center; gap: 10px;
    color: var(--lp-text-muted); font-size: 0.9rem;
}
.trust-item i { font-size: 1.3rem; color: var(--lp-accent); }

/* ── FOOTER ── */
.lp2-footer {
    background: var(--lp-bg-alt); border-top: 1px solid var(--lp-border);
    padding: 50px 24px 28px;
}
.footer-inner {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 32px; margin-bottom: 32px;
}
.footer-brand { max-width: 300px; }
.footer-brand .lp2-logo { margin-bottom: 12px; }
.footer-brand p { color: var(--lp-text-muted); font-size: 0.92rem; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--lp-text-dim); text-decoration: none; font-size: 0.92rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--lp-accent); }
.footer-bottom {
    text-align: center; padding-top: 24px; border-top: 1px solid var(--lp-border);
}
.footer-bottom p { color: var(--lp-text-muted); font-size: 0.85rem; }
.footer-disclaimer { margin-top: 10px; font-size: 0.78rem !important; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── REVEAL ANIMATIONS ── */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media(max-width:768px){
    .hero-h1 { font-size: 2.8rem; }
    .hero-metrics { gap: 24px; }
    .hero-metric-divider { display: none; }
    .step-arrow { display: none; }
    .lp2-section { padding: 70px 16px; }
    .cta { padding: 16px 32px; font-size: 0.95rem; }
    .pricing-new { font-size: 3rem; }
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-brand { text-align: center; }
    .trades-table { font-size: 0.85rem; }
    .trades-table th, .trades-table td { padding: 10px 12px; }
}
@media(max-width:480px){
    .hero-h1 { font-size: 2.2rem; }
    .hero-sub { font-size: 1.05rem; }
    .sec-title { font-size: 1.8rem; }
    .scarcity-bar { font-size: 0.78rem; padding: 8px 16px; }
    .problem-card, .sec-card, .step-box { padding: 24px; }
}
