/* style.css */
:root {
    --bg-dark: #020617;
    --bg-card: #1e293b;
    --text-main: #F8FAFC;
    --text-muted: #94A3B8;
    --accent: #22D3EE;
    --accent-glow: rgba(34, 211, 238, 0.4);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
}

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    background-color: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo { font-weight: 800; font-size: 1.2rem; letter-spacing: 1px; color: var(--text-main); text-decoration: none; }
.logo span { color: var(--accent); }

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 24px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* --- HERO SECTION --- */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

/* Ambient Glow Background */
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,211,238,0.15) 0%, rgba(2,6,23,0) 70%);
    border-radius: 50%;
    z-index: -1;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #94A3B8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.cta-button {
    background-color: var(--accent);
    color: #020617;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 0 20px var(--accent-glow);
    transition: transform 0.2s;
}

.cta-button:hover { transform: scale(1.05); }

/* --- LEGAL PAGES CONTAINER --- */
.legal-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
}

.legal-container h1 { font-size: 2.5rem; margin-bottom: 30px; text-align: left; }
.legal-container h2 { font-size: 1.5rem; color: var(--text-main); margin-top: 30px; margin-bottom: 15px; }
.legal-container h3 { font-size: 1.1rem; color: var(--accent); margin-top: 20px; margin-bottom: 10px; }
.legal-container p, .legal-container ul { color: var(--text-muted); margin-bottom: 15px; }
.legal-container ul { padding-left: 20px; }
.legal-container li { margin-bottom: 8px; }

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer a { color: var(--text-muted); text-decoration: none; margin: 0 10px; }
footer a:hover { color: var(--accent); }

/* Mobile */
@media (max-width: 600px) {
    h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Hide nav links on mobile for simplicity */
    .legal-container { padding: 20px; margin: 20px; }
}