*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --primary: #4F46E5; --primary-light: #6C63FF; --primary-soft: #EEF2FF;
  --ink: #1E293B; --ink-soft: #475569; --ink-muted: #94A3B8;
  --bg: #F8FAFC; --surface: #FFFFFF; --line: #E2E8F0; --radius: 16px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--primary); }
.nav-brand img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink-soft); font-weight: 500; font-size: 14px; transition: color .2s; }
.nav-links a:hover { color: var(--primary); text-decoration: none; }
.nav-cta { background: var(--primary); color: #fff !important; padding: 8px 20px; border-radius: 8px; font-weight: 600; font-size: 14px; transition: background .2s; }
.nav-cta:hover { background: var(--primary-light); text-decoration: none; }

.legal { padding: 120px 0 80px; }
.legal h1 { font-size: 36px; font-weight: 800; margin-bottom: 8px; }
.legal .date { color: var(--ink-muted); font-size: 14px; margin-bottom: 32px; }
.legal h2 { font-size: 22px; font-weight: 700; margin: 36px 0 12px; }
.legal h3 { font-size: 17px; font-weight: 600; margin: 24px 0 8px; }
.legal p, .legal li { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 12px; }
.legal ul { padding-left: 24px; }
.legal-content { max-width: 720px; }

footer { background: var(--ink); color: #CBD5E1; padding: 32px 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-bottom a { color: #94A3B8; margin-left: 20px; }
