/* ============================================
   LIQUIDITY HUNTER LANDING PAGE STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --color-bg-primary: #0a0a0c;
    --color-bg-secondary: #111115;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #A0A0B0;
    --color-accent-cyan: #00F5FF;
    --color-accent-green: #00FF88;
    --color-accent-red: #FF4757;
    --color-accent-gold: #FFD700;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.7;
    font-weight: 400;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* HEADER */
.lh-header {
    background: rgba(10, 10, 12, 0.95);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 71, 87, 0.3);
    backdrop-filter: blur(10px);
}

.lh-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lh-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.lh-logo .accent {
    color: var(--color-accent-red);
}

.lh-header nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--color-accent-cyan);
}

.button-cta {
    background: linear-gradient(135deg, var(--color-accent-red), #CC3344);
    color: #FFF;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.button-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.4);
}

/* HERO SECTION */
.lh-hero {
    padding: 10rem 0 5rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 71, 87, 0.1) 0%, transparent 50%);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: var(--color-accent-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.lh-hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 60px rgba(255, 71, 87, 0.5);
}

.hero-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-accent-red);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.hero-tagline strong {
    color: var(--color-accent-green);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    min-width: 150px;
}

.stat-box.profit {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.4);
}

.stat-box.profit .stat-value {
    color: var(--color-accent-green);
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
}

/* CTA Button */
.button-main {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent-red), #AA2233);
    color: #FFF;
    padding: 1.25rem 3rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s;
    box-shadow: 0 5px 30px rgba(255, 71, 87, 0.3);
}

.button-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 71, 87, 0.5);
}

/* DIFFERENCE SECTION */
.lh-difference {
    padding: 5rem 0;
    background: var(--color-bg-secondary);
}

.lh-difference h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.warning-badge {
    display: block;
    text-align: center;
    color: var(--color-accent-gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.diff-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
}

.diff-card.bad {
    border: 2px solid rgba(255, 71, 87, 0.4);
}

.diff-card.good {
    border: 2px solid rgba(0, 255, 136, 0.4);
    background: rgba(0, 255, 136, 0.05);
}

.diff-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.diff-card ul {
    list-style: none;
}

.diff-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-secondary);
}

.diff-card.good li {
    color: var(--color-text-primary);
}

.not-buy-only {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 1.25rem 2rem;
    border-radius: 10px;
    color: var(--color-accent-gold);
}

.not-buy-only .long {
    color: var(--color-accent-green);
    font-weight: 700;
}

.not-buy-only .short {
    color: var(--color-accent-red);
    font-weight: 700;
}

/* STATS SECTION */
.lh-stats {
    padding: 5rem 0;
}

.lh-stats h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-sub {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.stat-card.total {
    border-color: rgba(0, 245, 255, 0.4);
}

.stat-card.long {
    border-color: rgba(0, 255, 136, 0.4);
}

.stat-card.short {
    border-color: rgba(255, 71, 87, 0.4);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-card.total .stat-number {
    color: var(--color-accent-cyan);
}

.stat-card.long .stat-number {
    color: var(--color-accent-green);
}

.stat-card.short .stat-number {
    color: var(--color-accent-red);
}

.stat-desc {
    display: block;
    margin-top: 0.5rem;
    color: var(--color-text-secondary);
}

.stat-wr {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

/* CRASH TEST SECTION */
.lh-crash-test {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-bg-secondary), rgba(100, 0, 0, 0.1));
}

.skull-badge {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.lh-crash-test h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.crash-timeline {
    max-width: 700px;
    margin: 3rem auto 0;
}

.crash-item {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 71, 87, 0.3);
    border-left: 4px solid var(--color-accent-red);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

.crash-item.mega {
    border-color: var(--color-accent-gold);
    border-left-color: var(--color-accent-gold);
    background: rgba(255, 215, 0, 0.05);
}

.crash-date {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.crash-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.crash-pips {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent-red);
}

.crash-result {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.crash-result.survived {
    color: var(--color-accent-green);
}

.crash-result.profit {
    color: var(--color-accent-gold);
    animation: pulse 2s infinite;
}

.crash-note {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.crash-item.mega .crash-note strong {
    color: var(--color-accent-gold);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* PROOF SECTION */
.lh-proof {
    padding: 5rem 0;
}

.lh-proof h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.proof-image {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.proof-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    text-align: center;
}

/* Backtest Specs */
.backtest-specs {
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 3rem;
}

.backtest-specs h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-accent-cyan);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.spec-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.spec-icon {
    font-size: 1.5rem;
}

.spec-item strong {
    display: block;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.spec-item p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* HOW IT WORKS */
.lh-how {
    padding: 5rem 0;
    background: var(--color-bg-secondary);
}

.lh-how h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.how-step {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.step-num {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-red);
    color: #FFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
}

.how-step h3 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin: 1rem 0 0.5rem;
    color: var(--color-accent-cyan);
}

.how-step p {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

/* CTA SECTION */
.lh-cta {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(255, 71, 87, 0.1));
}

.lh-cta h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.lh-cta>.container>p {
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    margin-bottom: 3rem;
}

/* CTA Steps */
.cta-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.cta-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-step .step-num {
    background: var(--color-accent-green);
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.cta-step p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.cta-step code {
    background: rgba(0, 245, 255, 0.2);
    color: var(--color-accent-cyan);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: var(--font-mono);
}

/* Hero CTA Subtext */
.cta-subtext {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.cta-note {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.cta-note p {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .cta-steps {
        flex-direction: column;
        gap: 1rem;
    }
}

/* FOOTER */
.lh-footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lh-footer p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

.footer-sub {
    font-size: 0.75rem !important;
    margin-top: 0.5rem;
}

/* FAQ SECTION */
.lh-faq {
    padding: 5rem 0;
}

.lh-faq h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
}

.faq-item.featured {
    grid-column: span 2;
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.4);
}

.faq-q {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-accent-cyan);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-a p {
    margin-bottom: 0.75rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.faq-a strong {
    color: var(--color-text-primary);
}

.faq-highlight {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--color-accent-green) !important;
}

.faq-punchline {
    font-weight: 700;
    color: var(--color-accent-gold) !important;
    font-size: 1rem !important;
    margin-top: 1rem !important;
}

.faq-math {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin: 0.75rem 0;
}

.faq-math .text-red {
    color: var(--color-accent-red);
    font-weight: 700;
}

.faq-math .text-green {
    color: var(--color-accent-green);
    font-weight: 700;
}

.ict-quote {
    background: rgba(0, 245, 255, 0.1);
    border-left: 3px solid var(--color-accent-cyan);
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.ict-quote p {
    margin-bottom: 0.25rem !important;
}

.ict-quote em {
    color: var(--color-text-primary);
}

.faq-big {
    font-size: 1.5rem !important;
    font-weight: 700;
    color: var(--color-accent-green) !important;
    margin-bottom: 1rem !important;
}

/* ========================================
   LIGHTBOX (Image Zoom)
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #FFF;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #FF4757;
}

/* Zoomable Images */
.zoomable {
    cursor: zoom-in;
    transition: transform 0.3s, box-shadow 0.3s;
}

.zoomable:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item.featured {
        grid-column: span 1;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .how-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lh-hero h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .difference-grid,
    .stats-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .lh-header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .lh-header nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    /* Hero Padding to Clear Header */
    .lh-hero {
        padding-top: 13rem;
        /* Increase from 10rem to clear stacked header */
    }
}