/* === RESET + BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: #e0e0e0; background: #0a0a0f; line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: 'Space Grotesk', 'Inter', sans-serif; }
.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
a { color: #6c5ce7; text-decoration: none; }
a:hover { color: #7c6cf7; }

/* === NAV === */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(10,10,15,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid #1e1e2e; }
.nav-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: 56px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.5px; text-decoration: none; }
.logo em { font-style: normal; color: #6c5ce7; }
.logo-icon { width: 28px; height: 28px; border-radius: 6px; }

/* === LEGAL CONTENT === */
.legal { padding: 96px 0 60px; }
.legal-updated { font-size: 12px; color: #6b6b80; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.legal h1 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 36px; letter-spacing: -0.5px; }
.legal section { margin-bottom: 32px; }
.legal h2 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.legal h3 { font-size: 15px; font-weight: 600; color: #c0c0d0; margin-top: 16px; margin-bottom: 6px; }
.legal p { font-size: 14px; color: #8a8a9e; line-height: 1.7; margin-bottom: 10px; }
.legal ul { margin: 8px 0 12px 20px; }
.legal li { font-size: 14px; color: #8a8a9e; line-height: 1.7; margin-bottom: 6px; list-style: disc; }
.legal li::marker { color: #6c5ce7; }
.legal strong { color: #c0c0d0; }

/* === FOOTER === */
.legal-footer { padding: 24px 0; border-top: 1px solid #1e1e2e; text-align: center; }
.legal-footer .footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 12px; }
.legal-footer .footer-links a { font-size: 13px; color: #6b6b80; text-decoration: none; }
.legal-footer .footer-links a:hover { color: #00e5ff; }
.legal-footer p { font-size: 12px; color: #3a3a4e; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .nav-inner { height: 48px; }
    .logo { font-size: 17px; }
    .logo-icon { width: 24px; height: 24px; }
    .legal { padding: 72px 0 40px; }
    .legal h1 { font-size: 22px; margin-bottom: 24px; }
    .legal h2 { font-size: 15px; }
    .legal h3 { font-size: 13px; }
    .legal p, .legal li { font-size: 13px; }
    .legal-footer .footer-links { gap: 16px; }
    .legal-footer .footer-links a { font-size: 12px; }
}
