/* =============================================================
   Lumina Reach — Rechtsseiten (Holding) · legal.css
   Eigenständig, dunkles Holding-Theme, Inter. Rechtstext 1:1.
   ============================================================= */
:root {
  --c-bg:    #0a0a0a;
  --c-text:  #e7e7e6;
  --c-muted: #a3a3a3;
  --c-dim:   rgba(255, 255, 255, 0.42);
  --c-line:  rgba(255, 255, 255, 0.10);
  --c-line-soft: rgba(255, 255, 255, 0.06);
  --c-link:  #c4b5fd;          /* sanftes Violett aus der Signature-Familie */
  --ff-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--c-link); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 2px solid var(--c-link); outline-offset: 3px; border-radius: 3px; }

/* ─────────── Header ─────────── */
.ws-lg-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(10, 10, 10, 0.82);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.ws-lg-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--c-text);
}
.ws-lg-brand-mark { width: 28px; height: 28px; fill: #ffffff; }
.ws-lg-brand-name { font-size: 1.0625rem; font-weight: 500; letter-spacing: -0.01em; }
.ws-lg-back {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-muted);
  text-decoration: none;
  white-space: nowrap;
}
.ws-lg-back:hover { color: var(--c-text); }

/* ─────────── Inhalt ─────────── */
.ws-lg {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 7vw, 6rem);
}
.ws-lg-stack {
  max-width: 760px;
  margin-inline: auto;
}
.ws-lg-head { margin-bottom: clamp(2rem, 5vw, 3rem); }
.ws-lg-h1 {
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.85rem;
}
.ws-lg-lede {
  font-size: 1.075rem;
  color: var(--c-muted);
  margin: 0;
  max-width: 64ch;
}

.ws-lg-stack h2 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 2.6rem 0 0.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--c-line-soft);
}
.ws-lg-stack h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.6rem 0 0.4rem;
  color: var(--c-text);
}
.ws-lg-stack p { margin: 0 0 1rem; color: #d4d4d3; }
.ws-lg-stack ul { margin: 0 0 1.2rem; padding-left: 1.3rem; color: #d4d4d3; }
.ws-lg-stack li { margin-bottom: 0.4rem; }
.ws-lg-stack strong { color: var(--c-text); font-weight: 600; }
.ws-lg-stack code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.92em;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.1em 0.4em;
  border-radius: 4px;
}

.ws-lg-block {
  border: 1px solid var(--c-line);
  border-left: 2px solid var(--c-link);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  padding: 1rem 1.25rem;
  margin: 0 0 1.2rem;
}
.ws-lg-block p { margin: 0; }

.ws-lg-note {
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--c-line-soft);
  font-size: 0.92rem;
  color: var(--c-dim);
  font-style: italic;
}

/* Reveal-Klasse aus dem Originaltext — hier ohne Scroll-Animation, immer sichtbar */
.ws-reveal { opacity: 1; transform: none; }

/* ─────────── Footer ─────────── */
.ws-lg-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 1.2rem;
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  border-top: 1px solid var(--c-line);
  font-size: 0.85rem;
  color: var(--c-dim);
}
.ws-lg-footer a { color: var(--c-muted); text-decoration: none; }
.ws-lg-footer a:hover { color: var(--c-text); }
.ws-lg-footer-sep { color: var(--c-line); }
