/* ============================================================================
   BMB NEXUS LANDING PAGE - CYBERPUNK PERFECTION
   ============================================================================ */

/* CSS VARIABLES - Design System */
:root {
    /* Colors */
    --primary-purple: #8B5CF6;
    --primary-cyan: #06B6D4;
    --accent-blue: #3B82F6;
    --neon-cyan: #22D3EE;
    --bg-dark: #0F172A;
    --surface: #1E293B;
    --text-primary: #FFFFFF;
    --text-secondary: #CBD5E1;
    --success: #10B981;
    --warning: #F59E0B;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Typography */
    --font-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', sans-serif;
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-base);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* SECTION SPACING */
.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================================
   1. NAVIGATION BAR
   ============================================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-nav {
    display: flex;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-cyan));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-cyan) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.7);
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.5); }
    50% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.8); }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-sm);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--text-primary);
}

.mobile-nav-cta {
    margin-top: var(--space-md);
}

/* ============================================================================
   2. HERO SECTION
   ============================================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, transparent 70%);
    top: 50%;
    right: -300px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    bottom: -200px;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(20px); }
    50% { transform: translateY(-60px) translateX(-20px); }
    75% { transform: translateY(-30px) translateX(10px); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    z-index: 1;
}

.hero-headline {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-cyan) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-purple);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--neon-cyan);
}

.play-icon {
    font-size: 0.875rem;
}

.trust-indicators {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.trust-icon {
    font-size: 1.25rem;
}

/* Hero Visual - Floating Cards */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--space-lg);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-purple);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.card-1 {
    top: 0;
    left: 0;
    animation: float-card 8s ease-in-out infinite;
}

.card-2 {
    top: 50px;
    right: 50px;
    animation: float-card 10s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 100px;
    left: 100px;
    animation: float-card 12s ease-in-out infinite 4s;
}

.card-4 {
    bottom: 0;
    right: 0;
    animation: float-card 9s ease-in-out infinite 6s;
}

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

/* ============================================================================
   3. SOCIAL PROOF BAR
   ============================================================================ */
.social-proof-bar {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-md) 0;
    overflow: hidden;
}

.ticker {
    display: flex;
    width: 200%;
}

.ticker-content {
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
    animation: ticker-scroll 20s linear infinite;
    white-space: nowrap;
    color: var(--text-secondary);
}

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

/* ============================================================================
   4. PROBLEM SECTION
   ============================================================================ */
.problem-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(30, 41, 59, 0.5) 100%);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.problem-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 12px 40px rgba(239, 68, 68, 0.2);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.problem-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.problem-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================================
   5. SOLUTION SECTION
   ============================================================================ */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.solution-visual {
    position: relative;
}

.mockup-container {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.mockup-header {
    background: rgba(15, 23, 42, 0.9);
    padding: var(--space-md);
    display: flex;
    gap: 8px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
}

.mockup-dot:nth-child(1) { background: #EF4444; }
.mockup-dot:nth-child(2) { background: #F59E0B; }
.mockup-dot:nth-child(3) { background: #10B981; }

.mockup-content {
    display: flex;
    min-height: 300px;
}

.mockup-sidebar {
    width: 200px;
    background: rgba(15, 23, 42, 0.5);
    padding: var(--space-md);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-item {
    padding: var(--space-sm);
    margin-bottom: var(--space-sm);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.mockup-item.active {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-purple);
}

.mockup-main {
    flex: 1;
    padding: var(--space-lg);
}

.mockup-chat {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mockup-message {
    background: rgba(139, 92, 246, 0.1);
    border-left: 3px solid var(--primary-purple);
    padding: var(--space-sm) var(--space-md);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    animation: fade-in 0.5s ease;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-box {
    position: absolute;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--primary-purple);
    border-radius: 12px;
    padding: var(--space-md);
    text-align: center;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.stat-1 {
    top: 20px;
    right: -80px;
}

.stat-2 {
    bottom: 120px;
    right: -90px;
}

.stat-3 {
    bottom: 20px;
    left: -80px;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(30, 41, 59, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(30, 41, 59, 0.6);
    transform: translateX(8px);
}

.benefit-check {
    font-size: 1.5rem;
    color: var(--success);
    flex-shrink: 0;
}

.benefit-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================================
   6. DATA PROOF SECTION - TERMINAL STYLE
   ============================================================================ */
.terminal-container {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
}

.terminal-header {
    background: rgba(30, 41, 59, 0.8);
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-dot.red { background: #EF4444; }
.terminal-dot.yellow { background: #F59E0B; }
.terminal-dot.green { background: #10B981; }

.terminal-title {
    margin-left: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-family: 'Monaco', 'Courier New', monospace;
}

.terminal-content {
    padding: var(--space-xl);
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.8;
}

.terminal-line {
    display: flex;
    gap: var(--space-md);
    margin-bottom: 8px;
}

.terminal-line.empty {
    margin-bottom: var(--space-md);
}

.terminal-line.indent {
    padding-left: var(--space-xl);
}

.terminal-prompt {
    color: var(--neon-cyan);
    font-weight: 700;
}

.terminal-text {
    color: var(--text-secondary);
}

.terminal-text .highlight {
    color: var(--primary-cyan);
    font-weight: 700;
}

.terminal-text.highlight-block {
    color: var(--neon-cyan);
    font-weight: 600;
}

.terminal-cursor {
    display: inline-block;
    width: 10px;
    height: 16px;
    background: var(--neon-cyan);
    animation: blink 1s step-end infinite;
    margin-left: 4px;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* ============================================================================
   7. AI AGENTS SHOWCASE
   ============================================================================ */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.agent-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    padding: var(--space-xl);
    transition: all 0.3s ease;
    position: relative;
}

.agent-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-purple);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.agent-card.coming-soon {
    opacity: 0.7;
    border-color: rgba(255, 255, 255, 0.2);
}

.agent-icon {
    font-size: 4rem;
    margin-bottom: var(--space-md);
}

.agent-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-cyan));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.agent-badge.coming {
    background: linear-gradient(135deg, var(--warning), #F59E0B);
}

.agent-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.agent-tagline {
    font-size: 1rem;
    color: var(--neon-cyan);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.agent-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.agent-features {
    list-style: none;
    margin-top: var(--space-md);
}

.agent-features li {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
}

.agent-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: 700;
}

/* ============================================================================
   8. FEATURES GRID
   ============================================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: var(--primary-cyan);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================================
   9. COMPARISON TABLE
   ============================================================================ */
.comparison-table {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-header {
    background: rgba(15, 23, 42, 0.8);
    font-weight: 700;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: rgba(139, 92, 246, 0.05);
}

.comparison-label,
.comparison-col {
    padding: var(--space-md);
    text-align: center;
}

.comparison-label {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-col {
    color: var(--text-secondary);
}

.comparison-col.traditional {
    color: rgba(239, 68, 68, 0.8);
}

.comparison-col.nexus {
    color: var(--success);
}

.comparison-col.highlight {
    font-weight: 700;
    color: var(--neon-cyan);
}

/* ============================================================================
   10. ROADMAP TIMELINE
   ============================================================================ */
.timeline-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.timeline-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: var(--space-xl);
    transition: all 0.3s ease;
    position: relative;
}

.timeline-card.active {
    border-color: var(--success);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.timeline-card.next {
    border-color: var(--accent-blue);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}

.timeline-card.future {
    border-color: var(--primary-purple);
}

.timeline-card:hover {
    transform: translateY(-8px);
}

.timeline-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.timeline-badge.live {
    background: var(--success);
    color: white;
}

.timeline-badge.next {
    background: var(--accent-blue);
    color: white;
}

.timeline-badge.future {
    background: var(--primary-purple);
    color: white;
}

.timeline-version {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.timeline-subtitle {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.timeline-features {
    list-style: none;
    margin: var(--space-md) 0;
}

.timeline-features li {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
}

.timeline-status {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: var(--neon-cyan);
    font-weight: 600;
}

.roadmap-note {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-md);
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning);
    border-radius: 8px;
    color: var(--text-secondary);
}

/* ============================================================================
   11. FOUNDER STORY
   ============================================================================ */
.founder-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.story-text p {
    margin-bottom: var(--space-lg);
}

.story-text ul {
    margin: var(--space-lg) 0;
    padding-left: var(--space-xl);
}

.story-text li {
    margin-bottom: var(--space-sm);
}

.story-text em {
    color: var(--neon-cyan);
    font-style: italic;
}

.story-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.story-cta {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-align: center;
    margin-top: var(--space-xl);
}

/* ============================================================================
   12. TESTIMONIALS
   ============================================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.testimonial-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-4px);
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
}

.testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--primary-purple);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.use-case-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.use-case-stat {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* ============================================================================
   13. PRICING SECTION
   ============================================================================ */
.pricing-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    backdrop-filter: blur(12px);
    border: 2px solid var(--primary-purple);
    border-radius: 24px;
    padding: var(--space-2xl);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    text-align: center;
    animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: var(--primary-purple); }
    50% { border-color: var(--neon-cyan); }
}

.pricing-plan {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.pricing-price {
    margin-bottom: var(--space-md);
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.pricing-original {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.pricing-highlights {
    list-style: none;
    margin: var(--space-xl) 0;
    text-align: left;
}

.pricing-highlights li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
}

.highlight-icon {
    font-size: 1.5rem;
}

.pricing-cta {
    width: 100%;
    margin: var(--space-xl) 0;
}

.pricing-meta {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.spots-remaining {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.spots-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--warning);
}

.countdown-timer {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.pricing-detail-section {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--space-lg);
}

.pricing-detail-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pricing-note {
    text-align: center;
    margin-top: var(--space-xl);
    padding: var(--space-md);
    background: rgba(30, 41, 59, 0.3);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ============================================================================
   14. FAQ SECTION
   ============================================================================ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: var(--space-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-purple);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-cyan);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-purple);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================================================
   15. FINAL CTA SECTION
   ============================================================================ */
.final-cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
    top: -300px;
    left: -300px;
}

.cta-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
    bottom: -250px;
    right: -250px;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--primary-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.final-cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

.final-trust-indicators {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
}

.final-cta-note {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ============================================================================
   16. FOOTER
   ============================================================================ */
.footer {
    background: rgba(15, 23, 42, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-cyan);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ============================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================================================ */
@media (max-width: 1024px) {
    .hero-container,
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        display: none;
    }
    
    .problem-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-container {
        grid-template-columns: 1fr;
    }
    
    .pricing-container {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .problem-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .agents-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-ctas,
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .stat-box {
        position: static;
        margin-top: var(--space-md);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .trust-indicators,
    .final-trust-indicators {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* ============================================================================
   15. TRUST & SECURITY SECTION
   ============================================================================ */
.trust-security-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #1a1a2e 100%);
    position: relative;
}

.trust-security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.trust-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    padding: var(--space-3xl);
    box-shadow: 
        0 0 60px rgba(139, 92, 246, 0.2),
        0 0 120px rgba(6, 182, 212, 0.1);
    position: relative;
    z-index: 1;
}

.trust-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.trust-icon-large {
    font-size: 5rem;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.6));
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
}

.trust-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-3xl);
}

.trust-item-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: var(--space-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--neon-cyan));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-item-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-purple);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.trust-item-card:hover::before {
    transform: scaleX(1);
}

.trust-check {
    font-size: 2rem;
    margin-bottom: var(--space-md);
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.6));
}

.trust-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.trust-item-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.trust-footer {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.trust-footer-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.trust-footer-text strong {
    color: var(--neon-cyan);
    font-weight: 700;
}

/* Trust Section Responsive */
@media (max-width: 768px) {
    .trust-card {
        padding: var(--space-xl);
    }
    
    .trust-title {
        font-size: 1.75rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-icon-large {
        font-size: 3.5rem;
    }
}

/* ============================================================================
   UTILITIES & HELPERS
   ============================================================================ */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-purple), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 80px;
}

/* Loading animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading {
    animation: spin 1s linear infinite;
}
