*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --orange: #ff6b2b; --purple: #7c3aed; --bg: #0a0a0f; --bg-card: #12121a; --bg-elevated: #1e1e2e; --border: rgba(255,255,255,0.08); --border-hover: rgba(255,255,255,0.15); --text: #f0f0f8; --text-muted: #8888aa; --text-dim: #5a5a7a; --radius: 14px; } html, body { height: auto; overflow-x: hidden; overflow-y: auto; } body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.7; } /* Nav */ .nav { position: sticky; top: 0; z-index: 100; background: rgba(10,10,15,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); } .nav-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; height: 64px; display: flex; align-items: center; justify-content: space-between; } .nav-logo img { display: block; } .nav-back { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; text-decoration: none; transition: color 0.2s; } .nav-back:hover { color: var(--orange); } .nav-back i { font-size: 0.8rem; } /* Hero band */ .legal-hero { background: linear-gradient(135deg, rgba(255,107,43,0.08) 0%, rgba(124,58,237,0.08) 100%); border-bottom: 1px solid var(--border); padding: 3.5rem 1.5rem 3rem; text-align: center; } .legal-hero-inner { max-width: 700px; margin: 0 auto; } .legal-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,107,43,0.12); border: 1px solid rgba(255,107,43,0.25); border-radius: 100px; padding: 0.35rem 1rem; font-size: 0.8rem; font-weight: 600; color: var(--orange); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.2rem; } .legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 0.75rem; letter-spacing: -0.02em; } .legal-hero p { color: var(--text-muted); font-size: 1rem; } /* Layout */ .legal-layout { max-width: 820px; margin: 0 auto; padding: 3rem 1.5rem 5rem; display: grid; grid-template-columns: 220px 1fr; gap: 3rem; align-items: start; } @media (max-width: 700px) { .legal-layout { grid-template-columns: 1fr; gap: 2rem; } } /* TOC sidebar */ .legal-toc { position: sticky; top: 84px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; } .legal-toc h3 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 1rem; } .legal-toc a { display: block; font-size: 0.85rem; color: var(--text-muted); text-decoration: none; padding: 0.35rem 0; border-left: 2px solid transparent; padding-left: 0.75rem; transition: all 0.2s; line-height: 1.4; } .legal-toc a:hover { color: var(--orange); border-left-color: var(--orange); } @media (max-width: 700px) { .legal-toc { position: static; } } /* Content */ .legal-content { min-width: 0; } .legal-section { margin-bottom: 2.75rem; scroll-margin-top: 84px; } .legal-section h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); display: flex; align-items: center; gap: 0.6rem; } .legal-section h2 .section-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--orange), var(--purple)); font-size: 0.75rem; font-weight: 800; color: #fff; flex-shrink: 0; } .legal-section p { color: var(--text-muted); margin-bottom: 0.9rem; font-size: 0.97rem; } .legal-section p:last-child { margin-bottom: 0; } .legal-section ul, .legal-section ol { color: var(--text-muted); font-size: 0.97rem; padding-left: 1.5rem; margin-bottom: 0.9rem; } .legal-section li { margin-bottom: 0.45rem; } .legal-section a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; } /* Callout boxes */ .callout { border-radius: var(--radius); padding: 1.1rem 1.25rem; margin: 1.25rem 0; font-size: 0.95rem; border-left: 3px solid; } .callout-warning { background: rgba(245,158,11,0.08); border-color: #f59e0b; color: #fcd34d; } .callout-info { background: rgba(124,58,237,0.08); border-color: var(--purple); color: #c4b5fd; } .callout-danger { background: rgba(239,68,68,0.08); border-color: #ef4444; color: #fca5a5; } .callout strong { display: block; margin-bottom: 0.3rem; font-weight: 700; } /* Divider */ .legal-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 2.75rem; } /* Footer */ .legal-footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 2rem 1.5rem; text-align: center; } .legal-footer p { color: var(--text-dim); font-size: 0.85rem; margin-bottom: 0.4rem; } .legal-footer-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.75rem; } .legal-footer-links a { color: var(--text-muted); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; } .legal-footer-links a:hover { color: var(--orange); }