/* Lenis Smooth Scroll Base */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

:root {
    /* Deep Blue & Futuristic Color Palette */
    --bg-deep: #030613;
    --bg-panel: rgba(10, 18, 40, 0.7);
    --bg-panel-solid: #0a1228;
    
    --accent-cyan: #00f0ff;
    --accent-cyan-glow: rgba(0, 240, 255, 0.4);
    
    --accent-blue: #1f51ff;
    --accent-blue-glow: rgba(31, 81, 255, 0.4);
    
    --text-main: #e2e8f0;
    --text-muted: #6b7a90;
    
    --profit-green: #00ff66;
    --danger-red: #ff2a2a;
    
    /* Typography */
    --font-tech: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* HUD Borders */
    --border-tech: 1px solid rgba(0, 240, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(31, 81, 255, 0.08), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.05), transparent 25%);
    background-attachment: fixed;
}

/* =========================================
   TICKER TAPE (TOP)
========================================= */
.ticker-wrap {
    width: 100%;
    background-color: #000;
    border-bottom: 1px solid var(--accent-blue);
    overflow: hidden;
    height: 30px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

.ticker-feed {
    display: flex;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
    font-family: var(--font-tech);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.ticker-item {
    margin-right: 50px;
}

.tech-label { color: var(--text-muted); }
.profit { color: var(--profit-green); }

@keyframes ticker {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* =========================================
   MAIN LAYOUT & HUD EFFECTS
========================================= */
.hud-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

/* Grid overlay for tech feel */
.hud-container::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: -1;
}

.hud-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: var(--border-tech);
    margin-bottom: 50px;
}

.brand-logo {
    font-family: var(--font-tech);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan-glow);
}

.header-status {
    font-family: var(--font-tech);
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--profit-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--profit-green);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* =========================================
   HERO SECTION
========================================= */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    min-height: 60vh;
    margin-bottom: 80px;
}

/* Hero Entrance Animations */
.hero-content > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content .overline-badge { animation-delay: 0.1s; }
.hero-content .hero-title { animation-delay: 0.3s; }
.hero-content .hero-subtitle { animation-delay: 0.5s; }
.hero-content .cta-wrapper { animation-delay: 0.7s; }

.hero-visual {
    opacity: 0;
    transform: scale(0.95);
    animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.overline-badge {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid var(--accent-cyan);
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-cyan);
    font-family: var(--font-tech);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

.hero-title {
    font-family: var(--font-tech);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-main);
    text-transform: uppercase;
}

.highlight-cyan { color: var(--accent-cyan); text-shadow: 0 0 15px var(--accent-cyan-glow); }
.highlight-blue { color: var(--accent-blue); text-shadow: 0 0 15px var(--accent-blue-glow); }

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

/* CYBER BUTTON */
.cyber-btn {
    display: inline-flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 18px 40px;
    background: linear-gradient(45deg, var(--accent-blue), var(--accent-cyan));
    color: #fff;
    font-family: var(--font-tech);
    position: relative;
    border: none;
    cursor: pointer;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s ease;
}

.btn-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 2px; left: 2px; right: 2px; bottom: 2px;
    background: var(--bg-deep);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    z-index: -1;
    transition: all 0.3s ease;
}

.cyber-btn:hover::before {
    background: transparent;
}

.btn-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-subtext {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
    letter-spacing: 2px;
}

/* HERO IMAGE */
.hero-chart-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.2);
    border: 1px solid rgba(0, 240, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* =========================================
   STATS GRID
========================================= */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.stat-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    border: var(--border-tech);
    padding: 30px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.stat-label {
    font-family: var(--font-tech);
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.stat-value {
    font-family: var(--font-tech);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.cyan-text { color: var(--accent-cyan); }

/* =========================================
   PROOF SECTION
========================================= */
.proof-section {
    margin-bottom: 100px;
}

.section-title {
    font-family: var(--font-tech);
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-cyan);
    padding-left: 15px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.proof-card {
    background: var(--bg-panel-solid);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 25px;
    border-top: 2px solid var(--accent-blue);
    font-family: var(--font-tech);
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}

.user-id { color: var(--text-muted); }
.verified-badge { color: var(--profit-green); }

.log-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.profit-text {
    color: var(--profit-green);
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
}

.bottom-cta-wrapper {
    text-align: center;
    margin-top: 50px;
}

.secondary-cta {
    padding: 15px 50px;
    background: rgba(31, 81, 255, 0.1);
}

.secondary-cta::before {
    background: var(--bg-panel-solid);
}

/* =========================================
   FOOTER
========================================= */
.cyber-footer {
    text-align: center;
    padding: 30px;
    border-top: var(--border-tech);
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* =========================================
   HOW IT WORKS SECTION
========================================= */
.how-it-works-section {
    margin-bottom: 100px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: var(--bg-panel-solid);
    border: var(--border-tech);
    padding: 30px;
    position: relative;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    display: flex;
    flex-direction: column;
}

.step-number {
    font-family: var(--font-tech);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 240, 255, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-content h3 {
    font-family: var(--font-tech);
    color: var(--accent-cyan);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================
   FEATURES SECTION
========================================= */
.features-section {
    margin-bottom: 100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    background: var(--bg-panel);
    padding: 20px;
    border-left: 2px solid var(--accent-blue);
    font-family: var(--font-tech);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { margin: 0 auto 30px auto; }
    .stats-section { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}
