
:root {
  --bg: #0d0f18;
  --bg-2: #12162a;
  --surface: rgba(255,255,255,.08);
  --surface-2: rgba(255,255,255,.12);
  --card: rgba(255,255,255,.94);
  --text: #f8f9ff;
  --dark-text: #12141d;
  --muted: rgba(248,249,255,.68);
  --muted-dark: #6f7382;
  --border: rgba(255,255,255,.14);
  --border-dark: rgba(17,20,29,.08);
  --violet: #8d8cf8;
  --blue: #5a7cff;
  --cyan: #69e6ff;
  --green: #35d399;
  --orange: #f5a524;
  --shadow: 0 28px 90px rgba(0,0,0,.32);
  --max: 1180px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 8%, rgba(92, 91, 255, .48), transparent 26%),
    radial-gradient(circle at 10% 18%, rgba(73, 232, 255, .16), transparent 24%),
    linear-gradient(180deg, #0d0f18 0%, #151a36 38%, #eef1f8 38%, #f5f6fb 80%, #0d0f18 80%, #0d0f18 100%);
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.page { min-height: 100vh; position: relative; overflow: hidden; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; position: relative; z-index: 2; }
.noise { pointer-events: none; position: fixed; inset: 0; z-index: 0; opacity: .035; background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px); background-size: 36px 36px; }
.top-note { width: min(820px, calc(100% - 40px)); margin: 18px auto 0; padding: 10px 16px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,.08); backdrop-filter: blur(18px); text-align: center; color: var(--muted); font-size: 13px; position: relative; z-index: 4; }
.nav { width: min(var(--max), calc(100% - 40px)); margin: 22px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; position: relative; z-index: 5; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -.04em; }
.brand-mark { width: 25px; height: 25px; border-radius: 9px; background: radial-gradient(circle at 30% 30%, #fff 0 12%, transparent 13%), linear-gradient(135deg, #ffffff, #9ca7ff 58%, #151827); box-shadow: 0 14px 34px rgba(109,108,244,.35); position: relative; }
.brand-mark::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 3px; background: var(--cyan); right: 3px; bottom: 3px; }
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--muted); font-size: 14px; }
.nav-links a { transition: .22s ease; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.btn { border: 0; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; font-size: 14px; font-weight: 900; letter-spacing: -.02em; white-space: nowrap; transition: .25s ease; }
.btn-light { background: #fff; color: #10131d; box-shadow: 0 18px 44px rgba(255,255,255,.16); }
.btn-light:hover, .btn-violet:hover { transform: translateY(-2px); }
.btn-violet { background: linear-gradient(135deg, #8d8cf8, #6665e7); color: #fff; box-shadow: 0 20px 52px rgba(109,108,244,.34); }
.brand-glow { color: #35d399; text-shadow: 0 0 12px rgba(53, 211, 153, 0.45), 0 0 32px rgba(53, 211, 153, 0.28), 0 0 64px rgba(53, 211, 153, 0.18); }
.legal-hero { padding: 64px 0 34px; }
.legal-kicker { display:inline-flex; align-items:center; gap:9px; padding:8px 13px; border-radius:999px; border:1px solid var(--border); background:rgba(255,255,255,.08); color:var(--muted); font-size:13px; margin-bottom:22px; }
.legal-kicker::before { content:""; width:8px; height:8px; border-radius:50%; background:var(--green); box-shadow:0 0 0 5px rgba(53,211,153,.12); }
.legal-hero h1 { font-size: clamp(42px, 6vw, 78px); line-height: .96; letter-spacing: -.075em; font-weight: 950; max-width: 900px; }
.legal-hero p { margin-top: 20px; max-width: 760px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.legal-meta { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }
.meta-pill { border:1px solid var(--border); background: rgba(255,255,255,.08); color:rgba(255,255,255,.74); border-radius:999px; padding:8px 12px; font-size:12px; }
.legal-layout { padding: 24px 0 92px; color: var(--dark-text); }
.legal-grid { display:grid; grid-template-columns: 280px 1fr; gap:24px; align-items:start; }
.sidebar { position: sticky; top: 22px; background: rgba(255,255,255,.92); border:1px solid var(--border-dark); box-shadow:0 24px 70px rgba(15,17,28,.10); border-radius:28px; padding:22px; }
.sidebar strong { display:block; font-size:14px; margin-bottom:12px; color:#11131d; }
.sidebar a { display:block; padding:10px 0; border-top:1px solid rgba(17,20,29,.07); color:#626675; font-size:13px; line-height:1.35; }
.legal-card { background: var(--card); border:1px solid rgba(255,255,255,.82); border-radius:34px; box-shadow:0 32px 90px rgba(15,17,28,.14); padding:42px; }
.legal-card section { scroll-margin-top: 24px; }
.legal-card section + section { margin-top: 34px; padding-top: 30px; border-top:1px solid rgba(17,20,29,.08); }
.legal-card h2 { font-size: clamp(27px, 3vw, 38px); line-height:1.05; letter-spacing:-.055em; margin-bottom:15px; color:#11131d; }
.legal-card h3 { font-size: 20px; letter-spacing:-.035em; margin:20px 0 10px; color:#171a25; }
.legal-card p { color:#555866; line-height:1.72; font-size:15px; margin: 10px 0; }
.legal-card ul, .legal-card ol { padding-left: 22px; margin: 14px 0; color:#555866; line-height:1.72; }
.legal-card li { margin: 8px 0; }
.notice-box { border:1px solid rgba(141,140,248,.28); background:linear-gradient(135deg, rgba(141,140,248,.12), rgba(105,230,255,.08)); border-radius:22px; padding:20px; margin:20px 0; }
.notice-box strong { color:#11131d; }
.table-wrap { overflow-x:auto; margin:18px 0; border:1px solid rgba(17,20,29,.08); border-radius:20px; }
table { width:100%; border-collapse:collapse; background:#fff; min-width:640px; }
th, td { text-align:left; padding:14px 16px; border-bottom:1px solid rgba(17,20,29,.08); color:#555866; vertical-align:top; font-size:14px; line-height:1.5; }
th { color:#11131d; background:#f4f6fb; font-weight:900; }
.footer { background: #0a0c13; padding: 58px 0 36px; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 38px; }
.footer p { color: rgba(255,255,255,.54); font-size: 13px; line-height: 1.6; max-width: 350px; margin-top: 14px; }
.footer h4 { color: rgba(255,255,255,.44); font-size: 13px; margin-bottom: 16px; }
.footer-links { display: grid; gap: 11px; color: rgba(255,255,255,.66); font-size: 13px; }
.legal-note { margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.42); font-size: 12px; line-height: 1.65; }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } .legal-grid { grid-template-columns: 1fr; } .sidebar { position:relative; top:auto; } }
@media (max-width: 720px) { .container, .nav { width: min(100% - 28px, var(--max)); } .nav { align-items:flex-start; } .nav-links { display:none; } .top-note { width: min(100% - 28px, 820px); border-radius: 18px; } .legal-hero { padding: 46px 0 26px; } .legal-hero h1 { font-size: 44px; } .legal-card { padding:26px; border-radius:26px; } .footer-grid { grid-template-columns: 1fr; } }
