/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066cc;
    --secondary: #00a6ff;
    --dark: #000000;
    --dark-blue: #0a0e27;
    --darker-blue: #050814;
    --light: #ffffff;
    --gray: #888888;
    --light-gray: #d0d0d0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--light);
    background: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-svg {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.cta-button {
    background: var(--primary);
    padding: 10px 24px;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--secondary);
    color: var(--light) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
}

.space-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 60px 70px, white, transparent),
        radial-gradient(1px 1px at 50px 50px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 90px 10px, white, transparent),
        radial-gradient(1px 1px at 150px 120px, white, transparent),
        radial-gradient(1px 1px at 200px 90px, white, transparent),
        radial-gradient(2px 2px at 250px 140px, white, transparent),
        radial-gradient(1px 1px at 300px 50px, white, transparent),
        radial-gradient(1px 1px at 180px 170px, white, transparent);
    background-size: 400px 400px, 600px 600px, 500px 500px, 700px 700px, 550px 550px, 
                     650px 650px, 450px 450px, 750px 750px, 850px 850px, 950px 950px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 200px 50px,
                         150px 250px, 300px 150px, 100px 300px, 250px 200px, 350px 100px;
    background-repeat: repeat;
    animation: twinkle 200s linear infinite;
    z-index: 0;
}

@keyframes twinkle {
    from { background-position: 0 0, 40px 60px, 130px 270px, 70px 100px, 200px 50px,
                                150px 250px, 300px 150px, 100px 300px, 250px 200px, 350px 100px; }
    to { background-position: -1000px 1000px, -960px 1060px, -870px 1270px, -930px 1100px, -800px 1050px,
                              -850px 1250px, -700px 1150px, -900px 1300px, -750px 1200px, -650px 1100px; }
}

.particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 102, 204, 0.03) 2px,
            rgba(0, 102, 204, 0.03) 4px
        );
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-logo-large {
    margin-bottom: 32px;
    animation: float 6s ease-in-out infinite;
}

.hero-logo-svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 30px rgba(0, 166, 255, 0.5));
}

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

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

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #00a6ff 50%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(0, 166, 255, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(0, 166, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(0, 166, 255, 0.6));
    }
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 28px);
    color: var(--light-gray);
    font-weight: 300;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-mini {
    display: flex;
    gap: 48px;
    justify-content: center;
    margin: 48px 0;
    flex-wrap: wrap;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mini-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    text-shadow: 0 0 20px rgba(0, 166, 255, 0.5);
}

.mini-stat-label {
    font-size: 12px;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 166, 255, 0.4);
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 60px rgba(0, 166, 255, 0.6);
}

.hero-button svg {
    transition: transform 0.3s;
}

.hero-button:hover svg {
    transform: translateX(4px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translate(-50%, 0); }
    50% { opacity: 0.5; transform: translate(-50%, 12px); }
}

/* Section Styles */
.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background: var(--dark-blue);
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
}

.section-lead {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--light-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-top: 80px;
}

.stat {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 166, 255, 0.05) 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.5), rgba(0, 166, 255, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.stat:hover::before {
    opacity: 1;
}

.stat:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 166, 255, 0.1) 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 166, 255, 0.3);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.problem-card {
    padding: 48px;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(5, 8, 20, 0.9) 100%);
    border: 2px solid rgba(0, 166, 255, 0.2);
    border-radius: 20px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.problem-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 166, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.problem-card:hover::after {
    opacity: 1;
}

.problem-card:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 166, 255, 0.15) 100%);
    border-color: var(--secondary);
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 166, 255, 0.4);
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.problem-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.problem-card p {
    color: var(--light-gray);
    line-height: 1.8;
}

.quote {
    margin-top: 80px;
    padding: 40px;
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    font-style: italic;
    color: var(--light-gray);
    border-left: 4px solid var(--primary);
    background: rgba(0, 102, 204, 0.05);
}

/* Comparison Table */
.comparison-table {
    max-width: 900px;
    margin: 64px auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.05);
}

.comparison-col {
    padding: 24px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.comparison-col.highlight {
    background: rgba(0, 102, 204, 0.1);
    color: var(--secondary);
}

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

.comparison-row .comparison-col {
    padding: 20px 24px;
    font-weight: 400;
    font-size: 16px;
}

/* Architecture */
.architecture {
    margin-top: 80px;
}

.architecture h3 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
}

.architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.arch-card {
    padding: 48px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 166, 255, 0.08) 100%);
    border: 2px solid rgba(0, 166, 255, 0.3);
    border-radius: 20px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.arch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 255, 0.2), transparent);
    transition: left 0.6s;
}

.arch-card:hover::before {
    left: 100%;
}

.arch-card:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 166, 255, 0.15) 100%);
    border-color: var(--secondary);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 166, 255, 0.5);
}

.arch-number {
    position: absolute;
    top: -24px;
    left: 48px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 166, 255, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 166, 255, 0.5);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 166, 255, 0.8);
    }
}

.arch-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 24px 0 16px;
}

.arch-card p {
    color: var(--light-gray);
    line-height: 1.8;
}

.philosophy {
    padding: 32px;
    background: rgba(0, 102, 204, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: 4px;
    font-size: 18px;
    line-height: 1.8;
}

.philosophy strong {
    color: var(--secondary);
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 64px auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00a6ff 0%, #00ffaa 50%, #ff6b6b 100%);
    box-shadow: 0 0 20px rgba(0, 166, 255, 0.4);
}

.timeline-item {
    position: relative;
    padding-left: 48px;
    margin-bottom: 48px;
    transition: transform 0.3s;
}

.timeline-item:hover {
    transform: translateX(8px);
}

.timeline-item:nth-child(1) .timeline-marker {
    background: linear-gradient(135deg, #00a6ff, #0088ff);
    box-shadow: 0 0 30px rgba(0, 166, 255, 0.8), 0 0 0 4px rgba(0, 8, 20, 0.9);
}

.timeline-item:nth-child(2) .timeline-marker {
    background: linear-gradient(135deg, #00d4ff, #00ffcc);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 0 4px rgba(0, 8, 20, 0.9);
}

.timeline-item:nth-child(3) .timeline-marker {
    background: linear-gradient(135deg, #00ffaa, #00cc88);
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.8), 0 0 0 4px rgba(0, 8, 20, 0.9);
}

.timeline-item:nth-child(4) .timeline-marker {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.8), 0 0 0 4px rgba(0, 8, 20, 0.9);
}

.timeline-marker {
    position: absolute;
    left: -8px;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.timeline-content {
    background: linear-gradient(135deg, rgba(0, 166, 255, 0.08) 0%, rgba(0, 204, 136, 0.08) 100%);
    border: 1px solid rgba(0, 166, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.timeline-item:hover .timeline-content {
    background: linear-gradient(135deg, rgba(0, 166, 255, 0.12) 0%, rgba(0, 204, 136, 0.12) 100%);
    border-color: rgba(0, 255, 170, 0.4);
    box-shadow: 0 8px 32px rgba(0, 166, 255, 0.2);
}

.timeline-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-content p {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.why-now-conclusion {
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    margin-top: 80px;
    padding: 32px;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 8px;
}

.why-now-conclusion strong {
    color: var(--secondary);
}

/* Roadmap */
.roadmap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 64px 0;
    flex-wrap: wrap;
}

.roadmap-phase {
    flex: 1;
    min-width: 200px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s;
}

.roadmap-phase:hover {
    background: rgba(0, 102, 204, 0.05);
    border-color: var(--primary);
    transform: translateY(-8px);
}

.phase-year {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.roadmap-phase h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.roadmap-phase p {
    color: var(--light-gray);
    font-size: 14px;
    line-height: 1.6;
}

.roadmap-arrow {
    font-size: 32px;
    color: var(--primary);
}

/* Market Opportunity */
.market-opportunity {
    margin-top: 80px;
    padding: 64px 0;
    text-align: center;
}

.market-opportunity h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.market-stat {
    padding: 32px;
    background: rgba(0, 102, 204, 0.05);
    border: 1px solid rgba(0, 102, 204, 0.3);
    border-radius: 12px;
}

.market-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.market-label {
    color: var(--light-gray);
    font-size: 16px;
}

/* Contact */
.contact-lead {
    text-align: center;
    font-size: 24px;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto 64px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.contact-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    background: rgba(0, 102, 204, 0.05);
    border-color: var(--primary);
    transform: translateY(-8px);
}

.contact-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-card p {
    color: var(--light-gray);
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    transition: all 0.3s;
}

.contact-link:hover {
    background: var(--primary);
    color: var(--light);
}

/* Footer */
.footer {
    padding: 64px 0 32px;
    background: var(--darker-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--light-gray);
    font-size: 16px;
    margin-bottom: 32px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.footer-copy {
    color: var(--gray);
    font-size: 14px;
}

/* Responsive */
/* Additional Enhancements */
.section {
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 166, 255, 0.5), transparent);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
        font-size: 12px;
    }
    
    .hero-stats-mini {
        gap: 24px;
    }
    
    .mini-stat-value {
        font-size: 24px;
    }
    
    .hero-logo-svg {
        width: 80px;
        height: 80px;
    }
    
    .roadmap {
        flex-direction: column;
    }
    
    .roadmap-arrow {
        transform: rotate(90deg);
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .timeline::before {
        left: 8px;
    }
    
    .timeline-marker {
        left: 0;
    }
}
