/* AeroSpot - Cloudflare Pages Static Site Styles */

/* ========== CSS VARIABLES ========== */
:root {
    --aero-bg-default: #020B1A;
    --aero-bg-surface: #001A45;
    --aero-bg-card: #002D72;
    --aero-primary: #00FF7F;
    --aero-primary-hover: #00E070;
    --aero-text-primary: #FFFFFF;
    --aero-text-secondary: #8FA3C0;
    --aero-text-muted: #5C7496;
    --aero-border: rgba(255, 255, 255, 0.1);
}

/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--aero-bg-default);
    color: var(--aero-text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--aero-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--aero-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* ========== UTILITIES ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }
}

.text-gradient {
    background: linear-gradient(135deg, #00FF7F 0%, #00E070 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: 6rem 0;
}

@media (min-width: 640px) {
    .section {
        padding: 8rem 0;
    }
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    color: var(--aero-text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--aero-primary);
    color: var(--aero-bg-default);
}

.btn-primary:hover {
    background-color: var(--aero-primary-hover);
    transform: translateY(-1px);
    color: var(--aero-bg-default);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--aero-text-primary);
}

/* ========== NAVIGATION ========== */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(2, 11, 26, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--aero-border);
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--aero-text-primary);
}

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

.nav-logo svg {
    width: 24px;
    height: 24px;
    color: var(--aero-primary);
}

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

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.nav-link.active {
    color: var(--aero-primary);
}

.nav-cta {
    display: none;
}

@media (min-width: 768px) {
    .nav-cta {
        display: inline-flex;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--aero-text-primary);
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 4rem;
    left: 0;
    right: 0;
    background: rgba(2, 11, 26, 0.95);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-bottom: 1px solid var(--aero-border);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--aero-text-secondary);
}

.mobile-menu a:hover {
    color: var(--aero-text-primary);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 4rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 11, 26, 0.85) 0%, rgba(2, 11, 26, 0.7) 50%, rgba(2, 11, 26, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 0;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-tagline {
    color: var(--aero-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .hero-tagline {
        font-size: 1.5rem;
    }
}

.hero-description {
    color: var(--aero-text-secondary);
    max-width: 600px;
    margin: 0 auto 1rem;
}

.hero-coming-soon {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-screenshot {
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;
    border: 1px solid var(--aero-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 255, 127, 0.15);
    overflow: hidden;
}

.hero-screenshot-placeholder {
    background: var(--aero-bg-surface);
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-screenshot-placeholder svg {
    width: 4rem;
    height: 4rem;
    color: var(--aero-primary);
    margin-bottom: 1rem;
}

.hero-screenshot-placeholder span {
    color: var(--aero-text-muted);
    font-size: 0.875rem;
}

/* ========== ABOUT SECTION ========== */
.about {
    background: var(--aero-bg-default);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 5fr 7fr;
    }
}

.about-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 45, 114, 0.3) 0%, rgba(2, 11, 26, 0.5) 100%);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

@media (min-width: 640px) {
    .about-content h2 {
        font-size: 3rem;
    }
}

.about-content p {
    color: var(--aero-text-secondary);
    margin-bottom: 1rem;
}

.about-content p:first-of-type {
    font-size: 1.125rem;
}

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.about-badge {
    background: rgba(0, 26, 69, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--aero-border);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
}

.about-badge-value {
    color: var(--aero-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
}

.about-badge-label {
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
}

/* ========== FEATURES SECTION ========== */
.features {
    background: rgba(0, 26, 69, 0.3);
}

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

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: var(--aero-bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 127, 0.5);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 127, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--aero-primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
}

/* ========== COMPETE & COLLECT SECTION ========== */
.compete {
    background: var(--aero-bg-default);
}

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

@media (min-width: 768px) {
    .compete-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.crew-card {
    background: var(--aero-bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.crew-card:hover {
    border-color: rgba(0, 255, 127, 0.3);
    transform: translateY(-2px);
}

.crew-card-featured {
    background: linear-gradient(135deg, #001A45 0%, #002D72 100%);
    border: 1px solid rgba(0, 255, 127, 0.2);
    padding: 2rem;
}

@media (min-width: 768px) {
    .crew-card-featured {
        grid-row: span 2;
    }
}

.crew-card-featured:hover {
    border-color: rgba(0, 255, 127, 0.5);
}

.crew-card-wide {
    grid-column: 1 / -1;
}

.crew-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 127, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.crew-icon svg {
    width: 24px;
    height: 24px;
    color: var(--aero-primary);
}

.crew-icon-featured {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 127, 0.15);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.crew-icon-featured svg {
    width: 32px;
    height: 32px;
}

.crew-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.crew-card-featured h3 {
    font-size: 1.5rem;
}

@media (min-width: 640px) {
    .crew-card-featured h3 {
        font-size: 1.875rem;
    }
}

.crew-card p {
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
}

.crew-card-featured p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.crew-avatars {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.crew-avatar-group {
    display: flex;
    margin-left: -0.5rem;
}

.crew-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--aero-bg-card);
    border: 2px solid var(--aero-bg-default);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: -0.5rem;
}

.crew-avatar:first-child {
    margin-left: 0;
}

.crew-avatar-plus {
    background: var(--aero-primary);
    color: var(--aero-bg-default);
}

.crew-avatars span {
    color: var(--aero-text-muted);
    font-size: 0.875rem;
}

.collection-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.collection-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 127, 0.15);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 9999px;
    font-size: 0.75rem;
    color: var(--aero-primary);
    font-weight: 500;
}

.collection-badge-empty {
    background: transparent;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: var(--aero-text-muted);
}

.progress-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.progress-track {
    flex-grow: 1;
    height: 8px;
    background: var(--aero-bg-surface);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(to right, var(--aero-primary), var(--aero-primary-hover));
    border-radius: 9999px;
}

.progress-value {
    color: var(--aero-primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.progress-label {
    color: var(--aero-text-muted);
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.challenge-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.challenge-badge {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 26, 69, 0.8);
    border: 1px solid var(--aero-border);
    border-radius: 0.5rem;
}

.challenge-badge-status {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
}

.challenge-badge-status.active {
    color: var(--aero-primary);
}

.challenge-badge-name {
    font-size: 0.875rem;
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.how-it-works-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 11, 26, 0.85);
}

.how-it-works .container {
    position: relative;
    z-index: 10;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.step-card {
    background: rgba(0, 26, 69, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid var(--aero-border);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: border-color 0.3s ease;
}

@media (min-width: 640px) {
    .step-card {
        padding: 2rem;
    }
}

.step-card:hover {
    border-color: rgba(0, 255, 127, 0.3);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--aero-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
}

/* ========== PRICING SECTION ========== */
.pricing {
    background: rgba(0, 26, 69, 0.3);
}

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

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pricing-card {
    background: var(--aero-bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card-highlighted {
    background: linear-gradient(135deg, #001A45 0%, #002D72 50%, #001A45 100%);
    border: 2px solid rgba(0, 255, 127, 0.5);
    box-shadow: 0 0 60px rgba(0, 255, 127, 0.1);
}

.pricing-card-highlighted:hover {
    box-shadow: 0 0 80px rgba(0, 255, 127, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aero-primary);
    color: var(--aero-bg-default);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    text-transform: uppercase;
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card-highlighted .pricing-icon {
    background: rgba(0, 255, 127, 0.2);
}

.pricing-icon svg {
    width: 20px;
    height: 20px;
    color: var(--aero-text-secondary);
}

.pricing-card-highlighted .pricing-icon svg {
    color: var(--aero-primary);
}

.pricing-name {
    font-size: 1.25rem;
}

.pricing-price {
    margin-bottom: 1rem;
}

.pricing-amount {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
}

.pricing-period {
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
}

.pricing-description {
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--aero-text-muted);
}

.pricing-card-highlighted .pricing-features li svg {
    color: var(--aero-primary);
}

.pricing-cta {
    width: 100%;
}

.pricing-note {
    text-align: center;
    color: var(--aero-text-muted);
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* ========== FAQ SECTION ========== */
.faq {
    background: var(--aero-bg-default);
}

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

.faq-item {
    border-bottom: 1px solid var(--aero-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1rem;
    background: none;
    border: none;
    color: var(--aero-text-primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

@media (min-width: 640px) {
    .faq-question {
        font-size: 1.125rem;
    }
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--aero-text-secondary);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1rem 1.25rem;
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .faq-answer {
        font-size: 1rem;
    }
}

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

/* ========== FOOTER ========== */
.footer {
    background: var(--aero-bg-default);
    border-top: 1px solid var(--aero-border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    color: var(--aero-text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.footer-column h4 {
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--aero-border);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--aero-text-muted);
    font-size: 0.875rem;
}

/* ========== MODAL ========== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--aero-bg-surface);
    border: 1px solid var(--aero-border);
    border-radius: 1rem;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--aero-text-secondary);
    cursor: pointer;
    padding: 0.25rem;
}

.modal-close:hover {
    color: var(--aero-text-primary);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.modal-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 255, 127, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon svg {
    width: 20px;
    height: 20px;
    color: var(--aero-primary);
}

.modal-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
}

.modal-description {
    color: var(--aero-text-secondary);
    margin-bottom: 1.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    position: relative;
}

.input-group svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--aero-text-muted);
}

.input-group input {
    width: 100%;
    background: var(--aero-bg-default);
    border: 1px solid var(--aero-border);
    border-radius: 12px;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    color: var(--aero-text-primary);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.input-group input:focus {
    outline: none;
    border-color: rgba(0, 255, 127, 0.5);
}

.input-group input::placeholder {
    color: var(--aero-text-muted);
}

.modal-note {
    color: var(--aero-text-muted);
    font-size: 0.75rem;
    text-align: center;
}

.modal-success {
    text-align: center;
    padding: 2rem 0;
}

.modal-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 255, 127, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.modal-success-icon svg {
    width: 32px;
    height: 32px;
    color: var(--aero-primary);
}

.modal-success h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.modal-success p {
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
}

/* ========== PAGE HEADER (for subpages) ========== */
.page-header {
    padding-top: 8rem;
    padding-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .page-title {
        font-size: 3rem;
    }
}

.page-meta {
    color: var(--aero-text-muted);
    font-size: 0.875rem;
}

/* ========== LEGAL CONTENT ========== */
.legal-content {
    padding-bottom: 4rem;
}

.legal-content section {
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-content p {
    color: var(--aero-text-secondary);
    margin-bottom: 1rem;
}

.legal-content ul {
    color: var(--aero-text-secondary);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--aero-text-primary);
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--aero-text-secondary);
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 255, 127, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
    color: var(--aero-primary);
}

.contact-method-text span {
    display: block;
    color: var(--aero-text-muted);
    font-size: 0.875rem;
}

.contact-form {
    background: var(--aero-bg-surface);
    border: 1px solid var(--aero-border);
    border-radius: 1rem;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--aero-bg-default);
    border: 1px solid var(--aero-border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--aero-text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 255, 127, 0.5);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animation-delay-100 { animation-delay: 0.1s; }
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-300 { animation-delay: 0.3s; }
.animation-delay-400 { animation-delay: 0.4s; }


/* ========== REGIONS / GLOBAL ROLLOUT SECTION ========== */
.regions-hero {
    background: linear-gradient(180deg, var(--aero-bg-default) 0%, #01132e 100%);
    position: relative;
    overflow: hidden;
}

.regions-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(50,215,75,0.08), transparent 40%),
        radial-gradient(circle at 75% 65%, rgba(100,210,255,0.08), transparent 45%),
        radial-gradient(circle at 55% 20%, rgba(255,159,10,0.06), transparent 40%);
    pointer-events: none;
}

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

.regions-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.regions-stats-row .stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--aero-border);
    border-radius: 1rem;
    padding: 1.25rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.regions-stats-row .stat-card .val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--aero-primary);
    display: block;
    line-height: 1;
}

.regions-stats-row .stat-card .lbl {
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
    margin-top: 0.35rem;
    display: block;
}

/* World Map Visual */
.world-map-wrap {
    position: relative;
    max-width: 960px;
    margin: 0 auto 3.5rem;
    aspect-ratio: 2 / 1;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--aero-border);
    border-radius: 1.25rem;
    overflow: hidden;
    padding: 1rem;
}

.world-map-wrap svg {
    width: 100%;
    height: 100%;
    display: block;
}

.map-dot {
    transition: transform .3s ease, filter .3s ease;
    cursor: pointer;
    transform-origin: center;
    transform-box: fill-box;
}

.map-dot:hover {
    transform: scale(1.35);
    filter: drop-shadow(0 0 10px currentColor);
}

.map-pulse {
    animation: mapPulse 2.2s ease-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes mapPulse {
    0%   { transform: scale(1);   opacity: .6; }
    70%  { transform: scale(3.2); opacity: 0; }
    100% { transform: scale(3.2); opacity: 0; }
}

.map-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.map-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--aero-text-secondary);
}

.map-legend-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: inline-block;
}

/* Country Accordion */
.country-accordion {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.country-acc-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--aero-border);
    border-radius: 0.875rem;
    overflow: hidden;
    transition: border-color .25s ease, background .25s ease;
}

.country-acc-item:hover { background: rgba(255,255,255,0.05); }

.country-acc-item[data-region="oceania"]       { border-left: 3px solid #32D74B; }
.country-acc-item[data-region="asia"]          { border-left: 3px solid #FF9F0A; }
.country-acc-item[data-region="europe"]        { border-left: 3px solid #64D2FF; }
.country-acc-item[data-region="north-america"] { border-left: 3px solid #FF453A; }

.country-acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    color: var(--aero-text-primary);
    font-family: inherit;
    text-align: left;
}

.country-acc-head-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.country-acc-head-left .region-name {
    font-size: 1.125rem;
    font-weight: 700;
}

.country-acc-head-left .region-desc {
    color: var(--aero-text-secondary);
    font-size: 0.875rem;
}

.country-acc-head-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--aero-text-secondary);
    font-size: 0.85rem;
}

.country-acc-badge {
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.country-acc-badge.launch  { background: rgba(50,215,75,0.15);  color: #32D74B; border: 1px solid rgba(50,215,75,0.3); }
.country-acc-badge.phase1  { background: rgba(100,210,255,0.15); color: #64D2FF; border: 1px solid rgba(100,210,255,0.3); }
.country-acc-badge.future  { background: rgba(175,82,222,0.15); color: #AF52DE; border: 1px solid rgba(175,82,222,0.3); }

.country-acc-chevron {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    max-width: 20px;
    min-height: 20px;
    max-height: 20px;
    flex-shrink: 0;
    transition: transform .25s ease;
    color: var(--aero-text-secondary);
}

.country-acc-item.open .country-acc-chevron { transform: rotate(180deg); }

.country-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.country-acc-item.open .country-acc-body { max-height: 600px; }

.country-acc-body-inner {
    padding: 0.25rem 1.25rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.5rem;
}

.country-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--aero-border);
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--aero-text-primary);
}

@media (max-width: 640px) {
    .regions-stats-row { grid-template-columns: repeat(3,1fr); gap: 0.5rem; }
    .regions-stats-row .stat-card { padding: 0.9rem 0.5rem; }
    .regions-stats-row .stat-card .val { font-size: 1.4rem; }
    .country-acc-head { padding: 0.85rem 1rem; }
    .country-acc-head-left .region-name { font-size: 1rem; }
}



/* ========== ROLLOUT TABLE ========== */
.rollout-table-wrap {
    overflow-x: auto;
    margin: 2rem 0;
}

.rollout-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.02);
    border-radius: 1rem;
    overflow: hidden;
}

.rollout-table thead {
    background: rgba(255,255,255,0.05);
}

.rollout-table th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--aero-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--aero-border);
}

.rollout-table td {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--aero-text-primary);
    border-bottom: 1px solid var(--aero-border);
    vertical-align: middle;
}

.rollout-table tbody tr:last-child td {
    border-bottom: none;
}

.rollout-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.region-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.status-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.status-badge.status-launch {
    background: rgba(50, 215, 75, 0.2);
    color: #32D74B;
}

.status-badge.status-phase1 {
    background: rgba(100, 210, 255, 0.2);
    color: #64D2FF;
}

.status-badge.status-future {
    background: rgba(175, 82, 222, 0.2);
    color: #AF52DE;
}

@media (max-width: 640px) {
    .rollout-table th,
    .rollout-table td {
        padding: 0.75rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .rollout-table th:nth-child(2),
    .rollout-table td:nth-child(2),
    .rollout-table th:nth-child(3),
    .rollout-table td:nth-child(3) {
        display: none;
    }
}
