*{margin:0;padding:0;box-sizing:border-box}:root{--text-primary: #1e293b;--text-secondary: #475569;--text-muted: #64748b;--text-inverse: #ffffff;--bg-gradient-start: #f8f9fb;--bg-gradient-end: #f0f2f5;--bg-primary: #ffffff;--bg-secondary: #f8fafc;--bg-tertiary: #f1f5f9;--bg-hover: #e2e8f0;--border-color: #e2e8f0;--border-color-hover: #cbd5e1;--accent-primary: #18181b;--accent-hover: #27272a;--accent-text: #ffffff;--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);--shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1);--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1);--blue-bg: #eff6ff;--blue-text: #2563eb;--blue-hover: #dbeafe;--emerald-bg: #ecfdf5;--emerald-text: #059669;--orange-bg: #fff7ed;--orange-text: #ea580c}[data-theme=dark]{--text-primary: #f1f5f9;--text-secondary: #cbd5e1;--text-muted: #94a3b8;--text-inverse: #0f172a;--bg-gradient-start: #0f172a;--bg-gradient-end: #1e293b;--bg-primary: #1e293b;--bg-secondary: #334155;--bg-tertiary: #475569;--bg-hover: #475569;--border-color: #475569;--border-color-hover: #64748b;--accent-primary: #f1f5f9;--accent-hover: #e2e8f0;--accent-text: #0f172a;--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .5);--shadow-md: 0 4px 6px -1px rgb(0 0 0 / .5);--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .5);--blue-bg: #1e3a8a;--blue-text: #93c5fd;--blue-hover: #1e40af;--emerald-bg: #064e3b;--emerald-text: #6ee7b7;--orange-bg: #7c2d12;--orange-text: #fdba74}html{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;line-height:1.6;font-weight:400;color:var(--text-primary);background:linear-gradient(180deg,var(--bg-gradient-start) 0%,var(--bg-gradient-end) 100%);background-attachment:fixed;transition:background .3s ease,color .3s ease}body{margin:0;min-height:100vh;display:flex;flex-direction:column}nav{background-color:var(--bg-primary);border-bottom:1px solid var(--border-color);position:sticky;top:0;z-index:100;box-shadow:var(--shadow-sm)}.nav-container{max-width:1200px;margin:0 auto;padding:1rem 2rem;display:flex;justify-content:space-between;align-items:center}.logo-container{display:flex;align-items:center;gap:.75rem}.logo{width:32px;height:32px;border-radius:6px}nav h1{font-size:1.5rem;font-weight:700;color:var(--text-primary)}.nav-links{display:flex;gap:.5rem}.nav-link{color:var(--text-muted);text-decoration:none;padding:.5rem 1rem;border-radius:8px;transition:all .2s;font-size:.9375rem;font-weight:500}.nav-link:hover{color:var(--text-primary);background-color:var(--bg-tertiary)}.nav-link.active{background-color:var(--accent-primary);color:var(--accent-text);box-shadow:var(--shadow-md)}main{flex:1}.page{display:none;animation:fadeIn .3s ease-in}.page.active{display:block}@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}.container{max-width:1200px;margin:0 auto;padding:4rem 2rem}.hero{text-align:center;margin-bottom:5rem}.hero h2{font-size:2.75rem;font-weight:700;margin-bottom:1.25rem;color:var(--text-primary);line-height:1.2}.subtitle{font-size:1.125rem;color:var(--text-secondary);max-width:700px;margin:0 auto;line-height:1.7}.features{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:1.5rem;margin-bottom:4rem}.feature-card{background-color:var(--bg-primary);border:1px solid var(--border-color);border-radius:12px;padding:2rem;transition:all .2s;box-shadow:var(--shadow-sm)}.feature-card:hover{border-color:var(--border-color-hover);transform:translateY(-2px);box-shadow:var(--shadow-md)}.feature-card h3{font-size:1.125rem;font-weight:600;margin-bottom:.75rem;color:var(--text-primary)}.feature-card p{color:var(--text-secondary);line-height:1.6;font-size:.9375rem}.cta{background-color:var(--bg-primary);border:1px solid var(--border-color);border-radius:12px;padding:2.5rem;text-align:center;box-shadow:var(--shadow-sm)}.cta h3{font-size:1.5rem;font-weight:600;margin-bottom:2rem;color:var(--text-primary)}.cta ol{text-align:left;max-width:600px;margin:0 auto;padding-left:1.5rem}.cta li{margin-bottom:1rem;color:var(--text-secondary);line-height:1.7}.cta li::marker{color:var(--accent-primary);font-weight:600}#privacy h2{font-size:2.5rem;font-weight:700;margin-bottom:.5rem;color:var(--text-primary)}.date{color:var(--text-muted);font-size:.875rem;margin-bottom:3rem}.policy-section{margin-bottom:2.5rem}.policy-section h3{font-size:1.375rem;font-weight:600;margin-bottom:1rem;color:var(--text-primary)}.policy-section p{margin-bottom:1rem;color:var(--text-secondary);line-height:1.8}.policy-section ul{margin:1rem 0 1.5rem 2rem;color:var(--text-secondary)}.policy-section li{margin-bottom:.5rem;line-height:1.8}.policy-section strong{color:var(--text-primary);font-weight:600}.policy-section a{color:var(--blue-text);text-decoration:underline;transition:opacity .2s}.policy-section a:hover{opacity:.8}footer{background-color:var(--bg-primary);border-top:1px solid var(--border-color);padding:2rem;text-align:center;color:var(--text-muted);margin-top:auto}@media(max-width:768px){.nav-container{flex-direction:column;gap:1rem;padding:1rem}.hero h2{font-size:2rem}.subtitle{font-size:1rem}.features{grid-template-columns:1fr}.container{padding:2rem 1rem}.cta{padding:2rem 1.5rem}}@media(prefers-color-scheme:dark){html:not([data-theme=light]){color-scheme:dark}html:not([data-theme=light]){--text-primary: #f1f5f9;--text-secondary: #cbd5e1;--text-muted: #94a3b8;--text-inverse: #0f172a;--bg-gradient-start: #0f172a;--bg-gradient-end: #1e293b;--bg-primary: #1e293b;--bg-secondary: #334155;--bg-tertiary: #475569;--bg-hover: #475569;--border-color: #475569;--border-color-hover: #64748b;--accent-primary: #f1f5f9;--accent-hover: #e2e8f0;--accent-text: #0f172a;--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .5);--shadow-md: 0 4px 6px -1px rgb(0 0 0 / .5);--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .5);--blue-bg: #1e3a8a;--blue-text: #93c5fd;--blue-hover: #1e40af;--emerald-bg: #064e3b;--emerald-text: #6ee7b7;--orange-bg: #7c2d12;--orange-text: #fdba74}}
