/* ============================================
   POIPOE - ABYSS THEME
   Ultra-Dark & Hollow Trading Platform
   ============================================ */

:root {
    /* ABYSS COLOR PALETTE - DEEP VOID */
    --abyss-void: #000000;           /* Pure void black */
    --abyss-deep: #030303;           /* Deep void */
    --abyss-core: #060606;           /* Core abyss */
    --abyss-abyss: #090909;          /* Abyss layer */
    --abyss-shadow: #0d0d0d;         /* Shadow layer */
    --abyss-crust: #121212;          /* Crust layer */
    
    /* PLASMA ACCENTS - ENERGY IN THE VOID */
    --plasma-blue: #0066ff;          /* Primary blue plasma */
    --plasma-violet: #6600ff;        /* Secondary violet plasma */
    --plasma-cyan: #00ccff;          /* Tertiary cyan plasma */
    --plasma-gradient: linear-gradient(135deg, #0066ff, #6600ff, #00ccff);
    
    /* SEMANTIC COLORS */
    --success: #00ff88;              /* Neon green success */
    --warning: #ffaa00;              /* Amber warning */
    --danger: #ff0066;               /* Red danger */
    --info: #00ccff;                 /* Cyan info */
    
    /* TYPOGRAPHY */
    --font-primary: 'Inter', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* DIMENSIONS */
    --header-height: 80px;
    
    /* SHADOWS & GLOWS */
    --shadow-void: 0 0 0 1px rgba(255, 255, 255, 0.02), 0 0 40px rgba(0, 102, 255, 0.03);
    --shadow-abyss: 0 8px 32px rgba(0, 0, 0, 0.8), 0 4px 16px rgba(0, 0, 0, 0.6);
    --glow-blue: 0 0 30px rgba(0, 102, 255, 0.4);
    --glow-violet: 0 0 30px rgba(102, 0, 255, 0.4);
    --glow-cyan: 0 0 30px rgba(0, 204, 255, 0.4);
    
    /* TRANSITIONS */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--abyss-void);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* PARTICLE BACKGROUND - VOID ATMOSPHERE */
.particle-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--abyss-void);
    z-index: -3;
}

.particle-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(0, 102, 255, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(102, 0, 255, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 40%, rgba(0, 204, 255, 0.015) 0%, transparent 50%);
    z-index: -2;
}

.particle-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(0, 102, 255, 0.005) 50%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(102, 0, 255, 0.005) 50%, transparent 52%);
    background-size: 120px 120px;
    z-index: -1;
    opacity: 0.3;
}

/* ANIMATED PARTICLES */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--plasma-blue);
    border-radius: 50%;
    animation: particleFloat 8s infinite linear;
    opacity: 0.6;
}

.particle:nth-child(odd) {
    background: var(--plasma-violet);
    animation-duration: 10s;
    animation-delay: -2s;
}

.particle:nth-child(3n) {
    background: var(--plasma-cyan);
    animation-duration: 12s;
    animation-delay: -4s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}

/* TYPOGRAPHY SYSTEM */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}

.text-gradient {
    background: var(--plasma-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* NAVIGATION */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--plasma-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--plasma-gradient);
    transition: width 0.3s ease;
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--plasma-blue);
    color: #ffffff;
    box-shadow: var(--glow-blue);
}

.btn-primary:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.6);
}

.btn-secondary {
    background: rgba(102, 0, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(102, 0, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(102, 0, 255, 0.2);
    border-color: var(--plasma-violet);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-outline {
    background: transparent;
    color: var(--plasma-blue);
    border: 1px solid var(--plasma-blue);
}

.btn-outline:hover {
    background: var(--plasma-blue);
    color: #ffffff;
}

/* CONTAINER & GRID */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* BLOCKCHAIN CHAINS GRID */
.chains-grid {
    display: grid;
    gap: 2rem;
}

.chain-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plasma-blue);
    margin-bottom: 1.5rem;
    text-align: left;
}

.chains-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.chain-item {
    background: var(--abyss-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.chain-item:hover {
    border-color: var(--plasma-blue);
    transform: translateY(-2px);
}

.chain-logo {
    width: 48px;
    height: 48px;
    background: var(--plasma-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--abyss-core);
    flex-shrink: 0;
}

.chain-info {
    flex: 1;
}

.chain-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.chain-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.chain-stats {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stat {
    background: rgba(102, 204, 255, 0.1);
    color: var(--plasma-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(102, 204, 255, 0.2);
}

/* RESPONSIVE - CHAIN GRID */
@media (max-width: 768px) {
    .chains-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .chain-item {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
    }
    
    .chain-logo {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .chain-stats {
        justify-content: center;
    }
    
    /* Mobile Grid Layouts */
    .security-grid,
    .education-grid,
    .features-grid,
    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .security-item,
    .education-item {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .category-title {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .chains-list {
        grid-template-columns: 1fr;
    }
}

.section {
    padding: 3rem 0;
    position: relative;
}

.bg-surface {
    background: var(--abyss-core);
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
}

.hero-grid {
    align-items: center;
    gap: 4rem;
}

.hero-content {
    max-width: 600px;
}

.hero-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plasma-blue);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.stats-container {
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
    opacity: 0.8;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-item i {
    color: var(--success);
}

/* HERO PREVIEW - DASHBOARD MOCKUP */
.hero-preview {
    position: relative;
}

.dashboard-mockup {
    background: rgba(6, 6, 6, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-abyss);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.dashboard-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}

.status-dot.active {
    animation: pulse 2s infinite;
}

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

.chart-container {
    position: relative;
    height: 200px;
    background: var(--abyss-void);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100%;
}

.chart-bar {
    flex: 1;
    background: var(--plasma-gradient);
    border-radius: 4px 4px 0 0;
    animation: chartGrow 2s ease-out;
    min-height: 10%;
}

@keyframes chartGrow {
    0% { height: 0; }
}

.profit-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.75rem;
}

.profit-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.profit-label {
    color: rgba(255, 255, 255, 0.7);
}

.profit-value {
    font-weight: 600;
    font-family: var(--font-mono);
}

.bot-status {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bot-card {
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-fast);
}

.bot-card:hover {
    border-color: var(--plasma-blue);
    transform: translateY(-4px);
}

.bot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bot-name {
    font-weight: 600;
    color: #ffffff;
}

.bot-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
}

.bot-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    font-weight: 600;
    font-size: 0.875rem;
    font-family: var(--font-mono);
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--abyss-void);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--plasma-gradient);
    border-radius: 2px;
    transition: width 2s ease-out;
}

/* SECTIONS */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plasma-blue);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--plasma-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--plasma-blue);
    box-shadow: var(--glow-blue);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--plasma-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(0, 102, 255, 0.1);
    color: var(--plasma-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

/* STRATEGIES */
.strategies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.strategy-card {
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.strategy-card:hover {
    transform: translateY(-4px);
    border-color: var(--plasma-blue);
    box-shadow: var(--shadow-abyss);
}

.strategy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.strategy-icon {
    width: 50px;
    height: 50px;
    background: var(--plasma-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
}

.strategy-title {
    flex: 1;
    margin-left: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.strategy-metric {
    text-align: right;
}

.strategy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--plasma-blue);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.strategy-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.status-indicator .status-dot {
    width: 6px;
    height: 6px;
}

/* ANALYTICS DASHBOARD */
.dashboard-preview {
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-controls {
    display: flex;
    gap: 1rem;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.control-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.control-select {
    background: var(--abyss-void);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.security-item {
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 204, 255, 0.1);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.education-item {
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.education-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 204, 255, 0.1);
}

.content-item {
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.content-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 204, 255, 0.1);
}

.content-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.content-link:hover {
    color: var(--plasma-blue);
}

.metric-card {
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition-fast);
}

.metric-card:hover {
    border-color: var(--plasma-blue);
    transform: translateY(-2px);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.metric-icon {
    width: 40px;
    height: 40px;
    background: var(--plasma-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #ffffff;
}

.metric-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
}

.metric-change {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.metric-chart {
    height: 40px;
    position: relative;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--plasma-gradient);
    border-radius: 1px;
}

.chart-line.up {
    background: var(--success);
}

.chart-line.active {
    background: var(--warning);
}

.chart-line.fast {
    background: var(--info);
}

/* CTA SECTION */
.cta-container {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
.footer {
    background: var(--abyss-core);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    max-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--plasma-gradient);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    color: #ffffff;
}

.logo-text {
    font-weight: 700;
    font-size: 1.125rem;
    color: #ffffff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--plasma-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--plasma-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-align: right;
}

/* MOBILE MENU */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: var(--transition-fast);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(-100%);
    transition: var(--transition-smooth);
    z-index: 999;
    padding: 2rem;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-nav-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--plasma-blue);
    padding-left: 1rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ANIMATIONS */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

[data-animate].animate-fadeInUp {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-grid {
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Blog Grid Improvements */
    .featured-post {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-image {
        order: -1;
    }
    
    /* Paper Grid Improvements */
    .featured-whitepaper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .papers-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mission Statement */
    .mission-statement {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }
    
    /* Container & Spacing */
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    /* Hero Section */
    .hero-section {
        padding-top: calc(var(--header-height) + 2rem);
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    /* Hero Preview - Dashboard Mockup */
    .hero-preview {
        margin-top: 2rem;
        max-width: 100%;
    }
    
    .dashboard-mockup {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 400px;
        transform: scale(0.9);
        transform-origin: center;
    }
    
    .dashboard-header {
        margin-bottom: 1.5rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
    
    .dashboard-title {
        font-size: 1.1rem;
    }
    
    .dashboard-status {
        font-size: 0.9rem;
    }
    
    /* Chart Container */
    .chart-container {
        margin-bottom: 1.5rem;
    }
    
    .chart-bars {
        gap: 0.25rem;
    }
    
    .chart-bar {
        width: 12px;
    }
    
    .profit-overlay {
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .profit-item {
        justify-content: space-between;
        margin-bottom: 0.5rem;
    }
    
    .profit-label {
        font-size: 0.9rem;
    }
    
    .profit-value {
        font-size: 0.9rem;
    }
    
    /* Bot Status Cards */
    .bot-status {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bot-card {
        padding: 1rem;
    }
    
    .bot-header {
        margin-bottom: 1rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }
    
    .bot-name {
        font-size: 1rem;
    }
    
    .bot-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .metric {
        text-align: center;
    }
    
    .metric-label {
        font-size: 0.8rem;
    }
    
    .metric-value {
        font-size: 0.9rem;
    }
    
    /* Additional Hero Content Mobile Optimizations */
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-label {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    /* Stats Grid Mobile */
    .stats-grid {
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Hero CTA Buttons Mobile */
    .btn-large {
        width: 100%;
        min-height: 48px;
        font-size: 1rem;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .btn-large i {
        font-size: 1.1rem;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .feature-title {
        margin: 1rem 0 0.5rem 0;
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Stats Container */
    .stats-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    /* Dashboard Controls */
    .dashboard-controls {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    /* Blog Categories */
    .blog-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        margin-bottom: 2rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    /* Research Categories */
    .research-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-card {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Strategy Cards */
    .strategy-card {
        padding: 1.5rem;
    }
    
    .strategy-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .strategy-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .strategy-title {
        margin-left: 0;
    }
    
    .strategy-metric {
        text-align: left;
        align-self: flex-start;
    }
    
    .strategy-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Metric Cards */
    .metric-card {
        padding: 1rem;
    }
    
    .metric-icon {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    /* Team Members */
    .team-member {
        padding: 1.5rem;
    }
    
    .avatar-placeholder {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
    
    .member-name {
        font-size: 1.125rem;
    }
    
    /* Contact Cards */
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Form Improvements */
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 1rem;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .form-tabs {
        flex-wrap: wrap;
    }
    
    .form-tab {
        flex: 1;
        min-width: 120px;
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    /* Button Improvements */
    .btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 44px; /* Touch-friendly */
    }
    
    .btn-small {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        min-height: 40px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* CTA Actions */
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cta-container {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    /* Extra Small Screens */
    .container {
        padding: 0 0.75rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2rem);
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    /* Hero Preview - Extra Small Screens */
    .hero-preview {
        margin-top: 1.5rem;
    }
    
    .dashboard-mockup {
        padding: 1rem;
        max-width: 320px;
        transform: scale(0.85);
    }
    
    .dashboard-header {
        margin-bottom: 1rem;
    }
    
    .dashboard-title {
        font-size: 1rem;
    }
    
    .dashboard-status {
        font-size: 0.85rem;
    }
    
    .chart-bar {
        width: 10px;
    }
    
    .profit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.25rem;
    }
    
    .bot-card {
        padding: 0.875rem;
    }
    
    .bot-name {
        font-size: 0.9rem;
    }
    
    .bot-metrics {
        gap: 0.75rem;
    }
    
    .metric-value {
        font-size: 0.8rem;
    }
    
    /* Stats - Extra Small */
    .stat-item {
        padding: 0.875rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* CTA Buttons - Extra Small */
    .btn-large {
        min-height: 44px;
        font-size: 0.95rem;
    }
    
    /* Features - Extra Small */
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-title {
        font-size: 1.1rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* Grid Fixes */
    .bot-status {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .strategy-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Card Improvements */
    .feature-card,
    .strategy-card,
    .metric-card,
    .team-member,
    .contact-card,
    .paper-card {
        padding: 1.25rem;
    }
    
    /* Image Placeholders */
    .image-placeholder {
        height: 120px;
    }
    
    /* Featured Content */
    .featured-post,
    .featured-whitepaper,
    .mission-statement {
        padding: 2rem 1.5rem;
    }
    
    .featured-title {
        font-size: 1.75rem;
    }
    
    /* Newsletter Signup */
    .newsletter-signup {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    /* Timeline Mobile */
    .timeline-content {
        padding: 1.5rem;
        margin: 0 1rem;
        max-width: none;
    }
    
    .timeline-title {
        font-size: 1.125rem;
    }
    
    /* Form Elements */
    .form-row {
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .form-tabs {
        flex-direction: column;
    }
    
    .form-tab {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .form-tab:last-child {
        border-bottom: none;
    }
    
    /* Interactive Dashboard */
    .demo-controls {
        padding: 1.5rem;
    }
    
    .dashboard-main {
        padding: 1.5rem;
    }
    
    .sidebar-section {
        padding: 1rem;
    }
    
    /* Bot Cards */
    .demo-bot {
        padding: 1rem;
    }
    
    .bot-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    /* Trading Items */
    .trade-item {
        grid-template-columns: auto 1fr auto;
        gap: 0.75rem;
        font-size: 0.8rem;
    }
    
    .trade-time {
        display: none;
    }
    
    .opportunity-item {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .opp-description {
        margin-left: 0.5rem;
    }
    
    /* Quick Links */
    .quick-links {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    /* Research Areas */
    .research-area {
        padding: 1.5rem;
    }
    
    .area-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Documentation */
    .docs-sidebar {
        margin-bottom: 2rem;
    }
    
    .code-block {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    /* Steps */
    .step {
        gap: 1rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    /* Auth Methods */
    .auth-methods {
        grid-template-columns: 1fr;
    }
    
    /* Endpoint Details */
    .endpoint-header {
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .endpoint-details {
        padding: 1rem;
    }
}

/* UTILITY CLASSES */
.text-success {
    color: var(--success);
}

.text-warning {
    color: var(--warning);
}

.text-danger {
    color: var(--danger);
}

.text-info {
    color: var(--info);
}

.text-gradient {
    background: var(--plasma-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ============================================
   MOBILE-SPECIFIC ENHANCEMENTS
   Touch Targets, Performance & Accessibility
   ============================================ */

/* Touch Target Improvements */
@media (max-width: 768px) {
    /* Minimum touch target size for all interactive elements */
    button,
    .btn,
    .mobile-nav-link,
    .nav-link,
    .form-tab,
    .category-btn,
    .category-card {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Enhanced touch feedback */
    button:active,
    .btn:active,
    .mobile-nav-link:active,
    .nav-link:active,
    .form-tab:active,
    .category-btn:active,
    .category-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Improve tap areas */
    .social-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better scrolling on mobile */
    .blog-categories,
    .research-categories {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE 10+ */
    }
    
    .blog-categories::-webkit-scrollbar,
    .research-categories::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    /* Mobile-optimized animations */
    [data-animate] {
        transition-duration: 0.3s; /* Faster animations on mobile */
    }
    
    /* Reduce particle density on mobile */
    .particle {
        opacity: 0.4; /* Subtle particles on mobile */
    }
    
    /* Touch-friendly form elements */
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px !important; /* Prevent zoom on iOS */
        min-height: 44px;
    }
    
    /* Mobile-optimized cards */
    .feature-card,
    .strategy-card,
    .metric-card,
    .blog-card,
    .paper-card,
    .team-member,
    .contact-card {
        touch-action: manipulation; /* Optimize for touch */
    }
    
    /* Better mobile scrolling */
    .container {
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
    
    /* Mobile-specific text sizing */
    .hero-title {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Prevent text selection on buttons */
    .btn,
    button {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Mobile menu improvements */
    .mobile-menu {
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .mobile-nav-link {
        padding: 1.25rem 0;
        font-size: 1.125rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        touch-action: manipulation;
    }
    
    .mobile-menu-btn {
        padding: 0.5rem;
        border-radius: 6px;
        transition: background-color 0.2s ease;
    }
    
    .mobile-menu-btn:active {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

/* Extra small screens (480px and below) */
@media (max-width: 480px) {
    /* Further optimizations for very small screens */
    .btn {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.875rem;
    }
    
    /* Smaller icon sizes for mobile */
    .feature-icon,
    .strategy-icon,
    .metric-icon,
    .contact-icon,
    .value-icon,
    .area-icon {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    /* Tighter spacing on small screens */
    .section {
        padding: 2rem 0;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    /* Mobile-friendly code blocks */
    .code-block {
        padding: 1rem;
        font-size: 0.8rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile timeline */
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-dot {
        width: 16px;
        height: 16px;
    }
}

/* Landscape mobile optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: calc(var(--header-height) + 1rem) 0 2rem;
    }
    
    .mobile-menu {
        max-height: calc(100vh - var(--header-height) - 2rem);
    }
    
    .particle-background {
        display: none; /* Hide particles in landscape to save space */
    }
}

/* Accessibility improvements for mobile */
@media (prefers-reduced-motion: reduce) {
    .particle {
        animation: none !important;
    }
    
    [data-animate] {
        transition: none !important;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .strategy-card,
    .metric-card,
    .blog-card,
    .paper-card,
    .team-member,
    .contact-card {
        border-width: 2px;
        border-color: #ffffff;
    }
    
    .btn-primary {
        border: 2px solid #ffffff;
    }
}

/* Dark mode optimizations for mobile */
@media (prefers-color-scheme: dark) {
    /* Already optimized for dark theme, but ensure good contrast */
    .mobile-menu {
        background: rgba(0, 0, 0, 0.98);
    }
    
    .mobile-nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}

/* ============================================
   ADDITIONAL STYLES FOR MULTI-PAGE LAYOUT
   Blog, Docs, Whitepaper, About, Contact Pages
   ============================================ */

/* BLOG PAGE STYLES */
.blog-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.category-btn:hover,
.category-btn.active {
    background: var(--plasma-blue);
    color: #ffffff;
    border-color: var(--plasma-blue);
    transform: translateY(-2px);
}

.featured-post {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.featured-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.post-category {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.post-category.strategy {
    background: rgba(0, 102, 255, 0.1);
    color: var(--plasma-blue);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.post-category.tutorial {
    background: rgba(0, 204, 255, 0.1);
    color: var(--plasma-cyan);
    border: 1px solid rgba(0, 204, 255, 0.2);
}

.post-category.market {
    background: rgba(102, 0, 255, 0.1);
    color: var(--plasma-violet);
    border: 1px solid rgba(102, 0, 255, 0.2);
}

.post-category.platform {
    background: rgba(0, 255, 136, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.post-date,
.read-time {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-title a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-fast);
}

.featured-title a:hover {
    color: var(--plasma-blue);
}

.featured-excerpt {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--plasma-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: #ffffff;
}

.author-title {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.featured-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: var(--abyss-void);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.image-placeholder i {
    font-size: 3rem;
    color: var(--plasma-blue);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--plasma-blue);
    box-shadow: var(--shadow-abyss);
}

.blog-image {
    position: relative;
    height: 200px;
    background: var(--abyss-void);
}

.blog-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-title a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-title a:hover {
    color: var(--plasma-blue);
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

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

/* DOCUMENTATION PAGE STYLES */
.quick-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    color: #ffffff;
    transition: var(--transition-smooth);
    min-width: 150px;
}

.quick-link:hover {
    transform: translateY(-4px);
    border-color: var(--plasma-blue);
    background: rgba(0, 102, 255, 0.1);
}

.quick-link i {
    font-size: 2rem;
    color: var(--plasma-blue);
}

.quick-link span {
    font-weight: 600;
    text-align: center;
}

.docs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

.docs-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plasma-blue);
    margin-bottom: 1rem;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav li {
    margin-bottom: 0.5rem;
}

.sidebar-nav .nav-link {
    display: block;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
    border-left: 2px solid transparent;
    padding-left: 1rem;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    color: var(--plasma-blue);
    border-left-color: var(--plasma-blue);
    padding-left: 1.5rem;
}

.docs-content {
    max-width: none;
}

.doc-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.doc-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.doc-intro {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--plasma-blue);
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.code-example {
    background: var(--abyss-void);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
}

.code-example.small {
    margin: 1rem 0;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(6, 6, 6, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.copy-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition-fast);
}

.copy-btn:hover {
    color: var(--plasma-blue);
    background: rgba(255, 255, 255, 0.05);
}

.code-example pre {
    padding: 1.5rem;
    margin: 0;
    overflow-x: auto;
}

.code-example code {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.6;
    color: #e4e4e7;
}

.auth-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.auth-method h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.auth-method p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.note-block {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(0, 204, 255, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.2);
    border-radius: 12px;
    margin: 2rem 0;
}

.note-block i {
    color: var(--plasma-cyan);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.steps-guide {
    margin: 2rem 0;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--plasma-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.endpoint-group {
    margin: 2rem 0;
}

.endpoint {
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.endpoint-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(13, 13, 13, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.method {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.method.get {
    background: var(--success);
    color: #000000;
}

.method.post {
    background: var(--plasma-blue);
    color: #ffffff;
}

.path {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--plasma-cyan);
}

.description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.endpoint-details {
    padding: 1.5rem;
}

.endpoint-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.example-card {
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.example-card h4 {
    padding: 1.5rem;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.example-card p {
    padding: 0 1.5rem 1rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* WHITE PAPER PAGE STYLES */
.research-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition-fast);
}

.category-card:hover,
.category-card.active {
    background: var(--plasma-blue);
    color: #ffffff;
    border-color: var(--plasma-blue);
    transform: translateY(-2px);
}

.featured-whitepaper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.paper-type {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.paper-type.architecture {
    background: rgba(0, 102, 255, 0.1);
    color: var(--plasma-blue);
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.paper-type.algorithms {
    background: rgba(0, 204, 255, 0.1);
    color: var(--plasma-cyan);
    border: 1px solid rgba(0, 204, 255, 0.2);
}

.paper-type.security {
    background: rgba(0, 255, 136, 0.1);
    color: var(--success);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.paper-type.economics {
    background: rgba(255, 170, 0, 0.1);
    color: var(--warning);
    border: 1px solid rgba(255, 170, 0, 0.2);
}

.paper-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.paper-date,
.paper-pages {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.featured-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.featured-title a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-fast);
}

.featured-title a:hover {
    color: var(--plasma-blue);
}

.featured-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.featured-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.highlight i {
    color: var(--success);
}

.featured-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.architecture-diagram {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.diagram-node {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.diagram-node.main {
    background: var(--plasma-gradient);
    color: #ffffff;
    justify-content: center;
    margin-bottom: 2rem;
}

.diagram-layer {
    padding-left: 2rem;
}

.papers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.paper-card {
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.paper-card:hover {
    transform: translateY(-4px);
    border-color: var(--plasma-blue);
    box-shadow: var(--shadow-abyss);
}

.paper-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.paper-icon {
    width: 50px;
    height: 50px;
    background: var(--plasma-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ffffff;
}

.paper-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.paper-title a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-fast);
}

.paper-title a:hover {
    color: var(--plasma-blue);
}

.paper-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.paper-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.paper-actions {
    display: flex;
    gap: 1rem;
}

.research-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.research-area {
    text-align: center;
    padding: 2rem;
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition-fast);
}

.research-area:hover {
    transform: translateY(-4px);
    border-color: var(--plasma-blue);
}

.area-icon {
    width: 60px;
    height: 60px;
    background: var(--plasma-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.area-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.area-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.area-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ABOUT PAGE STYLES */
.mission-statement {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.mission-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.team-member {
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-4px);
    border-color: var(--plasma-blue);
}

.member-avatar {
    margin-bottom: 1.5rem;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: var(--plasma-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #ffffff;
    font-size: 1.5rem;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.member-role {
    color: var(--plasma-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--plasma-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--plasma-blue);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--plasma-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.value-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--plasma-gradient);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--plasma-blue);
    border-radius: 50%;
    border: 4px solid var(--abyss-void);
}

.timeline-item.current .timeline-dot {
    background: var(--plasma-gradient);
    animation: pulse 2s infinite;
}

.timeline-content {
    flex: 1;
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin: 0 2rem;
    max-width: 350px;
}

.timeline-date {
    color: var(--plasma-blue);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.timeline-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.investors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.investor-card {
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.investor-card:hover {
    transform: translateY(-4px);
    border-color: var(--plasma-blue);
}

.investor-logo {
    margin-bottom: 1.5rem;
}

.logo-placeholder {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
}

.investor-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.investor-type {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* CONTACT PAGE STYLES */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--plasma-blue);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--plasma-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.contact-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.form-container {
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
}

.form-tabs {
    display: flex;
    background: rgba(13, 13, 13, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.875rem;
}

.form-tab:hover,
.form-tab.active {
    background: rgba(0, 102, 255, 0.1);
    color: var(--plasma-blue);
}

.contact-form {
    display: none;
    padding: 3rem;
}

.contact-form.active {
    display: block;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--plasma-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.info-card,
.faq-card,
.social-card {
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.info-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--plasma-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.info-content h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.info-content p {
    color: rgba(255, 255, 255, 0.7);
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.faq-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--plasma-blue);
    color: #ffffff;
    transform: translateX(4px);
}

.newsletter-signup {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    align-items: center;
}

.signup-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.signup-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.signup-form .form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* DEMO PAGE ADDITIONAL STYLES */
.demo-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    flex-wrap: wrap;
    gap: 2rem;
}

.control-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.demo-btn {
    transition: var(--transition-fast);
}

.demo-btn.active {
    background: var(--plasma-blue);
    color: #ffffff;
    border-color: var(--plasma-blue);
}

.demo-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-weight: 600;
    color: #ffffff;
}

.demo-dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.dashboard-main {
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
}

.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background: rgba(6, 6, 6, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.chart-section {
    margin-bottom: 2rem;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.chart-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.chart-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.chart-metrics {
    display: flex;
    gap: 2rem;
}

.chart-container {
    position: relative;
    height: 300px;
    background: var(--abyss-void);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.chart-alerts {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(6, 6, 6, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.75rem;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-icon {
    font-size: 1rem;
}

.alert-text {
    color: rgba(255, 255, 255, 0.8);
}

.alert-value {
    font-weight: 600;
}

.bots-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.bots-grid {
    display: grid;
    gap: 1.5rem;
}

.demo-bot {
    transition: var(--transition-fast);
}

.demo-bot:hover {
    transform: translateY(-2px);
}

.bot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bot-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bot-name {
    font-weight: 600;
    color: #ffffff;
}

.bot-status {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.bot-status-indicator .status-dot {
    width: 8px;
    height: 8px;
}

.bot-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.bot-progress {
    margin-top: 1rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.market-data {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.data-pair {
    font-weight: 600;
    color: #ffffff;
}

.data-price {
    font-family: var(--font-mono);
    color: rgba(255, 255, 255, 0.8);
}

.data-change {
    font-size: 0.875rem;
    font-weight: 600;
}

.trades-list,
.opportunities-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trade-item {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.875rem;
}

.trade-type {
    padding: 0.25rem 0.5rem;
    background: var(--plasma-blue);
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
}

.trade-pair {
    color: rgba(255, 255, 255, 0.8);
}

.trade-profit {
    font-weight: 600;
}

.trade-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

.opportunity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.875rem;
}

.opp-type {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.opp-type.high {
    background: var(--success);
    color: #000000;
}

.opp-type.medium {
    background: var(--warning);
    color: #000000;
}

.opp-type.low {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.opp-description {
    flex: 1;
    margin-left: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.opp-value {
    font-weight: 600;
}

.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-showcase-item {
    text-align: center;
    padding: 2rem;
    background: rgba(6, 6, 6, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.feature-showcase-item:hover {
    transform: translateY(-4px);
    border-color: var(--plasma-blue);
}

.feature-showcase-item i {
    font-size: 2rem;
    color: var(--plasma-blue);
    margin-bottom: 1rem;
}

.feature-showcase-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-showcase-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) {
    /* Documentation Layout */
    .docs-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .docs-sidebar {
        position: static;
        order: 2;
        margin-top: 2rem;
    }
    
    /* Contact & Platform Layouts */
    .contact-layout,
    .demo-dashboard {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Featured Content Layouts */
    .featured-post,
    .featured-whitepaper,
    .mission-statement {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Timeline Mobile Fix */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
    }
    
    .timeline-content {
        margin: 0;
        max-width: none;
    }
    
    /* Mission Stats */
    .mission-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
    
    /* Architecture Diagram */
    .architecture-diagram {
        max-width: 250px;
    }
    
    /* Blog & Paper Meta */
    .featured-meta,
    .paper-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    /* Research Areas */
    .research-areas {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    /* Auth Methods */
    .auth-methods {
        grid-template-columns: 1fr;
    }
    
    /* Examples Grid */
    .examples-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Blog & Paper Grids */
    .blog-grid,
    .papers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card,
    .paper-card {
        padding: 1.5rem;
    }
    
    /* Grid Layouts */
    .team-grid,
    .values-grid,
    .research-areas,
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Form Improvements */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .newsletter-signup {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .signup-form .form-group {
        flex-direction: column;
    }
    
    /* Contact Options */
    .contact-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Quick Links */
    .quick-links {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    /* Grid Layouts Continued */
    .auth-methods,
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Platform Controls */
    .demo-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .control-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .demo-info {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Chart Info */
    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .chart-metrics {
        gap: 1rem;
    }
    
    /* Dashboard Layout */
    .dashboard-main {
        padding: 1.5rem;
    }
    
    .sidebar-section {
        padding: 1.25rem;
    }
    
    /* Mission Statement Stats */
    .mission-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Blog Featured Content */
    .featured-content {
        order: 1;
    }
    
    .featured-image {
        order: 2;
    }
    
    /* Paper Featured Content */
    .featured-highlights {
        grid-template-columns: 1fr;
    }
    
    /* Value Cards */
    .value-card {
        text-align: center;
    }
    
    .value-icon {
        margin: 0 auto 1rem;
    }
    
    /* Team Member Social Links */
    .member-social {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    /* Footer Improvements */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    /* Social Links */
    .social-links {
        gap: 0.75rem;
    }
    
    /* Paper Actions */
    .paper-actions {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .paper-details {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    /* Trading Lists */
    .trades-list,
    .opportunities-list {
        gap: 0.5rem;
    }
    
    /* Market Data */
    .market-data {
        gap: 0.75rem;
    }
    
    .data-item {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    /* Bot Progress */
    .bot-progress {
        margin-top: 0.75rem;
    }
    
    .progress-label {
        font-size: 0.8rem;
    }
    
    /* Feature Showcase */
    .feature-showcase-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .feature-showcase-item i {
        font-size: 1.5rem;
    }
    
    .feature-showcase-item h4 {
        font-size: 1rem;
    }
    
    /* Documentation Code Blocks */
    .code-block {
        padding: 1.25rem;
        font-size: 0.85rem;
        overflow-x: auto;
    }
    
    /* Step Content */
    .step-content h4 {
        font-size: 1rem;
    }
    
    /* Endpoint Groups */
    .endpoint-group {
        margin: 1.5rem 0;
    }
    
    /* Category Cards */
    .post-category,
    .paper-type {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    /* Featured Footer */
    .featured-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 1.5rem;
    }
    
    .author-info {
        gap: 0.75rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }
}