/* ============================================================
   MORA — Pages légales (Kinetic Archive)
   ============================================================ */

:root {
  --bg: #0E0E0E;
  --surface-1: #161616;
  --surface-2: #1E1E1E;
  --surface-3: #262626;
  --orange: #FF5A00;
  --orange-light: #FF7A33;
  --text: #F5F5F5;
  --text-2: #ADAAAA;
  --text-muted: #666666;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

html { scroll-behavior: smooth; }

a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 22px;
  background: rgba(22, 22, 22, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 30px -10px rgba(0,0,0,0.6);
}
.nav-logo {
  font-weight: 900;
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo .dot { color: var(--orange); }
.nav-back {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
}
.nav-back:hover { color: var(--text); text-decoration: none; }

/* ---- Article ---- */
.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 160px 28px 100px;
}
.legal-wrap .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.legal-wrap h1 {
  font-weight: 900;
  font-style: italic;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0 0 18px;
  text-wrap: balance;
}
.legal-wrap .meta {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 56px;
}
.legal-wrap h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 56px 0 14px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.legal-wrap h2 .n {
  color: var(--orange);
  font-weight: 800;
  font-style: italic;
  margin-right: 14px;
}
.legal-wrap p, .legal-wrap li {
  color: var(--text-2);
  line-height: 1.68;
  font-size: 15px;
}
.legal-wrap p { margin: 0 0 14px; }
.legal-wrap ul { padding-left: 20px; margin: 0 0 14px; }
.legal-wrap li { margin-bottom: 6px; }
.legal-wrap strong { color: var(--text); font-weight: 600; }
.legal-wrap .placeholder {
  background: rgba(255, 90, 0, 0.1);
  color: var(--orange);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.legal-wrap .note {
  background: var(--surface-1);
  border-left: 2px solid var(--orange);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 10px 10px 0;
  font-size: 14px;
  color: var(--text-2);
}
.legal-wrap hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 56px 0;
}

/* ---- Footer ---- */
.legal-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 28px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.legal-footer .legal-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.legal-footer .legal-links a {
  color: var(--text-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.legal-footer .legal-links a:hover { color: var(--text); text-decoration: none; }
.legal-footer .copy {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

@media (max-width: 640px) {
  .legal-wrap { padding: 130px 22px 70px; }
  .nav { gap: 12px; padding: 8px 12px 8px 18px; }
  .legal-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
}
