/**
 * AstroSEVA Marketing & Landing Styles
 */

:root {
    --bg-dark: #0f172a;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --glass: rgba(30, 41, 59, 0.7);
}

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

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

/* Background Stars Effect */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.3;
    pointer-events: none;
    inset: 0;
}

/* Marketing Logo */
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-primary);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.15), transparent 40%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.1), transparent 40%);
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero p {
    font-size: clamp(1rem, 4vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 40px;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

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

/* Policy/Content Layout */
.policy-container {
    max-width: 800px;
    margin-top: 120px;
    margin: 120px auto 60px;
    padding: 60px;
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.policy-container h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    margin-bottom: 40px;
    color: #fff;
}

.policy-content {
    color: var(--text-secondary);
    line-height: 1.8;
}

.policy-content h2 {
    color: #fff;
    margin: 40px 0 20px;
    font-size: 1.5rem;
}

.policy-content p {
    margin-bottom: 1.5rem;
}

/* Global Footer */
footer {
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 40px 0;
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--accent);
}

.marketing-header {
    position: relative;
    z-index: 10;
    padding: 16px 0;
}

.marketing-header .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: #cbd5f5;
    font-size: 14px;
    transition: 0.2s;
}

.nav-links a:hover {
    color: white;
}

.policy-content h3 {
    margin-top: 20px;
    color: #fff;
    font-size: 1.1rem;
}

@media (max-width: 768px) {

    .hero h1 {
        letter-spacing: -1px;
    }

    /* Fix header spacing */
    .marketing-header {
        padding: 12px 0;
    }

    .nav-links {
        display: none;
    }

    .marketing-header .container {
        padding: 0 16px;
    }

    /* Ensure logo is fully visible */
    .logo {
        font-size: 18px;
    }

    /* Policy container mobile optimization */
    .policy-container {
        margin-top: 90px;
        margin: 80px 16px 40px;
        padding: 28px 20px;
        border-radius: 20px;
    }

    /* Heading scale */
    .policy-container h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .policy-content h2 {
        font-size: 1.25rem;
        margin: 28px 0 14px;
    }

    /* Text readability */
    .policy-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Reduce list spacing */
    .policy-content ul {
        padding-left: 18px;
    }

    .policy-content li {
        margin-bottom: 6px;
    }
}