:root {
  --bg: #0c0b11;
  --surface: #191624;
  --line: rgba(185, 174, 220, 0.2);
  --text: #f2edff;
  --muted: #c4bdd4;
  --accent: #8c75df;
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Sora", "Segoe UI", sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%238c75df' stroke-opacity='0.09' stroke-width='1'%3E%3Cpath d='M20 72h36l14-14h38'/%3E%3Cpath d='M93 126h29l12-12h29'/%3E%3C/g%3E%3Cg fill='%23b4a7e5' fill-opacity='0.1'%3E%3Ccircle cx='29' cy='138' r='1'/%3E%3Ccircle cx='149' cy='50' r='1'/%3E%3C/g%3E%3C/svg%3E");
}
.shell { width: min(900px, calc(100% - 32px)); max-width: 100%; min-width: 0; margin-inline: auto; position: relative; }
.legal-header { border-bottom: 1px solid var(--line); padding: 16px 0; }
.legal-nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: grid; min-width: 0; gap: 2px; color: var(--text); text-decoration: none; font-weight: 800; }
.brand span,
.brand small { overflow-wrap: anywhere; }
.brand em { color: var(--accent); font-style: normal; }
.brand small { color: var(--muted); font-size: 0.72rem; font-weight: 500; }
.language-select { border: 1px solid var(--line); border-radius: 10px; background: #15121f; color: var(--text); padding: 8px 10px; font: inherit; font-weight: 700; }
main { padding: clamp(36px, 9vw, 88px) 0; }
.kicker { margin: 0 0 10px; color: #b4a7e5; font-size: 0.78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
h1 { margin: 0; font-size: clamp(2rem, 6vw, 3.7rem); letter-spacing: 0; line-height: 1.05; overflow-wrap: anywhere; }
.intro { max-width: 66ch; margin: 18px 0 32px; color: var(--muted); font-size: 1.06rem; line-height: 1.65; }
.legal-content { border: 1px solid var(--line); border-radius: 18px; background: var(--surface); padding: clamp(22px, 5vw, 42px); box-shadow: 0 14px 38px rgba(0,0,0,.2); }
.legal-content p { max-width: 70ch; margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.72; overflow-wrap: anywhere; }
.back-link { display: inline-flex; max-width: 100%; margin-top: 28px; align-items: center; gap: 8px; color: var(--text); border: 1px solid var(--line); border-radius: 10px; padding: 11px 14px; font-weight: 800; text-decoration: none; white-space: normal; }
.back-link:hover, .back-link:focus-visible { border-color: var(--accent); background: rgba(140,117,223,.13); }
@media (max-width: 520px) {
  .shell { width: calc(100% - 24px); }
  .legal-nav { align-items: flex-start; flex-direction: column; }
  .language-select { width: 100%; }
  main { padding: 30px 0 42px; }
  h1 { font-size: clamp(1.75rem, 10vw, 2.5rem); }
  .intro { margin-bottom: 20px; font-size: 1rem; }
  .legal-content { border-radius: 14px; padding: 18px; }
}
