/* Base Styles & CSS Variables */
:root {
    --bg-color: #1a0b1c; /* Deep dark purple */
    --text-primary: #ffffff;
    --text-secondary: #b39db8;
    --accent-magenta: #e82572;
    --accent-glow: rgba(232, 37, 114, 0.5);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Canvas Background */
#network-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* Container & Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

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

/* Glassmorphism Utilities */
.glass-section {
    background: transparent;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 37, 114, 0.3);
    box-shadow: 0 10px 30px rgba(232, 37, 114, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}

.pill-tag {
    background: rgba(232, 37, 114, 0.1);
    color: var(--accent-magenta);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    border: 1px solid rgba(232, 37, 114, 0.3);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #b39db8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-magenta);
    color: white;
    box-shadow: 0 0 20px var(--accent-glow);
    border: 1px solid var(--accent-magenta);
}

.btn-primary:hover {
    background: #ff3385;
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

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

/* Section Titles */
.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.glass-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glass-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.glass-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Roadmap */
.roadmap-timeline {
    max-width: 800px;
    margin: 4rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    padding-left: 2rem;
    border-left: 2px solid var(--glass-border);
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--glass-border);
}

.timeline-item.completed::before {
    background: var(--accent-magenta);
    box-shadow: 0 0 10px var(--accent-glow);
}

.timeline-item.in-progress::before {
    background: #fff;
}

.timeline-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item span {
    font-size: 0.8rem;
    font-weight: 400;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    background: var(--glass-bg);
    color: var(--text-secondary);
}

.timeline-item.completed span {
    color: var(--accent-magenta);
}

.timeline-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Footer */
footer {
    padding: 6rem 5% 3rem;
    text-align: center;
    background: transparent;
}

footer h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
    }
    .hero-title {
        font-size: 3rem;
    }
    .pill-tag {
        font-size: 0.8rem !important;
        margin-top: 1rem;
    }
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }
    .nav-links a {
        margin: 0 1rem;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
}


/* Gateway Banner */
.gateway-banner {
    background: rgba(30, 215, 96, 0.1);
    border-bottom: 1px solid rgba(30, 215, 96, 0.2);
    color: #1ed760;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.gateway-banner strong {
    color: #fff;
}
