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

body {
    font-family: 'Exo 2', sans-serif;
    background: #0a0e17;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 40, 83, 0.3) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 80, 120, 0.2) 0%, transparent 20%);
}

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

/* Header */
header {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 150, 255, 0.2);
}

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

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #00d4ff, #0088ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
}

.logo span {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.tagline {
    font-size: 1.2rem;
    color: #88aaff;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 60px 0;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
    background: linear-gradient(90deg, #ffffff, #88ddff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lead {
    font-size: 1.3rem;
    color: #bbccff;
    margin-bottom: 35px;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

.btn-primary {
    background: linear-gradient(90deg, #0088ff, #00ccff);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 136, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
}

.btn-secondary:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateY(-3px);
}

/* Hero Graphic */
.hero-graphic {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbital-animation {
    width: 200px;
    height: 200px;
    position: relative;
}

.orbit {
    width: 160px;
    height: 160px;
    border: 2px dashed rgba(0, 150, 255, 0.6);
    border-radius: 50%;
    position: absolute;
    top: 20px;
    left: 20px;
    animation: spin 20s linear infinite;
}

.planet {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0088ff, #0044aa);
    border-radius: 50%;
    position: absolute;
    top: 70px;
    left: 70px;
    box-shadow: 0 0 30px rgba(0, 136, 255, 0.5);
}

.satellite {
    width: 20px;
    height: 20px;
    background: #00ff88;
    border-radius: 50%;
    position: absolute;
    top: 90px;
    left: 170px;
    box-shadow: 0 0 15px #00ff88;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Vision Section */
.vision {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vision h3, .status h3, .contact h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #88ddff;
    text-align: center;
}

.vision > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: #ccddff;
}

.pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.pillar {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: rgba(20, 30, 50, 0.6);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0, 150, 255, 0.3);
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
}

.pillar i {
    font-size: 2.5rem;
    color: #00ccff;
    margin-bottom: 20px;
}

.pillar h4 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 15px;
    color: #ffffff;
}

.pillar p {
    color: #aaccff;
    font-size: 0.95rem;
}

/* Applications Section */
.applications {
    padding: 50px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.app-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.app-card {
    flex: 1;
    min-width: 250px;
    background: rgba(30, 40, 70, 0.5);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(0,150,255,0.2);
}

.app-card h4 {
    color: #88ddff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.app-note {
    text-align: center;
    font-style: italic;
    color: #8899cc;
    margin-top: 20px;
}

/* Status Section */
.status {
    padding: 60px 0;
}

.status-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(10, 25, 50, 0.7);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.pulse {
    width: 15px;
    height: 15px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.status-indicator span {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    letter-spacing: 1px;
}

.status-card p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.highlight {
    background: rgba(0, 255, 136, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #00ff88;
    color: #ccffcc;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact > p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.contact-info {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 100, 255, 0.1);
    padding: 20px 30px;
    border-radius: 50px;
    margin: 20px 0;
    border: 1px solid rgba(0, 150, 255, 0.3);
}

.contact-info i {
    font-size: 1.5rem;
    color: #00ccff;
}

.contact-info a {
    font-size: 1.3rem;
    color: #88ddff;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    color: #00ff88;
    text-decoration: underline;
}

.notice {
    font-size: 0.9rem;
    color: #8888ff;
    font-style: italic;
    margin-top: 20px;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 150, 255, 0.2);
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    color: #8899cc;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

.copyright {
    color: #6677aa;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .btn-primary, .btn-secondary {
        min-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .pillar, .app-card {
        min-width: 100%;
    }
}
/* Updates & Newsletter */
.updates {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.updates h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #88ddff;
}

.updates-subtitle {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #bbccff;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(0,150,255,0.4);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-family: 'Exo 2', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0,255,136,0.3);
}

.newsletter-btn {
    padding: 18px 30px;
    background: linear-gradient(90deg, #0088ff, #00aaff);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: not-allowed;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.small-note {
    font-size: 0.85rem;
    color: #8899cc;
    font-style: italic;
    margin-top: 15px;
}

/* Advisory Board */
.advisory {
    padding: 70px 0;
}

.advisory h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #88ddff;
    text-align: center;
}

.advisory-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #bbccff;
    font-size: 1.1rem;
}

.advisors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.advisor-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(20, 30, 60, 0.7);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(0, 150, 255, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.advisor-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.advisor-icon {
    font-size: 2.5rem;
    color: #00ccff;
    margin-bottom: 20px;
}

.advisor-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.advisor-role {
    color: #88ddff;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.advisor-bio {
    color: #aaccff;
    font-size: 0.9rem;
    line-height: 1.5;
}

.advisory-note {
    text-align: center;
    font-size: 0.8rem;
    color: #6677aa;
    font-style: italic;
    max-width: 600px;
    margin: 30px auto 0;
}

/* Metrics Section */
.metrics {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.metrics h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #88ddff;
}

.metrics-subtitle {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #bbccff;
    font-size: 1.1rem;
}

.counters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.counter {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.counter .count {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #00ff88, #0088ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 10px;
}

.counter p {
    color: #aaccff;
    font-size: 0.95rem;
}

.metrics-note {
    font-size: 0.8rem;
    color: #6677aa;
    font-style: italic;
    max-width: 500px;
    margin: 20px auto 0;
}
