@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
}

header {
    background: #0a0a0a;
    box-shadow: none;
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 0.95rem;
}

nav a:hover {
    color: #999;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 2rem;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.1;
}

.tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 2rem;
}

.description {
    font-size: 1.1rem;
    font-weight: 300;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    background: #ffffff;
    color: #0a0a0a;
    padding: 1.25rem 3rem;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-primary:hover {
    background: #0a0a0a;
    color: #ffffff;
}

.features {
    padding: 4rem 2rem;
}

.features h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    padding: 2rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 0;
}

.feature h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature p {
    font-weight: 300;
    line-height: 1.7;
    color: #ccc;
}

.approach {
    padding: 4rem 2rem;
    background: #1a1a1a;
    border-radius: 0;
    margin: 2rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.approach h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.approach p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #ccc;
    line-height: 1.8;
}

.cta-bottom {
    text-align: center;
    padding: 4rem 2rem;
}

.cta-bottom h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

footer {
    background: #0a0a0a;
    color: white;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-content p {
    font-weight: 300;
    font-size: 0.9rem;
    color: #999;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fff;
}

footer ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

footer a {
    color: #ccc;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
}

footer a:hover {
    color: #fff;
}

/* Legal pages */
.legal-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.legal-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.legal-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.legal-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ccc;
}

.legal-content p, .legal-content li {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-weight: 300;
    color: #ccc;
}

.legal-content strong {
    color: #fff;
    font-weight: 600;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.last-updated {
    color: #999;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .features h2 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-left {
        width: 100%;
    }
    
    footer ul {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .logo {
        font-size: 1.75rem;
    }
}
