/* ===================================
   RESET & VARIABLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Pure Dark Theme */
    --bg-dark: #000000;
    --bg-elevated: #0a0a0a;
    --bg-card: #111111;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.15);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-tertiary: #707070;
    
    /* Minimal Accent Colors */
    --accent-primary: #ffffff;
    --accent-subtle: #404040;
    
    --gradient-main: linear-gradient(135deg, #00d4ff 0%, #00ff88 50%, #8b5cf6 100%);
    --gradient-neon: linear-gradient(135deg, #00ffff 0%, #00ff88 50%, #ff00ff 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(0, 255, 136, 0.15));
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-family);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===================================
   BACKGROUND EFFECTS
   =================================== */
.bg-gradient-v2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}



#particles-v2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    transition: var(--transition-base);
}

.nav.scrolled {
    background: var(--bg-dark);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: var(--transition-fast);
}

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

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

.btn-launch {
    background: var(--text-primary);
    color: #000;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-launch:hover {
    background: var(--text-secondary);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-v2 {
    padding: 150px 2rem 100px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-tertiary);
    margin-bottom: 2.5rem;
    transition: var(--transition-base);
}

.hero-badge-pill:hover {
    border-color: var(--border-medium);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--text-primary);
    border-radius: 50%;
}

.hero-h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.gradient-text-v2 {
    color: var(--text-primary);
    display: inline-block;
}

.hero-description {
    font-size: 1.375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

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

.btn-primary-v2 {
    background: var(--text-primary);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    transition: var(--transition-base);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-primary-v2:hover {
    background: var(--text-secondary);
}

.btn-secondary-v2 {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-secondary-v2:hover {
    background: var(--text-primary);
    color: #000;
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.0625rem;
}

/* ===================================
   INFOGRAPHIC SECTION
   =================================== */
.infographic-section {
    padding: 100px 3rem;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
}

.infographic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.infographic-main {
    position: relative;
}

.neon-border-card {
    padding: 4rem;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    position: relative;
}

.neon-glow {
    display: none;
}

.stat-mega-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.stat-mega-label {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.stat-comparison-bar {
    padding: 1.5rem;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.comparison-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

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

.infographic-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.mini-info-card {
    padding: 2rem;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    position: relative;
    transition: var(--transition-base);
    text-align: center;
}

.mini-info-card:hover {
    border-color: var(--border-medium);
}

.neon-cyan-theme {
    border: 1px solid var(--border-subtle);
}

.neon-cyan-theme:hover {
    border-color: var(--border-medium);
}

.neon-green-theme {
    border: 1px solid var(--border-subtle);
}

.neon-green-theme:hover {
    border-color: var(--border-medium);
}

.neon-pink-theme {
    border: 1px solid var(--border-subtle);
}

.neon-pink-theme:hover {
    border-color: var(--border-medium);
}

.neon-yellow-theme {
    border: 1px solid var(--border-subtle);
}

.neon-yellow-theme:hover {
    border-color: var(--border-medium);
}

.mini-icon-neon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: var(--text-tertiary);
}

.mini-value {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    color: var(--text-primary);
}

.mini-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-weight: 400;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* ===================================
   SECTIONS
   =================================== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 3rem;
    position: relative;
    z-index: 2;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* ===================================
   ASSET TYPES GRID
   =================================== */
.asset-types {
    background: var(--bg-dark);
}

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

.asset-card {
    padding: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: var(--transition-base);
    position: relative;
}

.asset-card:hover {
    border-color: var(--text-primary);
}

.asset-icon {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.asset-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.asset-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.asset-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-tertiary);
    position: relative;
    z-index: 1;
}

/* ===================================
   FEATURES V2
   =================================== */
.features-v2 {
    background: var(--bg-dark);
}

.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-card-v2 {
    padding: 2.5rem;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: var(--transition-base);
    position: relative;
}

.feature-card-v2:hover {
    border-color: var(--text-primary);
}

.feature-number {
    display: inline-flex;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-tertiary);
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.feature-title-v2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-desc-v2 {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-v2 {
    padding: 120px 3rem;
    background: var(--bg-dark);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    position: relative;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    pointer-events: none;
}

.cta-title-v2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-subtitle-v2 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* ===================================
   FOOTER
   =================================== */
.footer-v2 {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-subtle);
    padding: 5rem 3rem 3rem;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-logo img {
    width: 36px;
    height: 36px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 360px;
    line-height: 1.7;
}

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

.footer-col-title {
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-link {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.social-icon {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.social-icon:hover {
    color: var(--accent-blue);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 2rem;
    }
    
    .section-container {
        padding: 100px 2rem;
    }
    
    .hero-h1 {
        font-size: 4rem;
    }
    
    .section-h2 {
        font-size: 3rem;
    }
}

@media (max-width: 1024px) {
    .hero-h1 {
        font-size: 3.5rem;
    }
    
    .hero-v2 {
        padding: 160px 2rem 100px;
    }
    
    .infographic-section {
        padding: 80px 2rem;
    }
    
    .infographic-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .neon-border-card {
        padding: 3rem;
    }
    
    .stat-mega-number {
        font-size: 5rem;
    }
    
    .stat-mega-label {
        font-size: 1.25rem;
    }
    
    .asset-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        padding: 4rem 3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 72px;
        padding: 0 1.5rem;
    }
    
    .nav-right {
        gap: 1rem;
    }
    
    .nav-link {
        display: none;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .hero-v2 {
        padding: 140px 1.5rem 80px;
    }
    
    .hero-h1 {
        font-size: 2.75rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-v2,
    .btn-secondary-v2 {
        width: 100%;
        justify-content: center;
    }
    
    .stats-bar {
        padding: 3rem 1.5rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .section-container {
        padding: 80px 1.5rem;
    }
    
    .section-h2 {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.0625rem;
    }
    
    .infographic-section {
        padding: 60px 1.5rem;
    }
    
    .infographic-grid {
        gap: 1.5rem;
    }
    
    .neon-border-card {
        padding: 2.5rem 1.5rem;
    }
    
    .stat-mega-number {
        font-size: 3.5rem;
    }
    
    .stat-mega-label {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-comparison-bar {
        padding: 1rem;
    }
    
    .comparison-text {
        font-size: 1rem;
    }
    
    .infographic-mini-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mini-info-card {
        padding: 1.5rem;
    }
    
    .mini-icon-neon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }
    
    .mini-icon-neon svg {
        width: 20px;
        height: 20px;
    }
    
    .mini-value {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .mini-label {
        font-size: 0.875rem;
    }
    
    .asset-grid {
        grid-template-columns: 1fr;
    }
    
    .asset-card {
        padding: 2rem;
    }
    
    .feature-card-v2 {
        padding: 2rem;
    }
    
    .cta-v2 {
        padding: 80px 1.5rem;
    }
    
    .cta-container {
        padding: 3rem 2rem;
    }
    
    .cta-title-v2 {
        font-size: 2.5rem;
    }
    
    .cta-subtitle-v2 {
        font-size: 1.0625rem;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .footer-v2 {
        padding: 4rem 1.5rem 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}
