/* AstroPal Marketing Website - Matches App Theme Exactly */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0d0d2b 100%);
    min-height: 100vh;
    color: #e0e0ff;
    overflow-x: hidden;
}

/* Animated starfield - same as app */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
nav {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(10, 10, 26, 0.98) 0%, rgba(10, 10, 26, 0.8) 100%);
    backdrop-filter: blur(10px);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(135deg, #ffd700, #ff6b9d, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #8888aa;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffd700;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffd700;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
}

.hero-content {
    max-width: 800px;
}

.hero-logo-container {
    margin: 0 auto 30px;
    animation: float 6s ease-in-out infinite;
}

.hero-logo-svg {
    filter: drop-shadow(0 0 30px rgba(192, 132, 252, 0.5));
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffd700, #ff6b9d, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.2rem;
    color: #8888aa;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #c0c0e0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mode badges */
.mode-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.mode-badge {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    min-width: 180px;
    text-align: center;
}

.mode-badge.basic {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
    color: #ffd700;
}

.mode-badge.advanced {
    background: rgba(192, 132, 252, 0.1);
    border: 1px solid #c084fc;
    color: #c084fc;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #0a0a1a;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
    background: rgba(192, 132, 252, 0.1);
    border: 1px solid #c084fc;
    color: #c084fc;
}

.btn-secondary:hover {
    background: rgba(192, 132, 252, 0.2);
}

.price-tag {
    color: #ffd700;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Stats Bar */
.stats-bar {
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(192, 132, 252, 0.2);
    border-bottom: 1px solid rgba(192, 132, 252, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, #ffd700, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #8888aa;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #ffd700, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(192, 132, 252, 0.2);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.feature-card p {
    color: #aaaacc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Who Benefits */
.who-benefits {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(192, 132, 252, 0.1);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    color: #c084fc;
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.benefit-card p {
    color: #8888aa;
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 100px 0;
    text-align: center;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 132, 252, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: #e0e0ff;
    transition: all 0.3s;
}

.store-btn:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.store-btn .icon {
    font-size: 2rem;
}

.store-btn .text {
    text-align: left;
}

.store-btn .small {
    font-size: 0.75rem;
    color: #8888aa;
}

.store-btn .big {
    font-size: 1.1rem;
    font-weight: 500;
}

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

footer p {
    color: #666688;
    font-size: 0.9rem;
}

footer a {
    color: #8888aa;
    text-decoration: none;
}

footer a:hover {
    color: #ffd700;
}

/* Mobile Responsive */
@media (max-width: 768px) {


    .menu-toggle {
        display: block;
    }

    nav .container {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 0.5rem 0 0;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
