/* Shared styles for legal pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --p: #7C3AED;
  --p2: #A78BFA;
  --c: #06B6D4;
  --dark: #07070F;
  --border: rgba(255,255,255,0.07);
  --glass: rgba(255,255,255,0.04);
  --text: #F0F0FF;
  --muted: #8B8BAA;
  --g: linear-gradient(135deg, #7C3AED, #06B6D4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.world {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.blob {
  position: absolute; border-radius: 50%; filter: blur(130px); opacity: 0.08;
}
.b1 { width: 600px; height: 600px; background: var(--p); top: -150px; left: -150px; }
.b2 { width: 500px; height: 500px; background: var(--c); bottom: -100px; right: -100px; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 0 2.5rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(7,7,15,0.8); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex; align-items: center; text-decoration: none;
}
.logo img {
  height: 38px; width: auto;
  mix-blend-mode: screen; display: block;
}
.nav-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--muted); text-decoration: none; font-size: 0.85rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-back:hover { color: var(--text); }

.page { position: relative; z-index: 2; padding: 7rem 2rem 6rem; }

.doc {
  max-width: 780px;
  margin: 0 auto;
}

.doc-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.doc-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--p2); margin-bottom: 0.8rem;
}

.doc-title {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.75rem;
}

.gt {
  background: var(--g);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.doc-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 1rem;
}
.doc-meta span {
  font-size: 0.8rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.4rem;
}

.doc-body { display: flex; flex-direction: column; gap: 2.5rem; }

.section { display: flex; flex-direction: column; gap: 0.75rem; }

.section h2 {
  font-size: 1.1rem; font-weight: 700; color: var(--text);
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.5rem;
}

.section h2 .num {
  background: var(--g); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  font-size: 0.8rem; font-weight: 700;
}

.section p, .section li {
  font-size: 0.95rem; color: var(--muted); line-height: 1.8;
}

.section ul, .section ol {
  padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem;
}

.section strong { color: var(--text); font-weight: 600; }

.section a { color: var(--p2); text-decoration: none; }
.section a:hover { text-decoration: underline; }

.highlight-box {
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

.highlight-box strong { color: var(--p2); }

footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  padding: 2rem; text-align: center;
}
.fcopy { font-size: 0.78rem; color: var(--muted); }
.fcopy a { color: var(--p2); text-decoration: none; }
.fcopy a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  nav { padding: 0 1.25rem; }
  .page { padding: 6rem 1.25rem 4rem; }
}
