/* =====================================================================
   EMOLESS - MODERN SOLANA TRADING BOT LANDING
   Full-width, Clean, Professional
   Colors: Silver #8b9398 | Fire Orange #db7f30 | Fire Red #f5575f
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --silver: #8b9398;
    --silver-light: #c4cdd2;
    --silver-dark: #6b7479;
    --fire-orange: #db7f30;
    --fire-red: #f5575f;
    --accent-gradient: linear-gradient(120deg, #db7f30 0%, #f5575f 100%);
    
    /* Neutrals */
    --black: #000000;
    --dark-900: #0f0f0f;
    --dark-800: #1a1a1a;
    --dark-700: #262626;
    --dark-600: #404040;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    
    /* Semantic */
    --success: #22c55e;
    --error: #ef4444;
    --warning: #f59e0b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.landing-visible .container > #mainHeader { display: none !important; }
body.landing-visible .container {
    padding: 0 !important;
    max-width: none !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* ==================================================================
   BASE LAYOUT - Full Width, No Boxes
   ================================================================== */
.lp {
    position: relative;
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

/* Subtle background texture */
.lp::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(219, 127, 48, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 87, 95, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ==================================================================
   NAVBAR - Clean, Full Width
   ================================================================== */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 147, 152, 0.1);
    padding: 0;
}

.lp-navbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}

.lp-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.lp-logo-img {
    height: 42px;
    width: auto;
    transition: opacity 0.2s ease;
}

.lp-logo:hover .lp-logo-img {
    opacity: 0.8;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.lp-nav-a {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.lp-nav-a:hover {
    color: var(--white);
}

.lp-nav-cta {
    background: var(--accent-gradient);
    color: var(--black) !important;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(219, 127, 48, 0.3);
}

.lp-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--silver);
    color: var(--silver);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

/* ==================================================================
   HERO - Full Width, Centered
   ================================================================== */
.lp-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 30px 80px;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-900) 100%);
}

.lp-hero-logo-wrap {
    position: relative;
    margin-bottom: 40px;
}

.lp-hero-logo-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--fire-orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.05);
    }
}

.lp-hero-logo {
    width: 240px;
    height: 240px;
    object-fit: contain;
    animation: heroFloat 8s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-800);
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--silver);
    margin-bottom: 30px;
    border: 1px solid var(--dark-700);
}

.lp-hero-badge span {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.lp-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 25px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.lp-hero-title-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: var(--silver);
    max-width: 650px;
    margin-bottom: 45px;
    line-height: 1.5;
    font-weight: 400;
}

.lp-hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}

.lp-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-gradient);
    color: var(--black);
    padding: 20px 45px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
    margin-bottom: 15px;
}

.lp-hero-cta:hover {
    transform: translateY(-2px);
}

.lp-hero-cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.lp-hero-cta:hover .lp-hero-cta-arrow {
    transform: translateX(3px);
}

.lp-hero-cta-note {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.lp-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.lp-hero-stat {
    text-align: center;
}

.lp-hero-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.lp-hero-stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
    font-weight: 500;
}

.lp-hero-stat-sep {
    width: 1px;
    height: 45px;
    background: var(--dark-700);
}

/* ==================================================================
   SECTIONS - Full Width, No Boxes
   ================================================================== */
.lp-section {
    padding: 120px 30px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.lp-section:nth-child(even) {
    background: var(--dark-900);
}

.lp-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.lp-section-header {
    text-align: center;
    margin-bottom: 80px;
}

.lp-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fire-orange);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.lp-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.01em;
}

.lp-section-title-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-section-subtitle {
    font-size: 1.2rem;
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* ==================================================================
   COMPARISON - Side by Side, No Boxes
   ================================================================== */
.lp-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
}

.lp-card {
    padding: 0;
    background: none;
    border: none;
}

.lp-card-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.lp-card-negative .lp-card-label { 
    color: var(--fire-red);
}

.lp-card-positive .lp-card-label { 
    color: var(--fire-orange);
}

.lp-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.2;
}

.lp-card-list {
    list-style: none;
}

.lp-card-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    font-size: 1rem;
    color: var(--silver);
    line-height: 1.5;
}

.lp-card-list li:not(:last-child) {
    border-bottom: 1px solid var(--dark-700);
}

.lp-card-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-card-negative .lp-card-icon { 
    color: var(--fire-red);
}

.lp-card-positive .lp-card-icon { 
    color: var(--success);
}

/* ==================================================================
   FEATURES - Clean Grid, No Boxes
   ================================================================== */
.lp-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    margin-top: 40px;
}

.lp-feature {
    text-align: center;
    padding: 0;
    background: none;
    border: none;
}

.lp-feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    display: block;
    filter: grayscale(0.3);
}

.lp-feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.lp-feature-desc {
    font-size: 0.95rem;
    color: var(--silver);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ==================================================================
   STEPS - Horizontal Flow
   ================================================================== */
.lp-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    margin-top: 60px;
}

.lp-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--fire-orange), 
        var(--fire-red), 
        transparent
    );
}

.lp-step {
    text-align: center;
    flex: 1;
    max-width: 300px;
    position: relative;
    z-index: 1;
}

.lp-step-num {
    width: 80px;
    height: 80px;
    background: var(--dark-900);
    border: 3px solid var(--fire-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--fire-orange);
    margin: 0 auto 25px;
}

.lp-step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

.lp-step-desc {
    font-size: 0.95rem;
    color: var(--silver);
    line-height: 1.5;
}

.lp-step-desc strong {
    color: var(--white);
    font-weight: 600;
}

/* ==================================================================
   ROADMAP - Horizontal Timeline
   ================================================================== */
.lp-roadmap-section {
    background: var(--dark-900);
}

.lp-roadmap {
    margin-top: 40px;
}

.lp-roadmap-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--fire-orange);
    text-align: center;
    margin-bottom: 50px;
    display: block;
}

.lp-roadmap-track {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.lp-roadmap-track::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--fire-orange),
        var(--fire-red),
        var(--silver-dark),
        var(--silver-dark),
        var(--silver-dark)
    );
}

.lp-rm-item {
    text-align: center;
    flex: 1;
    max-width: 180px;
    position: relative;
    z-index: 1;
}

.lp-rm-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--dark-900);
    border: 3px solid var(--silver-dark);
    color: var(--silver);
}

.lp-rm-item.done .lp-rm-node {
    background: var(--fire-orange);
    border-color: var(--fire-orange);
    color: var(--black);
}

.lp-rm-item.next .lp-rm-node {
    background: var(--dark-800);
    border-color: var(--silver-dark);
    color: var(--silver);
}

.lp-rm-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.lp-rm-item.done .lp-rm-name {
    color: var(--fire-orange);
}

.lp-rm-desc {
    font-size: 0.8rem;
    color: var(--silver-dark);
    line-height: 1.4;
}

.lp-roadmap-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.lp-roadmap-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--silver);
}

.lp-rm-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.lp-rm-dot.done {
    background: var(--fire-orange);
}

.lp-rm-dot.next {
    background: var(--silver-dark);
}

/* ==================================================================
   CTA SECTION - Terminal Style
   ================================================================== */
.lp-cta-section {
    padding: 120px 30px;
    text-align: center;
    background: var(--black);
}

.lp-terminal {
    background: var(--dark-900);
    border: 1px solid var(--dark-700);
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
}

.lp-terminal-header {
    background: var(--dark-800);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--dark-700);
}

.lp-terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.lp-terminal-dot:nth-child(1) { background: var(--fire-red); }
.lp-terminal-dot:nth-child(2) { background: var(--fire-orange); }
.lp-terminal-dot:nth-child(3) { background: var(--success); }

.lp-terminal-body {
    padding: 40px;
}

.lp-terminal-line {
    font-family: 'JetBrains Mono', 'Consolas', monospace;
    font-size: 0.9rem;
    color: var(--silver);
    margin-bottom: 8px;
    text-align: left;
}

.lp-terminal-line-command {
    color: var(--fire-orange);
}

.lp-terminal-line-success {
    color: var(--success);
}

.lp-terminal-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-gradient);
    color: var(--black);
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 25px;
    transition: transform 0.2s ease;
}

.lp-terminal-cta:hover {
    transform: scale(1.02);
}

/* ==================================================================
   TELEGRAM LOGIN BUTTON
   ================================================================== */
#openTelegramBotLoginBtn {
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(219, 127, 48, 0.25) 0%, rgba(245, 87, 95, 0.3) 100%);
    border: 1px solid rgba(219, 127, 48, 0.6);
    color: var(--fire-orange);
    cursor: pointer;
    transition: all 0.25s ease;
    text-shadow: 0 0 16px rgba(219, 127, 48, 0.5);
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
}

#openTelegramBotLoginBtn:hover {
    background: linear-gradient(135deg, rgba(219, 127, 48, 0.35) 0%, rgba(245, 87, 95, 0.45) 100%);
    border-color: rgba(219, 127, 48, 0.85);
    box-shadow: 0 0 40px rgba(219, 127, 48, 0.4);
    transform: translateY(-3px) scale(1.02);
}

/* ==================================================================
   FOOTER
   ================================================================== */
.lp-footer {
    padding: 40px 30px;
    text-align: center;
    background: var(--dark-900);
    border-top: 1px solid var(--dark-700);
}

.lp-footer-text {
    font-size: 0.9rem;
    color: var(--silver-dark);
}

/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 1200px) {
    .lp-comparison {
        gap: 60px;
    }
    
    .lp-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
}

@media (max-width: 768px) {
    .lp-navbar-inner {
        padding: 12px 20px;
    }
    
    .lp-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 25px;
        gap: 20px;
        border-top: 1px solid var(--fire-orange);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        z-index: 1001;
    }
    
    #landingNav.is-open .lp-nav-links {
        display: flex;
    }
    
    .lp-nav-toggle {
        display: block;
        background: transparent;
        border: 1px solid var(--fire-orange);
        color: var(--fire-orange);
        padding: 8px 16px;
        border-radius: 4px;
        cursor: pointer;
        font-size: 0.9rem;
        transition: all 0.2s ease;
    }
    
    .lp-nav-toggle:hover {
        background: var(--fire-orange);
        color: var(--black);
    }
    
    .lp-hero {
        padding: 140px 20px 60px;
    }
    
    .lp-hero-logo {
        width: 180px;
        height: 180px;
    }
    
    .lp-comparison {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .lp-features {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .lp-steps {
        flex-direction: column;
        gap: 50px;
    }
    
    .lp-steps::before {
        display: none;
    }
    
    .lp-roadmap-track {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .lp-roadmap-track::before {
        display: none;
    }
    
    .lp-section {
        padding: 80px 20px;
    }
    
    .lp-hero-stats {
        gap: 30px;
    }
    
    .lp-hero-stat-sep {
        display: none;
    }
}

@media (max-width: 480px) {
    .lp-hero-stats {
        flex-direction: column;
        gap: 25px;
    }
    
    .lp-roadmap-legend {
        flex-direction: column;
        gap: 15px;
    }
}