/* ===================================
   AlgoSignals.ai Landing Page Styles
   Premium Trading Terminal Theme
   Modern Stock Market Aesthetic with Cyan Accent
   =================================== */

/* Landing-specific variables - Premium Trading Terminal Theme */
:root {
    /* Primary accent - Cyan trading terminal */
    --landing-primary: #00e5cc;
    --landing-primary-bright: #00fff2;
    --landing-primary-dark: #00b8a3;
    --landing-accent-blue: #3b82f6;
    --landing-accent-purple: #8b5cf6;
    
    /* Deep dark backgrounds for premium trading terminal feel */
    --landing-bg: #06080c;
    --landing-bg-secondary: #0a0e14;
    --landing-bg-card: rgba(15, 20, 28, 0.95);
    --landing-bg-elevated: rgba(20, 26, 36, 0.9);
    
    /* Crisp text hierarchy */
    --landing-text: #f0f4f8;
    --landing-text-secondary: #8b9cb3;
    --landing-text-muted: #5a6b7d;
    
    /* Subtle borders with premium glow */
    --landing-border: rgba(255, 255, 255, 0.06);
    --landing-border-glow: rgba(0, 229, 204, 0.4);
    
    /* Status colors */
    --landing-success: #00e5cc;
    --landing-error: #ef4444;
    --landing-warning: #f59e0b;
    
    /* Premium typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Space Grotesk', var(--font-sans);
    --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
}

/* Legacy variable mappings for backward compatibility */
:root {
    --primary-green: var(--landing-primary-bright);
    --primary-green-dark: var(--landing-primary-dark);
    --accent-blue: var(--landing-accent-blue);
    --accent-purple: var(--landing-accent-purple);
    --bg-dark: var(--landing-bg);
    --bg-dark-secondary: var(--landing-bg-secondary);
    --bg-card: var(--landing-bg-card);
    --text-primary: var(--landing-text);
    --text-secondary: var(--landing-text-secondary);
    --text-muted: var(--landing-text-muted);
    --border-light: var(--landing-border);
    --border-glow: var(--landing-border-glow);
    --success-green: var(--landing-success);
    --error-red: var(--landing-error);
    --warning-orange: var(--landing-warning);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: auto !important;
    min-height: 100vh;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-sans);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

.landing-page {
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   HEADER STYLES (Original)
   =================================== */

.landing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    position: relative;
    z-index: 100;
    background: transparent;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo svg {
    width: 40px;
    height: 40px;
}

.header-logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--landing-text);
    letter-spacing: -0.5px;
}

.header-logo-text .ai {
    color: var(--landing-primary);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav-link {
    color: var(--landing-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.header-nav-link:hover {
    color: var(--landing-text);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-header-login {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--landing-text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-header-login:hover {
    border-color: var(--landing-primary);
    color: var(--landing-text);
}

.btn-header-signup {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-dark));
    border: none;
    border-radius: 8px;
    color: var(--landing-bg);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-header-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 229, 204, 0.3);
}

.free-badge {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    letter-spacing: 0.5px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 60px 0 40px;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-light) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.chart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.floating-tickers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-tickers .ticker {
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    animation: float-ticker 8s ease-in-out infinite;
    opacity: 0.4;
}

.floating-tickers .ticker.gain {
    color: var(--success-green);
}

.floating-tickers .ticker.loss {
    color: var(--error-red);
}

.floating-tickers .ticker:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.floating-tickers .ticker:nth-child(2) { top: 25%; right: 15%; animation-delay: 1.2s; }
.floating-tickers .ticker:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 2.4s; }
.floating-tickers .ticker:nth-child(4) { bottom: 15%; right: 25%; animation-delay: 3.6s; }
.floating-tickers .ticker:nth-child(5) { top: 50%; left: 50%; animation-delay: 4.8s; }
.floating-tickers .ticker:nth-child(6) { top: 70%; right: 10%; animation-delay: 6s; }

@keyframes float-ticker {
    0%, 100% { transform: translateY(0px); opacity: 0.3; }
    50% { transform: translateY(-20px); opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-glow);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.creator {
    background: rgba(156, 39, 176, 0.1);
    border-color: rgba(156, 39, 176, 0.3);
    color: #bb86fc;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'Courier New', monospace;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--bg-dark);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--primary-green);
    background: rgba(0, 255, 136, 0.05);
}

.trust-indicators {
    margin-top: 32px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-indicators span {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-visual {
    animation: slideInRight 0.8s ease-out;
}

.performance-preview {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.preview-header {
    text-align: center;
    margin-bottom: 16px;
}

.preview-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.preview-subtitle {
    font-size: 12px;
    color: var(--text-muted);
}

.performance-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.metric-icon svg {
    width: 18px;
    height: 18px;
}

.metric-icon.success {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    color: var(--success-green);
}

.metric-icon.profit {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.05));
    color: #FFC107;
}

.metric-icon.signals {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.05));
    color: #2196F3;
}

.metric-value {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    color: var(--primary-green);
    margin-bottom: 2px;
}

.metric-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
}

.metric-trend {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 2px;
}

.recent-winners {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 12px;
}

.recent-winners h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.winner-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.winner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 8px 12px;
}

.winner-symbol {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 700;
}

.winner-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.winner-return {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--success-green);
}

.winner-date {
    font-size: 10px;
    color: var(--text-muted);
}

.performance-note {
    font-size: 9px;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
    margin: 0;
}

.dashboard-preview {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

.preview-tabs {
    display: flex;
    gap: 8px;
}

.preview-tabs span {
    padding: 6px 12px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s;
}

.preview-tabs span.active {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
    font-weight: 600;
}

.preview-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signal-card {
    padding: 16px;
    border-radius: 10px;
    border-left: 4px solid;
    background: rgba(255, 255, 255, 0.03);
}

.signal-card.buy {
    border-left-color: var(--success-green);
}

.signal-card.sell {
    border-left-color: var(--error-red);
}

.signal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.signal-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.signal-card.buy .signal-badge {
    background: rgba(0, 255, 136, 0.2);
    color: var(--success-green);
}

.signal-card.sell .signal-badge {
    background: rgba(255, 71, 87, 0.2);
    color: var(--error-red);
}

.signal-time {
    font-size: 12px;
    color: var(--text-muted);
}

.signal-symbol {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    margin-bottom: 12px;
}

.signal-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.detail-row span:first-child {
    color: var(--text-muted);
}

.detail-row .value {
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.detail-row .value.gain {
    color: var(--success-green);
}

.detail-row .value.loss {
    color: var(--error-red);
}

.confidence-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 4px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 600;
}

.confidence-bar span:first-child {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 4px;
    transition: width 0.3s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   SIGNAL FLOW DIAGRAM SECTION
   =================================== */

.signal-flow-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 100%);
}

.flow-diagram {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 80px;
}

.flow-step {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.flow-step:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon.vetting {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.05));
    border: 2px solid rgba(33, 150, 243, 0.3);
    color: #2196F3;
}

.step-icon.monitoring {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    border: 2px solid var(--border-glow);
    color: var(--primary-green);
}

.step-icon.ai {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.05));
    border: 2px solid rgba(156, 39, 176, 0.3);
    color: #9C27B0;
}

.step-icon.delivery {
    background: linear-gradient(135deg, rgba(255, 165, 2, 0.2), rgba(255, 165, 2, 0.05));
    border: 2px solid rgba(255, 165, 2, 0.3);
    color: #ffa502;
}

.step-number {
    position: absolute;
    top: 32px;
    right: 32px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.flow-step h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.flow-step p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 14px;
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.feature-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list .check {
    color: var(--success-green);
    font-weight: 700;
}

.step-metric {
    margin-top: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'Courier New', monospace;
}

.metric-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.flow-arrow {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    margin-top: 80px;
}

.signal-actions {
    margin-bottom: 60px;
}

.signal-actions h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.action-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.action-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.action-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.action-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.action-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.live-example {
    background: var(--bg-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.1);
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-green);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.example-timestamp {
    font-size: 13px;
    color: var(--text-muted);
}

.example-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.example-symbol {
    font-size: 42px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    margin-bottom: 12px;
}

.example-action {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.example-action.buy {
    background: rgba(0, 255, 136, 0.2);
    color: var(--success-green);
}

.example-details div {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.example-details span {
    color: var(--text-muted);
}

.example-details strong.gain {
    color: var(--success-green);
}

.example-details strong.loss {
    color: var(--error-red);
}

.indicators-triggered h4,
.ai-verdict h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.indicator-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tag {
    padding: 6px 12px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 6px;
    font-size: 12px;
    color: var(--primary-green);
}

.verdict-bar {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    overflow: hidden;
}

.verdict-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 8px;
    transition: width 0.5s ease;
}

.verdict-text {
    position: relative;
    z-index: 1;
    font-weight: 700;
    font-size: 14px;
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.05);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.ai-color {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.05));
    color: #bb86fc;
}

.feature-icon.realtime-color {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    color: var(--primary-green);
}

.feature-icon.regime-color {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.05));
    color: #2196F3;
}

.feature-icon.sizing-color {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.05));
    color: #FFC107;
}

.feature-icon.exit-color {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.05));
    color: #4CAF50;
}

.feature-icon.api-color {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(255, 87, 34, 0.05));
    color: #FF5722;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.feature-sublist {
    list-style: none;
}

.feature-sublist li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
}

.feature-sublist li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

.tech-specs {
    margin-bottom: 60px;
}

.tech-specs h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.spec-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.spec-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.spec-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
    font-family: 'Courier New', monospace;
    margin-bottom: 8px;
}

.spec-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.integrations h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
}

.integration-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.integration-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.integration-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.integration-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.integration-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.integration-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing-section {
    padding: 100px 0;
    background: var(--bg-dark-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--border-glow);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.pricing-card.creator {
    border-color: rgba(156, 39, 176, 0.3);
}

.pricing-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.pricing-card.featured:hover {
    transform: translateY(-5px) scale(1.07);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--bg-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.plan-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.plan-badge.creator-badge {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: white;
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-description {
    font-size: 14px;
    color: var(--text-secondary);
}

.plan-price {
    text-align: center;
    margin-bottom: 32px;
}

.price-currency {
    font-size: 24px;
    vertical-align: top;
    color: var(--text-secondary);
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
}

.price-period {
    font-size: 18px;
    color: var(--text-secondary);
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features svg {
    flex-shrink: 0;
    color: var(--success-green);
    margin-top: 2px;
}

.btn-plan {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-green);
}

.btn-plan.primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--bg-dark);
    border-color: transparent;
}

.btn-plan.primary:hover {
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.btn-plan.creator-btn {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: white;
    border-color: transparent;
}

.btn-plan.creator-btn:hover {
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.3);
    transform: translateY(-2px);
}

.feature-comparison {
    margin-bottom: 60px;
}

.feature-comparison h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
}

.comparison-table {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.03);
    font-weight: 700;
    font-size: 14px;
}

.comparison-table td {
    font-size: 14px;
    color: var(--text-secondary);
}

.comparison-table .check {
    color: var(--success-green);
    font-size: 18px;
}

.comparison-table .cross {
    color: var(--text-muted);
    font-size: 18px;
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.trust-item svg {
    color: var(--primary-green);
}

/* ===================================
   MARKETPLACE SECTION
   =================================== */

.marketplace-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-secondary) 50%, var(--bg-dark) 100%);
}

.marketplace-header {
    text-align: center;
    margin-bottom: 60px;
}

.marketplace-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.marketplace-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bb86fc;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.benefit-stat {
    padding: 16px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 8px;
    margin-top: 20px;
}

.benefit-stat .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #bb86fc;
    font-family: 'Courier New', monospace;
}

.benefit-stat .stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

.benefit-features {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 6px 12px;
    background: rgba(156, 39, 176, 0.1);
    border: 1px solid rgba(156, 39, 176, 0.3);
    border-radius: 6px;
    font-size: 12px;
    color: #bb86fc;
}

.creator-flow {
    margin-bottom: 60px;
}

.creator-flow h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.creator-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.creator-step {
    flex: 1;
    max-width: 250px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    font-weight: 700;
}

.creator-step h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.creator-step p {
    font-size: 13px;
    color: var(--text-secondary);
}

.creator-step-arrow {
    font-size: 24px;
    color: var(--text-muted);
}

.creator-example {
    background: var(--bg-card);
    border: 2px solid rgba(156, 39, 176, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 60px;
}

.example-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bb86fc;
    font-weight: 700;
    margin-bottom: 20px;
}

.example-scenario {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.scenario-input,
.scenario-calculation,
.scenario-result {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-radius: 8px;
}

.scenario-result {
    grid-column: 1 / -1;
    background: rgba(156, 39, 176, 0.1);
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.scenario-input span,
.scenario-calculation span,
.scenario-result span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.scenario-input strong,
.scenario-calculation strong,
.scenario-result strong {
    font-size: 24px;
    font-family: 'Courier New', monospace;
}

.scenario-result strong.highlight {
    color: #bb86fc;
}

.example-note {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
}

.creator-features h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.feature-item {
    display: flex;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
}

.feature-item svg {
    flex-shrink: 0;
    color: #bb86fc;
}

.feature-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

.marketplace-cta {
    text-align: center;
    background: var(--bg-card);
    border: 2px solid rgba(156, 39, 176, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
}

.marketplace-cta h3 {
    font-size: 36px;
    margin-bottom: 16px;
}

.marketplace-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.btn-creator-join {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-creator-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(156, 39, 176, 0.4);
}

.cta-subtext {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

/* ===================================
   FOOTER CTA
   =================================== */

.footer-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(33, 150, 243, 0.05));
    text-align: center;
}

.footer-cta h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.footer-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ===================================
   AUTH MODAL
   =================================== */

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.auth-modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 48px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-logo svg {
    width: 40px;
    height: 40px;
}

.auth-modal-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
}

.selected-plan {
    font-size: 14px;
    color: var(--primary-green);
}

.auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 6px;
}

.auth-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
}

.auth-tab.active {
    background: rgba(0, 255, 136, 0.1);
    color: var(--primary-green);
}

.auth-error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid var(--error-red);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--error-red);
}

.oauth-section {
    margin-bottom: 24px;
}

.btn-oauth {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.btn-oauth:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-glow);
}

.btn-oauth:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.separator {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.separator::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--border-light);
}

.separator span {
    position: relative;
    background: var(--bg-card);
    padding: 0 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.08);
}

.form-terms {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-green);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-auth-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border: none;
    border-radius: 10px;
    color: var(--bg-dark);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-auth-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-auth-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(10, 14, 39, 0.3);
    border-top-color: var(--bg-dark);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.auth-footer {
    margin-top: 20px;
    text-align: center;
}

.link-subtle {
    font-size: 14px;
    color: var(--primary-green);
    text-decoration: none;
}

.link-subtle:hover {
    text-decoration: underline;
}

.signup-benefit {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===================================
   USER SIGNALS SECTION
   =================================== */

.user-signals-section {
    padding: 60px 0;
    background: var(--bg-dark);
}

.section-header-compact {
    text-align: center;
    margin-bottom: 32px;
}

.section-header-compact h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-header-compact p {
    font-size: 14px;
    color: var(--text-secondary);
}

.user-signals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.trader-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.trader-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.trader-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.trader-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--bg-dark);
}

.trader-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.trader-badge {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

.trader-stats {
    margin-bottom: 16px;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-row .stat-label {
    color: var(--text-muted);
}

.stat-row .stat-value {
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.stat-row .stat-value.success {
    color: var(--success-green);
}

.trader-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.trader-price .price {
    font-size: 16px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: var(--primary-green);
}

.btn-subscribe {
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 6px;
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-subscribe:hover {
    background: var(--primary-green);
    color: var(--bg-dark);
}

.explore-more {
    text-align: center;
}

.explore-more p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-explore:hover {
    border-color: var(--primary-green);
    background: rgba(0, 255, 136, 0.05);
}

/* ===================================
   CLOSED TRADES SECTION
   =================================== */

.closed-trades-section {
    padding: 60px 0;
    background: var(--bg-dark-secondary);
}

.trades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.trade-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.trade-card.win {
    border-left: 3px solid var(--success-green);
}

.trade-card.loss {
    border-left: 3px solid var(--error-red);
}

.trade-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.trade-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.trade-symbol {
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: 800;
}

.trade-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.trade-badge.win {
    background: rgba(0, 255, 136, 0.2);
    color: var(--success-green);
}

.trade-badge.loss {
    background: rgba(255, 71, 87, 0.2);
    color: var(--error-red);
}

.trade-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trade-details .detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 4px 0;
}

.trade-details .detail-row.highlight {
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
    font-weight: 700;
}

.trade-details .detail-row span:first-child {
    color: var(--text-muted);
}

.trade-details .value {
    font-family: 'Courier New', monospace;
    font-weight: 600;
}

.trade-details .value.profit {
    color: var(--success-green);
}

.trade-details .value.loss {
    color: var(--error-red);
}

.trades-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 20px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.summary-stat {
    text-align: center;
}

.summary-number {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    margin-bottom: 8px;
}

.summary-number.profit {
    color: var(--success-green);
}

.summary-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclaimer {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
}

/* ===================================
   SIMPLE PRICING SECTION
   =================================== */

.simple-pricing-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.single-plan-container {
    max-width: 800px;
    margin: 0 auto;
}

.single-plan-card {
    background: var(--bg-card);
    border: 2px solid var(--border-glow);
    border-radius: 20px;
    padding: 48px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 255, 136, 0.2);
}

.plan-badge-large {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--bg-dark);
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.plan-price-large {
    text-align: center;
    margin-bottom: 20px;
}

.plan-price-large .price-currency {
    font-size: 32px;
    vertical-align: top;
    color: var(--text-secondary);
}

.plan-price-large .price-amount {
    font-size: 72px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    color: var(--primary-green);
}

.plan-price-large .price-period {
    font-size: 24px;
    color: var(--text-secondary);
}

.plan-tagline {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.features-two-column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.plan-features-simple {
    list-style: none;
}

.plan-features-simple li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.plan-features-simple svg {
    flex-shrink: 0;
    color: var(--success-green);
}

.btn-plan-large {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--bg-dark);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-plan-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.4);
}

.plan-guarantee {
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.plan-guarantee svg {
    color: var(--primary-green);
}

/* ===================================
   COMPACT SIGNAL FLOW SECTION
   =================================== */

.compact-flow-section {
    padding: 60px 0;
    background: var(--bg-dark-secondary);
}

.compact-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.compact-step {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    max-width: 220px;
    text-align: center;
    transition: all 0.3s;
}

.compact-step:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.compact-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.compact-icon.vetting {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.05));
    border: 2px solid rgba(33, 150, 243, 0.3);
    color: #2196F3;
}

.compact-icon.monitoring {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    border: 2px solid var(--border-glow);
    color: var(--primary-green);
}

.compact-icon.ai {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.05));
    border: 2px solid rgba(156, 39, 176, 0.3);
    color: #bb86fc;
}

.compact-icon.delivery {
    background: linear-gradient(135deg, rgba(255, 165, 2, 0.2), rgba(255, 165, 2, 0.05));
    border: 2px solid rgba(255, 165, 2, 0.3);
    color: #ffa502;
}

.compact-step h4 {
    font-size: 14px;
   font-weight: 700;
    margin-bottom: 8px;
}

.compact-step p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.compact-arrow {
    font-size: 24px;
    color: var(--text-muted);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .user-signals-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-diagram {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .marketplace-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .landing-header {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
    }
    
    .hero-container {
        padding: 0 20px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integration-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .example-content {
        grid-template-columns: 1fr;
    }
    
    .creator-steps {
        flex-direction: column;
    }
    
    .creator-step-arrow {
        transform: rotate(90deg);
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 32px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-cards {
        grid-template-columns: 1fr;
    }
    
    .auth-modal-content {
        padding: 32px 24px;
    }
}

/* ===================================
   CLEAN HERO SECTION
   =================================== */

.hero-section-clean {
    position: relative;
    padding: 40px 0;
    min-height: auto;
}

.hero-content-clean {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 300px 1fr 320px;
    gap: 48px;
    align-items: start;
    padding-top: 40px;
}

/* Pipeline Sidebar */
.pipeline-sidebar {
    background: rgba(20, 25, 45, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.pipeline-header {
    margin-bottom: 24px;
}

.pipeline-header h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}

.pipeline-header p {
    font-size: 12px;
    color: var(--text-secondary);
}

.pipeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.pipeline-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 14px;
    transition: all 0.3s;
}

.pipeline-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-glow);
}

.pipeline-icon-compact {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pipeline-icon-compact.vetting {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.05));
    border: 1px solid rgba(33, 150, 243, 0.3);
    color: #2196F3;
}

.pipeline-icon-compact.monitoring {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    border: 1px solid var(--border-glow);
    color: var(--primary-green);
}

.pipeline-icon-compact.ai {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.05));
    border: 1px solid rgba(156, 39, 176, 0.3);
    color: #bb86fc;
}

.pipeline-icon-compact.delivery {
    background: linear-gradient(135deg, rgba(255, 165, 2, 0.2), rgba(255, 165, 2, 0.05));
    border: 1px solid rgba(255, 165, 2, 0.3);
    color: #ffa502;
}

.pipeline-text {
    flex: 1;
}

.pipeline-text h5 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.pipeline-text p {
    font-size: 10px;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Main Hero Content */
.hero-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title-clean {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-description-clean {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
    max-width: 600px;
}

.hero-stats-inline {
    display: flex;
    gap: 32px;
    margin-bottom: 28px;
    padding: 20px 0;
}

.stat-inline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-value-inline {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-green);
    font-family: 'Courier New', monospace;
    line-height: 1;
}

.stat-label-inline {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.hero-cta-clean {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.trust-indicators-clean {
    display: flex;
    gap: 20px;
}

.trust-indicators-clean span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Performance Sidebar */
.performance-sidebar {
    position: sticky;
    top: 20px;
}

.performance-card-clean {
    background: rgba(20, 25, 45, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.performance-card-clean h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    text-align: center;
}

.performance-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 20px;
}

.performance-stats-clean {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.perf-stat-clean {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.perf-stat-value {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 6px;
}

.perf-stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-performance-details {
    width: 100%;
    padding: 12px 18px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-performance-details:hover {
    background: var(--primary-green);
    color: var(--bg-dark);
    transform: translateY(-1px);
}

/* Responsive for Clean Hero */
@media (max-width: 1200px) {
    .hero-content-clean {
        grid-template-columns: 280px 1fr 280px;
        gap: 32px;
    }
    
    .hero-title-clean {
        font-size: 40px;
    }
}

@media (max-width: 1024px) {
    .hero-content-clean {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pipeline-sidebar {
        order: 2;
    }
    
    .hero-main {
        order: 1;
        text-align: center;
        align-items: center;
    }
    
    .performance-sidebar {
        order: 3;
        position: relative;
        top: 0;
    }
    
    .hero-description-clean {
        max-width: 100%;
    }
    
    .hero-stats-inline {
        justify-content: center;
    }
    
    .hero-cta-clean {
        justify-content: center;
    }
    
    .trust-indicators-clean {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title-clean {
        font-size: 36px;
    }
    
    .hero-stats-inline {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-inline {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .stat-value-inline {
        font-size: 32px;
    }
    
    .pipeline-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta-clean {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta-clean .btn-primary-large,
    .hero-cta-clean .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title-clean {
        font-size: 28px;
    }
    
    .hero-description-clean {
        font-size: 14px;
    }
    
    .trust-indicators-clean {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

/* ===================================
   COMPACT PERFORMANCE PREVIEW
   =================================== */

.performance-preview-compact {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.preview-header-compact {
    text-align: center;
    margin-bottom: 20px;
}

.preview-header-compact h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.performance-highlights {
    display: flex;
    justify-content: space-around;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.highlight-value {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    color: var(--primary-green);
}

.highlight-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-details {
    width: 100%;
    padding: 12px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-details:hover {
    background: var(--primary-green);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.3);
}

/* ===================================
   PLATFORM PERFORMANCE SECTION
   =================================== */

.platform-performance {
    padding: 80px 0;
    background: var(--bg-dark-secondary);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.perf-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.perf-card.large {
    grid-column: span 1;
}

.perf-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.perf-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.perf-icon.success {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    color: var(--success-green);
}

.perf-icon.profit {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.05));
    color: #FFC107;
}

.perf-icon.signals {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.05));
    color: #2196F3;
}

.perf-icon.time {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.05));
    color: #bb86fc;
}

.perf-icon.ratio {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.05));
    color: #4CAF50;
}

.perf-icon.drawdown {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(255, 87, 34, 0.05));
    color: #FF5722;
}

.perf-value {
    font-size: 36px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.perf-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 4px;
}

.perf-trend {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.perf-trend.positive {
    color: var(--success-green);
}

.perf-details {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
}

.top-performers {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 40px;
}

.top-performers h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.performers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.performer-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.3s;
}

.performer-item:hover {
    border-color: var(--border-glow);
    transform: translateY(-2px);
}

.performer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}

.performer-symbol {
    font-family: 'Courier New', monospace;
    font-size: 18px;
    font-weight: 800;
}

.performer-return {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: 700;
}

.performer-return.positive {
    color: var(--success-green);
}

.performer-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.performer-date {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
}

.performance-disclaimer {
    background: rgba(255, 165, 2, 0.1);
    border: 1px solid rgba(255, 165, 2, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.performance-disclaimer p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .perf-card.large {
        grid-column: span 1;
    }
    
    .performers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pipeline-flow {
        flex-direction: column;
        align-items: stretch;
    }
    
    .pipeline-step {
        max-width: none;
    }
    
    .pipeline-arrow {
        transform: rotate(90deg);
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .performers-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-highlights {
        flex-direction: column;
    }
}

/* ===================================
   SIMPLIFIED HOME PAGE
   =================================== */

.simplified-home {
    min-height: 100vh !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 40px 20px !important;
    overflow: hidden !important;
    background: var(--bg-dark) !important;
}

.simplified-home .hero-background {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.simplified-home .home-content {
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 32px !important;
    max-width: 420px !important;
    width: 100% !important;
}

.simplified-home .brand-header {
    text-align: center !important;
    margin-bottom: 12px !important;
}

.simplified-home .logo-icon {
    width: 72px !important;
    height: 72px !important;
    margin: 0 auto 16px !important;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15), rgba(0, 255, 136, 0.02)) !important;
    border: 2px solid rgba(0, 255, 136, 0.3) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.simplified-home .logo-icon svg {
    width: 50px !important;
    height: 50px !important;
}

.simplified-home .brand-title {
    font-size: 32px !important;
    font-weight: 800 !important;
    margin: 0 0 8px !important;
    background: linear-gradient(135deg, #00ff88, #2196F3) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.simplified-home .brand-tagline {
    font-size: 14px !important;
    color: #a0aec0 !important;
    margin: 0 !important;
}

/* Inline Auth Card */
.simplified-home .auth-card-inline {
    background: rgba(20, 25, 45, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    padding: 28px !important;
    width: 100% !important;
    backdrop-filter: blur(20px) !important;
    box-sizing: border-box !important;
}

.simplified-home .auth-tabs-inline {
    display: flex !important;
    gap: 6px !important;
    margin-bottom: 20px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 10px !important;
    padding: 5px !important;
}

.simplified-home .auth-tab-inline {
    flex: 1 !important;
    padding: 10px !important;
    background: transparent !important;
    border: none !important;
    color: #718096 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    border-radius: 8px !important;
    transition: all 0.3s !important;
}

.simplified-home .auth-tab-inline.active {
    background: rgba(0, 255, 136, 0.1) !important;
    color: #00ff88 !important;
}

.simplified-home .auth-error-inline {
    background: rgba(255, 71, 87, 0.1) !important;
    border: 1px solid #ff4757 !important;
    border-radius: 8px !important;
    padding: 10px !important;
    margin-bottom: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    color: #ff4757 !important;
}

.simplified-home .form-group-inline {
    margin-bottom: 14px !important;
}

.simplified-home .form-input-inline,
.simplified-home input.form-input-inline,
.simplified-home input[type="text"].form-input-inline,
.simplified-home input[type="email"].form-input-inline,
.simplified-home input[type="password"].form-input-inline {
    width: 100% !important;
    padding: 12px 14px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 14px !important;
    transition: all 0.3s !important;
    box-sizing: border-box !important;
    outline: none !important;
}

.simplified-home .form-input-inline:focus,
.simplified-home input.form-input-inline:focus {
    border-color: #00ff88 !important;
    background: rgba(255, 255, 255, 0.08) !important;
    outline: none !important;
    box-shadow: none !important;
}

.simplified-home .form-input-inline::placeholder {
    color: #718096 !important;
}

.simplified-home .form-terms-inline {
    margin: 16px 0 !important;
}

.simplified-home .checkbox-label-inline {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 12px !important;
    color: #a0aec0 !important;
    cursor: pointer !important;
}

.simplified-home .checkbox-label-inline input[type="checkbox"] {
    margin-top: 2px !important;
    width: 16px !important;
    height: 16px !important;
    cursor: pointer !important;
}

.simplified-home .checkbox-label-inline a {
    color: #00ff88 !important;
    text-decoration: none !important;
}

.simplified-home .checkbox-label-inline a:hover {
    text-decoration: underline !important;
}

.simplified-home .btn-auth-inline,
.simplified-home button.btn-auth-inline {
    width: 100% !important;
    padding: 14px !important;
    background: linear-gradient(135deg, #00ff88, #00d4aa) !important;
    border: none !important;
    border-radius: 10px !important;
    color: #0a0e27 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.simplified-home .btn-auth-inline:hover:not(:disabled),
.simplified-home button.btn-auth-inline:hover:not(:disabled) {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3) !important;
}

.simplified-home .btn-auth-inline:disabled,
.simplified-home button.btn-auth-inline:disabled {
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

.simplified-home .spinner-inline {
    width: 18px !important;
    height: 18px !important;
    border: 3px solid rgba(10, 14, 39, 0.3) !important;
    border-top-color: #0a0e27 !important;
    border-radius: 50% !important;
    animation: spin 0.8s linear infinite !important;
}

.simplified-home .auth-benefit-inline {
    margin-top: 14px !important;
    text-align: center !important;
    font-size: 12px !important;
    color: #a0aec0 !important;
}

/* Profit Stats Card */
.simplified-home .profit-stats-card {
    background: rgba(20, 25, 45, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    width: 100% !important;
    backdrop-filter: blur(20px) !important;
    box-sizing: border-box !important;
}

.simplified-home .stats-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
}

.simplified-home .stats-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05)) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #00ff88 !important;
}

.simplified-home .stats-title h3 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 0 4px !important;
    color: #ffffff !important;
}

.simplified-home .demo-badge {
    font-size: 10px !important;
    background: rgba(255, 165, 2, 0.2) !important;
    color: #ffa502 !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    display: inline-block !important;
}

.simplified-home .live-badge {
    font-size: 10px !important;
    background: rgba(0, 255, 136, 0.2) !important;
    color: #00ff88 !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    display: inline-block !important;
}

.simplified-home .stats-loading {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 24px !important;
    color: #718096 !important;
}

.simplified-home .loading-spinner {
    width: 32px !important;
    height: 32px !important;
    border: 3px solid rgba(255, 255, 255, 0.1) !important;
    border-top-color: #00ff88 !important;
    border-radius: 50% !important;
    animation: spin 0.8s linear infinite !important;
}

.simplified-home .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    margin-bottom: 20px !important;
}

.simplified-home .stat-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 10px !important;
    padding: 14px !important;
    text-align: center !important;
}

.simplified-home .stat-item .stat-value {
    font-size: 22px !important;
    font-weight: 800 !important;
    font-family: 'Courier New', monospace !important;
    color: #ffffff !important;
    margin-bottom: 4px !important;
    display: block !important;
}

.simplified-home .stat-item .stat-value.positive {
    color: #00ff88 !important;
}

.simplified-home .stat-item .stat-value.negative {
    color: #ff4757 !important;
}

.simplified-home .stat-item .stat-label {
    font-size: 11px !important;
    color: #718096 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: block !important;
}

.simplified-home .stat-item.profit .stat-value {
    font-size: 24px !important;
}

.simplified-home .btn-learn-more,
.simplified-home button.btn-learn-more {
    width: 100% !important;
    padding: 12px !important;
    background: rgba(0, 255, 136, 0.1) !important;
    border: 1px solid rgba(0, 255, 136, 0.3) !important;
    border-radius: 8px !important;
    color: #00ff88 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.simplified-home .btn-learn-more:hover,
.simplified-home button.btn-learn-more:hover {
    background: #00ff88 !important;
    color: #0a0e27 !important;
    transform: translateY(-2px) !important;
}

/* ===================================
   TRADE HISTORY PAGE
   =================================== */

.trade-history-page {
    min-height: 100vh;
    background: var(--bg-dark);
    padding: 20px 0;
}

.trade-history-page .container {
    max-width: 1200px;
}

.page-header {
    margin-bottom: 16px;
}

.page-header.compact {
    margin-bottom: 12px;
}

.page-header.compact h1 {
    font-size: 28px;
    margin-bottom: 4px;
}

.page-header.compact .page-subtitle {
    font-size: 14px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary-green);
}

.page-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 8px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* Summary Stats Grid */
.stats-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.stats-summary-grid.five-columns {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.summary-card.compact {
    padding: 12px 10px;
    border-radius: 8px;
}

.summary-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-3px);
}

.summary-card.highlight {
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.summary-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.summary-card.compact .summary-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
}

.summary-icon.profit {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.05));
    color: #FFC107;
}

.summary-icon.success {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05));
    color: var(--success-green);
}

.summary-icon.trades {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.05));
    color: #2196F3;
}

.summary-icon.return {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.05));
    color: #bb86fc;
}

.summary-icon.drawdown {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(255, 87, 34, 0.05));
    color: #FF5722;
}

.summary-value {
    font-size: 21px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    margin-bottom: 4px;
}

.summary-card.compact .summary-value {
    font-size: 18px;
    margin-bottom: 2px;
}

.summary-value.positive {
    color: var(--success-green);
}

.summary-value.negative {
    color: var(--error-red);
}

.summary-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-detail {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.demo-indicator {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    background: rgba(255, 165, 2, 0.2);
    color: var(--warning-orange);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* Performers Row */
.performers-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.performer-card {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.performer-card.best {
    border-left: 3px solid var(--success-green);
}

.performer-card.worst {
    border-left: 3px solid var(--error-red);
}

.performer-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.performer-card .performer-symbol {
    font-size: 16px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
}

.performer-card .performer-return {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    margin-left: auto;
}

.performer-card .performer-return.positive {
    color: var(--success-green);
}

.performer-card .performer-return.negative {
    color: var(--error-red);
}

/* Filters Section */
.filters-section {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.filters-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.filter-group select {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.filter-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

/* Trades Table Section */
.trades-table-section {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px;
    color: var(--text-muted);
}

.loading-spinner-large {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border-light);
    border-top-color: var(--primary-green);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 60px;
    text-align: center;
    color: var(--text-muted);
}

.empty-state svg {
    opacity: 0.3;
}

.empty-state h3 {
    font-size: 20px;
    color: var(--text-secondary);
    margin: 0;
}

.empty-state p {
    font-size: 14px;
    max-width: 400px;
    margin: 0;
}

.trades-count {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.trades-table-wrapper {
    overflow-x: auto;
}

.trades-table {
    width: 100%;
    border-collapse: collapse;
}

.trades-table th,
.trades-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.trades-table th {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.02);
}

.trades-table td {
    font-size: 13px;
    color: var(--text-secondary);
}

.trades-table tbody tr {
    transition: background 0.3s;
}

.trades-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.trades-table tbody tr.winner {
    border-left: 3px solid var(--success-green);
}

.trades-table tbody tr.loser {
    border-left: 3px solid var(--error-red);
}

.trades-table .symbol {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--text-primary);
}

.trades-table .direction {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.trades-table .direction.long {
    background: rgba(0, 255, 136, 0.2);
    color: var(--success-green);
}

.trades-table .direction.short {
    background: rgba(255, 71, 87, 0.2);
    color: var(--error-red);
}

.trades-table .date {
    font-size: 12px;
    white-space: nowrap;
}

.trades-table .qty {
    font-family: 'Courier New', monospace;
}

.trades-table .price {
    font-family: 'Courier New', monospace;
}

.trades-table .pnl,
.trades-table .return {
    font-family: 'Courier New', monospace;
    font-weight: 700;
}

.trades-table .pnl.positive,
.trades-table .return.positive {
    color: var(--success-green);
}

.trades-table .pnl.negative,
.trades-table .return.negative {
    color: var(--error-red);
}

.trades-table .days {
    font-family: 'Courier New', monospace;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.page-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover:not(:disabled) {
    border-color: var(--primary-green);
    background: rgba(0, 255, 136, 0.1);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-info {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Disclaimer Section */
.disclaimer-section {
    background: rgba(255, 165, 2, 0.1);
    border: 1px solid rgba(255, 165, 2, 0.3);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.disclaimer-section p {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive for Trade History */
@media (max-width: 1200px) {
    .stats-summary-grid.five-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .stats-summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-summary-grid.five-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-summary-grid,
    .stats-summary-grid.five-columns {
        grid-template-columns: 1fr;
    }
    
    .summary-card.compact {
        padding: 14px;
    }
    
    .summary-card.compact .summary-value {
        font-size: 20px;
    }
    
    .performers-row {
        flex-direction: column;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    .trades-table th,
    .trades-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header.compact h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .trade-history-page {
        padding: 16px 0;
    }

    .page-header h1,
    .page-header.compact h1 {
        font-size: 22px;
    }

    .summary-value,
    .summary-card.compact .summary-value {
        font-size: 18px;
    }
}

/* ===================================
   SIDE-BY-SIDE LAYOUT FOR HOME PAGE
   =================================== */

/* Wide Content Container for Side-by-Side Layout */
.simplified-home .home-content-wide {
    position: relative !important;
    z-index: 10 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 32px !important;
    max-width: 900px !important;
    width: 100% !important;
    padding: 0 20px !important;
}

/* Side-by-Side Cards Row */
.simplified-home .cards-row {
    display: flex !important;
    gap: 24px !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: flex-start !important;
}

.simplified-home .cards-row .auth-card-inline,
.simplified-home .cards-row .profit-stats-card {
    flex: 1 !important;
    max-width: 420px !important;
    min-width: 0 !important;
}

/* How It Works Banner */
.simplified-home .how-it-works-banner {
    background: rgba(20, 25, 45, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 20px 28px !important;
    width: 100% !important;
    backdrop-filter: blur(10px) !important;
}

.simplified-home .how-it-works-banner h4 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #a0aec0 !important;
    text-align: center !important;
    margin: 0 0 16px 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.simplified-home .process-steps {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
}

.simplified-home .process-step {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 !important;
    position: relative !important;
}

.simplified-home .step-number {
    position: absolute !important;
    top: -8px !important;
    left: -8px !important;
    width: 18px !important;
    height: 18px !important;
    background: linear-gradient(135deg, #00ff88, #00d4aa) !important;
    color: #0a0e27 !important;
    border-radius: 50% !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1 !important;
}

.simplified-home .step-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.simplified-home .step-icon.vetting {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(33, 150, 243, 0.05)) !important;
    border: 1px solid rgba(33, 150, 243, 0.3) !important;
    color: #2196F3 !important;
}

.simplified-home .step-icon.analysis {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.05)) !important;
    border: 1px solid rgba(0, 255, 136, 0.3) !important;
    color: #00ff88 !important;
}

.simplified-home .step-icon.entry {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.05)) !important;
    border: 1px solid rgba(156, 39, 176, 0.3) !important;
    color: #bb86fc !important;
}

.simplified-home .step-icon.exit {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.05)) !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
    color: #FFC107 !important;
}

.simplified-home .step-text {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.simplified-home .step-text strong {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
}

.simplified-home .step-text span {
    font-size: 10px !important;
    color: #718096 !important;
    line-height: 1.2 !important;
}

.simplified-home .step-arrow {
    font-size: 18px !important;
    color: rgba(0, 255, 136, 0.4) !important;
    flex-shrink: 0 !important;
}

/* Responsive for Side-by-Side Layout */
@media (max-width: 768px) {
    .simplified-home .cards-row {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .simplified-home .cards-row .auth-card-inline,
    .simplified-home .cards-row .profit-stats-card {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .simplified-home .process-steps {
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .simplified-home .step-arrow {
        transform: rotate(90deg) !important;
    }
    
    .simplified-home .process-step {
        width: 100% !important;
        max-width: 280px !important;
    }
}

/* ===================================
   DEMO STOCK SELECTION (Home Page)
   =================================== */

.simplified-home .demo-stock-section {
    margin-bottom: 16px !important;
    padding: 14px !important;
    background: rgba(0, 255, 136, 0.03) !important;
    border: 1px solid rgba(0, 255, 136, 0.15) !important;
    border-radius: 10px !important;
}

.simplified-home .demo-stock-label {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #00ff88 !important;
    margin-bottom: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.simplified-home .stock-search-inline {
    margin-bottom: 10px !important;
}

.simplified-home .stock-search-input {
    width: 100% !important;
    padding: 10px 12px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    font-size: 13px !important;
}

.simplified-home .stock-search-input:focus {
    border-color: #00ff88 !important;
    outline: none !important;
}

.simplified-home .stock-results-inline {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    max-height: 180px !important;
    overflow-y: auto !important;
    margin-bottom: 10px !important;
}

.simplified-home .stock-item-inline {
    display: flex !important;
    align-items: center !important;
    padding: 10px 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

.simplified-home .stock-item-inline:last-child {
    border-bottom: none !important;
}

.simplified-home .stock-item-inline:hover {
    background: rgba(0, 255, 136, 0.08) !important;
}

.simplified-home .stock-item-inline.selected {
    background: rgba(0, 255, 136, 0.15) !important;
}

.simplified-home .stock-symbol-inline {
    font-weight: 700 !important;
    color: #00ff88 !important;
    font-size: 13px !important;
    width: 60px !important;
    font-family: 'Courier New', monospace !important;
}

.simplified-home .stock-name-inline {
    flex: 1 !important;
    color: #a0aec0 !important;
    font-size: 12px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.simplified-home .popular-stocks-inline {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    margin-bottom: 10px !important;
}

.simplified-home .popular-label-inline {
    font-size: 11px !important;
    color: #718096 !important;
}

.simplified-home .popular-chip-inline {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #a0aec0 !important;
    padding: 5px 10px !important;
    border-radius: 16px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    font-family: 'Courier New', monospace !important;
}

.simplified-home .popular-chip-inline:hover {
    border-color: #00ff88 !important;
    color: #00ff88 !important;
}

.simplified-home .popular-chip-inline.selected {
    background: rgba(0, 255, 136, 0.15) !important;
    border-color: #00ff88 !important;
    color: #00ff88 !important;
}

.simplified-home .selected-stock-inline {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    background: rgba(0, 255, 136, 0.1) !important;
    border: 1px solid rgba(0, 255, 136, 0.3) !important;
    border-radius: 8px !important;
    padding: 10px 12px !important;
}

.simplified-home .selected-icon {
    font-size: 18px !important;
}

.simplified-home .selected-text {
    font-size: 13px !important;
    color: #a0aec0 !important;
}

.simplified-home .selected-text strong {
    color: #00ff88 !important;
    font-family: 'Courier New', monospace !important;
}

/* ===================================
   LANDING PAGE V2 - Complete Redesign
   Modern, Clean, Conversion-Focused
   =================================== */

.landing-page-v2 {
    min-height: 100vh;
    position: relative;
    background: var(--landing-bg);
    color: var(--landing-text);
    overflow-x: hidden;
}

/* Ensure all SVG elements are properly constrained */
.landing-page-v2 svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Override for small icon SVGs that need fixed dimensions */
.landing-page-v2 .value-prop svg,
.landing-page-v2 .stat-icon-v2 svg,
.landing-page-v2 .feature-icon-v2 svg,
.landing-page-v2 .step-icon-v2 svg,
.landing-page-v2 .hero-cta-v2 svg,
.landing-page-v2 .btn-primary-v2 svg,
.landing-page-v2 .engine-note-v2 svg,
.landing-page-v2 .modal-close-v2 svg,
.landing-page-v2 .auth-error-v2 svg,
.landing-page-v2 .btn-auth-v2 svg {
    display: inline-block;
    flex-shrink: 0;
}

.hero-background-v2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.landing-content-v2 {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   V2 HEADER
   =================================== */

.landing-header-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 229, 204, 0.15), rgba(0, 229, 204, 0.02));
    border: 1px solid rgba(0, 229, 204, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    overflow: hidden;
}

.logo-mark svg {
    width: 28px;
    height: 28px;
    max-width: 100%;
    max-height: 100%;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--landing-text);
    letter-spacing: -0.5px;
}

.logo-ai {
    color: var(--landing-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login-compact {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--landing-text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login-compact:hover {
    border-color: var(--landing-primary);
    color: var(--landing-text);
}

.btn-signup-compact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-dark));
    border: none;
    border-radius: 8px;
    color: var(--landing-bg);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-signup-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 229, 204, 0.3);
}

.free-badge {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    letter-spacing: 0.5px;
}

/* ===================================
   V2 HERO SECTION
   =================================== */

.hero-section-v2 {
    padding: 80px 0 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-main-v2 {
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 229, 204, 0.1);
    border: 1px solid rgba(0, 229, 204, 0.25);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--landing-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--landing-primary);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-headline {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.gradient-text-v2 {
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 18px;
    color: var(--landing-text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-subheadline strong {
    color: var(--landing-text);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-dark));
    border: none;
    border-radius: 12px;
    color: var(--landing-bg);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-hero-primary svg {
    width: 18px;
    height: 18px;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 229, 204, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--landing-text);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-hero-secondary svg {
    width: 18px;
    height: 18px;
    color: var(--landing-primary);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-value-props {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.value-prop {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--landing-text-secondary);
    transition: all 0.3s;
}

.value-prop svg {
    color: var(--landing-primary);
}

.value-prop:hover {
    background: rgba(0, 229, 204, 0.05);
    border-color: rgba(0, 229, 204, 0.2);
    color: var(--landing-text);
}

.hero-cta-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.btn-primary-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-dark));
    border: none;
    border-radius: 12px;
    color: var(--landing-bg);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 229, 204, 0.35);
}

.btn-primary-v2.large {
    padding: 18px 40px;
    font-size: 18px;
}

.cta-note {
    font-size: 13px;
    color: var(--landing-text-muted);
}

/* Hero Stats Cards */
.hero-stats-v2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(20, 26, 36, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-card-v2:hover {
    border-color: rgba(0, 229, 204, 0.25);
    transform: translateX(-4px);
}

.stat-icon-v2 {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-v2.charts {
    background: linear-gradient(135deg, rgba(0, 229, 204, 0.2), rgba(0, 229, 204, 0.05));
    color: var(--landing-primary);
}

.stat-icon-v2.market {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    color: var(--landing-accent-blue);
}

.stat-icon-v2.realtime {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    color: var(--landing-accent-purple);
}

.stat-content {
    flex: 1;
}

.stat-value-v2 {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-mono);
    color: var(--landing-text);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label-v2 {
    font-size: 13px;
    color: var(--landing-text-muted);
}

/* ===================================
   V2 FEATURES SECTION
   =================================== */

.features-section-v2 {
    padding: 80px 0;
}

.section-header-v2 {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-v2 h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header-v2 p {
    font-size: 18px;
    color: var(--landing-text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card-v2 {
    background: rgba(20, 26, 36, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.feature-card-v2:hover {
    border-color: rgba(0, 229, 204, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card-v2.highlight {
    border-color: rgba(0, 229, 204, 0.3);
    background: rgba(0, 229, 204, 0.03);
}

.feature-icon-v2 {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-v2.charting {
    background: linear-gradient(135deg, rgba(0, 229, 204, 0.2), rgba(0, 229, 204, 0.05));
    border: 1px solid rgba(0, 229, 204, 0.3);
    color: var(--landing-primary);
}

.feature-icon-v2.indicators {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--landing-accent-blue);
}

.feature-icon-v2.earnings {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.05));
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #FFC107;
}

.feature-icon-v2.dividends {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.05));
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.feature-icon-v2.screener {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--landing-accent-purple);
}

.feature-icon-v2.ai {
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.2), rgba(255, 87, 34, 0.05));
    border: 1px solid rgba(255, 87, 34, 0.3);
    color: #FF5722;
}

.feature-card-v2 h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card-v2 p {
    font-size: 14px;
    color: var(--landing-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-v2 li {
    position: relative;
    padding: 6px 0 6px 20px;
    font-size: 13px;
    color: var(--landing-text-muted);
}

.feature-list-v2 li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--landing-primary);
}

/* ===================================
   V2 USER TYPES SECTION
   =================================== */

.user-types-section-v2 {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 204, 0.02) 50%, transparent 100%);
}

.user-types-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.user-type-card-v2 {
    background: rgba(20, 26, 36, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.user-type-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.user-type-card-v2.beginner:hover {
    border-color: rgba(76, 175, 80, 0.4);
}

.user-type-card-v2.professional:hover {
    border-color: rgba(0, 229, 204, 0.4);
}

.user-type-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.user-type-card-v2 h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.user-type-card-v2 > p {
    font-size: 15px;
    color: var(--landing-text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.user-type-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}

.user-type-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--landing-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.user-type-features li:last-child {
    border-bottom: none;
}

.user-type-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    color: #4CAF50;
}

.user-type-badge.pro {
    background: rgba(0, 229, 204, 0.15);
    border-color: rgba(0, 229, 204, 0.3);
    color: var(--landing-primary);
}

/* ===================================
   V2 HOW IT WORKS SECTION
   =================================== */

.how-it-works-v2 {
    padding: 80px 0;
}

.engine-flow-v2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.engine-step-v2 {
    flex: 1;
    min-width: 200px;
    max-width: 240px;
    background: rgba(20, 26, 36, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.engine-step-v2:hover {
    border-color: rgba(0, 229, 204, 0.25);
    transform: translateY(-4px);
}

.step-number-v2 {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--landing-bg);
}

.step-icon-v2 {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step-icon-v2.data {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--landing-accent-blue);
}

.step-icon-v2.engine {
    background: linear-gradient(135deg, rgba(0, 229, 204, 0.2), rgba(0, 229, 204, 0.05));
    border: 1px solid rgba(0, 229, 204, 0.3);
    color: var(--landing-primary);
}

.step-icon-v2.intelligence {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--landing-accent-purple);
}

.step-icon-v2.assist {
    background: linear-gradient(135deg, rgba(255, 165, 2, 0.2), rgba(255, 165, 2, 0.05));
    border: 1px solid rgba(255, 165, 2, 0.3);
    color: #ffa502;
}

.engine-step-v2 h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.engine-step-v2 p {
    font-size: 13px;
    color: var(--landing-text-muted);
    line-height: 1.5;
    margin: 0;
}

.engine-arrow-v2 {
    font-size: 24px;
    color: var(--landing-primary);
    opacity: 0.5;
    align-self: center;
    margin-top: 30px;
}

.engine-note-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(0, 229, 204, 0.05);
    border: 1px solid rgba(0, 229, 204, 0.15);
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.engine-note-v2 svg {
    color: var(--landing-primary);
    flex-shrink: 0;
}

.engine-note-v2 span {
    font-size: 14px;
    color: var(--landing-text-secondary);
}

/* ===================================
   V2 PERFORMANCE SECTION
   =================================== */

.performance-section-v2 {
    padding: 60px 0;
}

.performance-preview-v2 {
    max-width: 500px;
    margin: 0 auto;
}

.performance-preview-v2 .profit-stats-card {
    border: 1px solid rgba(0, 229, 204, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ===================================
   V2 FINAL CTA SECTION
   =================================== */

.final-cta-section-v2 {
    padding: 100px 0 80px;
    text-align: center;
}

.cta-content-v2 {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content-v2 h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-content-v2 p {
    font-size: 18px;
    color: var(--landing-text-secondary);
    margin-bottom: 32px;
}

.cta-features-v2 {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.cta-features-v2 span {
    font-size: 14px;
    color: var(--landing-text-secondary);
}

/* ===================================
   V2 FOOTER
   =================================== */

.landing-footer-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 40px;
}

.footer-brand {
    font-size: 14px;
    color: var(--landing-text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 14px;
    color: var(--landing-text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--landing-primary);
}

/* ===================================
   V2 AUTH MODAL
   =================================== */

.auth-modal-v2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeInModal 0.2s ease;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.auth-modal-content-v2 {
    background: rgba(20, 26, 36, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    position: relative;
    animation: slideUpModal 0.3s ease;
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close-v2 {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 8px;
    padding: 8px;
    color: var(--landing-text-muted);
    cursor: pointer;
    transition: all 0.3s;
}

.modal-close-v2:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--landing-text);
}

.auth-header-v2 {
    text-align: center;
    margin-bottom: 24px;
}

.auth-logo-v2 {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(0, 229, 204, 0.15), rgba(0, 229, 204, 0.02));
    border: 1px solid rgba(0, 229, 204, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
}

.auth-logo-v2 svg {
    width: 36px;
    height: 36px;
    max-width: 100%;
    max-height: 100%;
}

.auth-header-v2 h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
}

.auth-subtitle-v2 {
    font-size: 14px;
    color: var(--landing-text-secondary);
    margin: 0;
}

.free-highlight {
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.auth-tabs-v2 {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 24px;
}

.auth-tab-v2 {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--landing-text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.auth-tab-v2.active {
    background: rgba(0, 229, 204, 0.1);
    color: var(--landing-primary);
}

.auth-error-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--landing-error);
}

.form-group-v2 {
    margin-bottom: 16px;
}

.form-input-v2 {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--landing-text);
    font-size: 15px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-input-v2:focus {
    outline: none;
    border-color: var(--landing-primary);
    background: rgba(255, 255, 255, 0.06);
}

.form-input-v2::placeholder {
    color: var(--landing-text-muted);
}

.form-terms-v2 {
    margin: 20px 0;
}

.checkbox-v2 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--landing-text-secondary);
    cursor: pointer;
}

.checkbox-v2 input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-v2 a {
    color: var(--landing-primary);
    text-decoration: none;
}

.checkbox-v2 a:hover {
    text-decoration: underline;
}

.btn-auth-v2 {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-dark));
    border: none;
    border-radius: 10px;
    color: var(--landing-bg);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-auth-v2:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 229, 204, 0.3);
}

.btn-auth-v2:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner-v2 {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(6, 8, 12, 0.3);
    border-top-color: var(--landing-bg);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.auth-footer-v2 {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.auth-footer-v2 .check-item {
    font-size: 12px;
    color: var(--landing-text-secondary);
}

/* ===================================
   V2 RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1200px) {
    .hero-section-v2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-stats-v2 {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-card-v2 {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 1024px) {
    .hero-headline {
        font-size: 42px;
    }
    
    .features-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-header-v2 {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-section-v2 {
        padding: 40px 0;
    }
    
    .hero-headline {
        font-size: 32px;
        letter-spacing: -1px;
    }
    
    .hero-subheadline {
        font-size: 16px;
    }
    
    .hero-value-props {
        flex-direction: column;
        gap: 10px;
    }
    
    .value-prop {
        width: 100%;
        justify-content: flex-start;
    }
    
    .features-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .user-types-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .engine-flow-v2 {
        flex-direction: column;
        align-items: center;
    }
    
    .engine-step-v2 {
        max-width: none;
        width: 100%;
    }
    
    .engine-arrow-v2 {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    
    .section-header-v2 h2 {
        font-size: 28px;
    }
    
    .cta-content-v2 h2 {
        font-size: 28px;
    }
    
    .landing-footer-v2 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .auth-modal-content-v2 {
        margin: 20px;
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .landing-content-v2 {
        padding: 0 16px;
    }
    
    .hero-headline {
        font-size: 28px;
    }
    
    .btn-primary-v2 {
        width: 100%;
        justify-content: center;
    }
    
    .stat-card-v2 {
        min-width: 100%;
    }
    
    .cta-features-v2 {
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

/* ===================================
   LANDING COMPONENTS - ADDITIONAL STYLES
   MoverTicker, RotatingSignalCards, MiniChartSvg
   ProofStats, DemoModal, PricingCTA
   =================================== */

/* ========== MOVER TICKER ========== */
.mover-ticker-container {
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 8px 0;
    margin-bottom: 16px;
}

.mover-ticker-track {
    display: flex;
    gap: 24px;
    animation: ticker-scroll 30s linear infinite;
    width: max-content;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.mover-ticker-track:hover {
    animation-play-state: paused;
}

.mover-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.2s;
}

.mover-pill:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mover-pill .symbol {
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: var(--landing-text);
}

.mover-pill .change {
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.mover-pill .change.positive {
    color: var(--landing-success);
}

.mover-pill .change.negative {
    color: var(--landing-error);
}

/* ========== ROTATING SIGNAL CARDS ========== */
.signal-card-container {
    margin: 16px 0;
}

.signal-card-container .signal-card {
    background: var(--landing-bg-card);
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 16px;
    animation: fadeInSlide 0.5s ease-out;
    transition: all 0.3s;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.signal-card-container .signal-card:hover {
    border-color: rgba(0, 229, 204, 0.3);
}

.signal-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.signal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.signal-badge.bullish {
    background: rgba(0, 229, 204, 0.15);
    color: var(--landing-primary);
}

.signal-badge.bearish {
    background: rgba(239, 68, 68, 0.15);
    color: var(--landing-error);
}

.signal-timestamp {
    font-size: 11px;
    color: var(--landing-text-muted);
}

.signal-card-body {
    margin-bottom: 12px;
}

.signal-symbol-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.signal-symbol {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    color: var(--landing-text);
}

.signal-type {
    font-size: 12px;
    color: var(--landing-primary);
    font-weight: 600;
}

.signal-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.signal-metric {
    text-align: center;
}

.signal-metric-label {
    font-size: 10px;
    color: var(--landing-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.signal-metric-value {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: var(--landing-text);
}

.signal-metric-value.positive {
    color: var(--landing-success);
}

.signal-card-footer {
    padding-top: 12px;
    border-top: 1px solid var(--landing-border);
}

.signal-confidence {
    display: flex;
    align-items: center;
    gap: 12px;
}

.confidence-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--landing-primary), var(--landing-primary-bright));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.confidence-value {
    font-size: 11px;
    color: var(--landing-text-secondary);
    white-space: nowrap;
}

/* ========== MINI CHART SVG ========== */
.mini-chart-container {
    margin-top: 16px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.mini-chart-label {
    font-size: 11px;
    color: var(--landing-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.mini-chart-svg {
    width: 100%;
    height: 60px;
}

.mini-chart-area {
    fill: url(#chart-area-gradient);
}

.mini-chart-line {
    fill: none;
    stroke: url(#chart-gradient);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mini-chart-line.animated {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.mini-chart-dot {
    fill: var(--landing-success);
    filter: drop-shadow(0 0 6px var(--landing-success));
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { r: 4; opacity: 1; }
    50% { r: 6; opacity: 0.7; }
}

/* ========== PROOF STATS SECTION ========== */
.proof-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.proof-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: start;
}

.proof-card {
    background: var(--landing-bg-card);
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 24px;
}

.proof-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.proof-card-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.proof-card-subtitle {
    font-size: 13px;
    color: var(--landing-text-muted);
    margin: 0 0 24px;
}

.period-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 3px;
}

.period-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: var(--landing-text-muted);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.period-btn.active {
    background: var(--landing-primary);
    color: var(--landing-bg);
}

.period-btn:hover:not(.active) {
    color: var(--landing-text);
}

.proof-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.proof-metrics.loading {
    opacity: 0.5;
}

.proof-metric {
    text-align: center;
    padding: 16px 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.proof-metric-value {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    display: block;
    margin-bottom: 4px;
}

.proof-metric-value.positive {
    color: var(--landing-success);
}

.proof-metric-value.negative {
    color: var(--landing-error);
}

.proof-metric-value.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
    height: 24px;
    border-radius: 4px;
    display: block;
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.proof-metric-label {
    font-size: 11px;
    color: var(--landing-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.proof-metric-label.skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s infinite;
    height: 12px;
    width: 60%;
    margin: 4px auto 0;
    border-radius: 4px;
    display: block;
}

.proof-links {
    display: flex;
    gap: 24px;
}

.proof-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--landing-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.2s;
}

.proof-link:hover {
    gap: 10px;
}

.proof-link svg {
    width: 14px;
    height: 14px;
}

/* Equity Curve */
.equity-curve-container {
    background: var(--landing-bg-card);
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 20px;
}

.equity-curve-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.equity-curve-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--landing-text-secondary);
}

.equity-curve-value {
    font-size: 18px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    color: var(--landing-success);
}

.equity-curve-value.negative {
    color: var(--landing-error);
}

.equity-curve-svg {
    width: 100%;
    height: 180px;
}

.chart-grid line {
    stroke: var(--landing-border);
    stroke-dasharray: 4, 4;
}

/* Trust Bullets */
.proof-trust-bullets {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-bullet {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--landing-text-secondary);
}

.trust-bullet svg {
    width: 18px;
    height: 18px;
    color: var(--landing-primary);
}

/* ========== PRICING CTA SECTION ========== */
.pricing-section {
    padding: 80px 0;
}

.pricing-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--landing-bg-card);
    border: 1px solid var(--landing-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured {
    border-color: var(--landing-primary);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 229, 204, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-dark));
    color: var(--landing-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
}

.pricing-tagline {
    font-size: 14px;
    color: var(--landing-text-secondary);
    margin: 0;
}

.pricing-price {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    color: var(--landing-text);
}

.pricing-amount .currency {
    font-size: 24px;
    vertical-align: top;
    color: var(--landing-text-secondary);
}

.pricing-period {
    font-size: 14px;
    color: var(--landing-text-muted);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--landing-text-secondary);
}

.pricing-feature svg {
    width: 16px;
    height: 16px;
    color: var(--landing-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-feature.highlight {
    color: var(--landing-text);
    font-weight: 600;
}

.btn-pricing {
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-pricing-primary {
    background: linear-gradient(135deg, var(--landing-primary), var(--landing-primary-dark));
    border: none;
    color: var(--landing-bg);
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 229, 204, 0.3);
}

.btn-pricing-secondary {
    background: transparent;
    border: 2px solid var(--landing-border);
    color: var(--landing-text);
}

.btn-pricing-secondary:hover {
    border-color: var(--landing-primary);
    background: rgba(0, 229, 204, 0.05);
}

.btn-pricing-accent {
    background: linear-gradient(135deg, var(--landing-accent-blue), #2563eb);
    border: none;
    color: white;
}

.btn-pricing-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Pricing Trust */
.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.pricing-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--landing-text-secondary);
}

.pricing-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--landing-primary);
}

/* ========== DEMO MODAL ========== */
.demo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.demo-modal-content {
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16/9;
    background: var(--landing-bg-card);
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    position: relative;
    animation: scaleIn 0.3s ease;
    overflow: hidden;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.demo-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    padding: 10px;
    color: var(--landing-text);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.demo-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--landing-primary);
}

.demo-modal-video {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-modal-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

/* ========== SIGNAL FLOW DIAGRAM ========== */
.signal-flow-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.15);
}

.flow-diagram {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.flow-step {
    background: var(--landing-bg-card);
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 28px 24px;
    width: 220px;
    position: relative;
    transition: all 0.3s;
}

.flow-step:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 204, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.step-icon.vetting {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--landing-accent-blue);
}

.step-icon.monitoring {
    background: linear-gradient(135deg, rgba(0, 229, 204, 0.2), rgba(0, 229, 204, 0.05));
    border: 1px solid rgba(0, 229, 204, 0.3);
    color: var(--landing-primary);
}

.step-icon.ai {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--landing-accent-purple);
}

.step-icon.delivery {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.step-number {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--landing-text-muted);
    font-family: 'Courier New', monospace;
}

.flow-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
}

.flow-step p {
    font-size: 13px;
    color: var(--landing-text-secondary);
    margin: 0 0 16px;
    line-height: 1.5;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--landing-text-secondary);
    padding: 4px 0;
}

.feature-list .check {
    color: var(--landing-primary);
    font-weight: 700;
}

.step-metric {
    padding-top: 12px;
    border-top: 1px solid var(--landing-border);
    text-align: center;
}

.metric-value {
    font-size: 24px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    color: var(--landing-primary);
    display: block;
}

.metric-label {
    font-size: 10px;
    color: var(--landing-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flow-arrow {
    color: var(--landing-primary);
    opacity: 0.4;
    align-self: center;
    margin-top: 60px;
}

/* Signal Actions */
.signal-actions {
    margin-bottom: 60px;
}

.signal-actions h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.action-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.action-card {
    background: var(--landing-bg-card);
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    min-width: 140px;
    transition: all 0.3s;
}

.action-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

.action-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.action-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px;
}

.action-card p {
    font-size: 11px;
    color: var(--landing-text-muted);
    margin: 0;
}

/* Live Example */
.live-example {
    background: var(--landing-bg-card);
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--landing-border);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--landing-success);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--landing-success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.example-timestamp {
    font-size: 12px;
    color: var(--landing-text-muted);
}

.example-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
}

.example-left {}

.example-symbol {
    font-size: 36px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    margin-bottom: 8px;
}

.example-action {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.example-action.buy {
    background: rgba(0, 229, 204, 0.15);
    color: var(--landing-primary);
}

.example-action.sell {
    background: rgba(239, 68, 68, 0.15);
    color: var(--landing-error);
}

.example-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.example-details > div {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.example-details span {
    color: var(--landing-text-muted);
}

.example-details strong {
    font-family: 'Courier New', monospace;
}

.example-details strong.gain {
    color: var(--landing-success);
}

.example-details strong.loss {
    color: var(--landing-error);
}

.example-right {}

.indicators-triggered {
    margin-bottom: 20px;
}

.indicators-triggered h4,
.ai-verdict h4 {
    font-size: 12px;
    color: var(--landing-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
}

.indicator-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.indicator-tags .tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--landing-border);
    border-radius: 6px;
    font-size: 12px;
    color: var(--landing-text-secondary);
}

.verdict-bar {
    position: relative;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.verdict-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--landing-primary-dark), var(--landing-primary));
    border-radius: 8px;
    transition: width 1s ease;
}

.verdict-text {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--landing-bg);
    z-index: 1;
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--landing-bg-card);
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 204, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon.ai-color {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--landing-accent-purple);
}

.feature-icon.realtime-color {
    background: linear-gradient(135deg, rgba(0, 229, 204, 0.2), rgba(0, 229, 204, 0.05));
    border: 1px solid rgba(0, 229, 204, 0.3);
    color: var(--landing-primary);
}

.feature-icon.regime-color {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--landing-accent-blue);
}

.feature-icon.sizing-color {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.feature-icon.exit-color {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.feature-icon.api-color {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: #ec4899;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--landing-text-secondary);
    margin: 0 0 16px;
    line-height: 1.6;
}

.feature-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-sublist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--landing-text-muted);
    padding: 4px 0;
}

.feature-sublist li::before {
    content: '✓';
    color: var(--landing-primary);
    font-weight: 700;
}

/* ========== PLATFORM PERFORMANCE ========== */
.platform-performance {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.15);
}

.performance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.perf-card {
    background: var(--landing-bg-card);
    border: 1px solid var(--landing-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.perf-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.perf-card.large {
    grid-column: span 1;
}

.perf-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.perf-icon.success {
    background: linear-gradient(135deg, rgba(0, 229, 204, 0.2), rgba(0, 229, 204, 0.05));
    border: 1px solid rgba(0, 229, 204, 0.3);
    color: var(--landing-primary);
}

.perf-icon.profit {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.perf-icon.signals {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--landing-accent-blue);
}

.perf-icon.time {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.05));
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.perf-icon.ratio {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--landing-accent-purple);
}

.perf-icon.drawdown {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--landing-error);
}

.perf-value {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    margin-bottom: 8px;
}

.perf-label {
    font-size: 14px;
    color: var(--landing-text-secondary);
    margin-bottom: 8px;
}

.perf-trend {
    font-size: 12px;
    font-weight: 600;
}

.perf-trend.positive {
    color: var(--landing-success);
}

.perf-trend.negative {
    color: var(--landing-error);
}

.perf-details {
    font-size: 12px;
    color: var(--landing-text-muted);
    margin-top: 8px;
}

/* Top Performers */
.top-performers {
    margin-bottom: 40px;
}

.top-performers h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.performers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.performer-item {
    background: var(--landing-bg-card);
    border: 1px solid var(--landing-border);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s;
}

.performer-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

.performer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.performer-symbol {
    font-size: 16px;
    font-weight: 800;
    font-family: 'Courier New', monospace;
}

.performer-return {
    font-size: 14px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.performer-return.positive {
    color: var(--landing-success);
}

.performer-return.negative {
    color: var(--landing-error);
}

.performer-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 11px;
    color: var(--landing-text-muted);
    margin-bottom: 6px;
}

.performer-date {
    font-size: 10px;
    color: var(--landing-text-muted);
}

/* Performance Disclaimer */
.performance-disclaimer {
    padding: 20px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    text-align: center;
}

.performance-disclaimer p {
    font-size: 12px;
    color: var(--landing-text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* ========== RESPONSIVE ADDITIONS ========== */
@media (max-width: 1100px) {
    .proof-grid {
        grid-template-columns: 1fr;
    }
    
    .proof-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .performance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .performers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-diagram {
        flex-direction: column;
        align-items: center;
    }
    
    .flow-step {
        width: 100%;
        max-width: 350px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    
    .example-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .proof-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .proof-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
    }
    
    .performers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .proof-trust-bullets {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .pricing-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .proof-section,
    .pricing-section,
    .features-section,
    .signal-flow-section,
    .platform-performance {
        padding: 60px 0;
    }
    
    .proof-metrics {
        grid-template-columns: 1fr;
    }
    
    .signal-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .performers-grid {
        grid-template-columns: 1fr;
    }
    
    .action-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-modal-content {
        width: 95%;
        border-radius: 12px;
    }
    
    .demo-modal-close {
        top: -44px;
    }
}
