/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

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

:root {
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --primary: #00f0ff;
    --secondary: #ff00aa;
    --accent: #00ff88;
    --text: #e0e0e0;
    --text-dim: #888;
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5);
    --glow-magenta: 0 0 20px rgba(255, 0, 170, 0.5);
    --glow-green: 0 0 20px rgba(0, 255, 136, 0.5);
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-dark);
    min-height: 100vh;
}

/* Scanline Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 2px,
        rgba(0, 0, 0, 0.1) 4px
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

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

/* Navbar */
.navbar {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary);
    text-shadow: var(--glow-cyan);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

.nav-links a:hover {
    color: var(--primary);
    text-shadow: var(--glow-cyan);
}

.btn-nav {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.btn-nav:hover {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
}

.btn-primary:hover {
    background: #00d4e0;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.7);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    box-shadow: var(--glow-magenta);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 0, 170, 0.1) 0%, transparent 50%),
        var(--bg-dark);
    color: white;
    padding: 180px 20px 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Grid Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    letter-spacing: 4px;
}

.hero .lead {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-dim);
    font-weight: 400;
}

.hero .subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Glow Orb */
.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.glow-orb.cyan {
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.glow-orb.magenta {
    background: var(--secondary);
    bottom: -100px;
    right: -100px;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 30px); }
}

/* Features */
.features {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.features h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary);
    letter-spacing: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.7;
}

/* Protocols Section */
.protocols {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d15 100%);
}

.protocols h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--secondary);
    letter-spacing: 3px;
}

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

.protocol-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 170, 0.2);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.protocol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.protocol-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--glow-magenta);
}

.protocol-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.protocol-card p {
    color: var(--text-dim);
    line-height: 1.7;
}

.protocol-badge {
    display: inline-block;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 16px;
    font-family: 'Orbitron', sans-serif;
}

/* Location Section */
.location {
    padding: 80px 20px;
    background: var(--bg-card);
    text-align: center;
}

.location h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--accent);
    letter-spacing: 3px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--accent);
    padding: 20px 40px;
    border-radius: 8px;
    font-size: 1.3rem;
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
}

.location-note {
    margin-top: 30px;
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.how-it-works h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary);
    letter-spacing: 3px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 24px;
    box-shadow: var(--glow-cyan);
}

.step h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.step p {
    color: var(--text-dim);
}

.step::after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 25px;
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.5;
}

.step:last-child::after {
    display: none;
}

/* Pricing */
.pricing {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.pricing h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--secondary);
    letter-spacing: 3px;
}

.pricing-card {
    background: var(--bg-card);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 170, 0.2);
    max-width: 400px;
    margin: 0 auto 30px;
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: var(--glow-cyan);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text);
}

.price {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    text-shadow: var(--glow-cyan);
}

.price span {
    font-size: 1rem;
    color: var(--text-dim);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-dim);
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent);
    margin-right: 12px;
    font-weight: bold;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* FAQ */
.faq {
    padding: 100px 20px;
    background: var(--bg-card);
}

.faq h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary);
    letter-spacing: 3px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-dark);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

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

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-dim);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
.footer {
    background: #050508;
    color: var(--text-dim);
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
}

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

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

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

.footer p {
    font-size: 0.9rem;
}

/* Status Section */
.status {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.status h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--accent);
    letter-spacing: 3px;
}

.status-overview {
    text-align: center;
    margin-bottom: 60px;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--accent);
    border-radius: 8px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: var(--glow-green);
}

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

.status-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--accent);
}

/* Docs */
.docs {
    padding: 100px 20px;
    background: var(--bg-dark);
}

.docs h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--secondary);
    letter-spacing: 3px;
}

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

.doc-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 170, 0.2);
}

.doc-card h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 16px;
    color: var(--secondary);
}

.doc-card ol,
.doc-card ul {
    padding-left: 20px;
    color: var(--text-dim);
}

.doc-card li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .step::after {
        display: none;
    }
    
    .steps {
        gap: 30px;
    }
}
