/* ============================================================================
   eCommpex — öffentliche Übergangspräsenz
   Farbwelt: dokumentierte eCommpex-Marken-DNA (Stand 09/2026).
   Keine externen Requests: System-Fonts, kein Tracking, keine Cookies.
   ============================================================================ */

:root {
  /* Palette — exakt aus der dokumentierten eCommpex-Farbwelt */
  --ink: #05060a;
  --fg: #f0f2f6;
  --fg-2: #a9b0bb;
  --fg-3: #8a919c;
  --accent: #f2726e;
  --accent-solid: #ac0d0d;
  --accent-hover: #c81616;
  --glow: rgb(172 13 13 / 0.6);
  --line: rgb(255 255 255 / 0.08);
  --line-soft: rgb(255 255 255 / 0.05);
  --warn: #e6a83a;
  --surface: rgb(10 12 18 / 0.34);
  --surface-hl: rgb(255 255 255 / 0.095);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 400ms;

  color-scheme: dark;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: var(--ink);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Das Lichtfeld der Marke: dieselben Radialformen wie im internen System,
   in der Intensität für eine ruhige Content-Seite reduziert. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1300px 900px at -10% -14%, rgb(172 13 13 / 0.5), transparent 56%),
    radial-gradient(1100px 1000px at 108% 0%, rgb(44 72 142 / 0.38), transparent 56%),
    radial-gradient(1400px 1000px at 56% 114%, rgb(126 88 36 / 0.22), transparent 58%),
    radial-gradient(950px 750px at 32% 44%, rgb(28 44 56 / 0.32), transparent 64%);
}

/* Browserflächen tragen die Palette mit. */
::selection { background: rgb(172 13 13 / 0.45); color: #ffffff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 6px; }

a { color: inherit; }

/* ── Gerüst ─────────────────────────────────────────────────────────────── */
.hülle {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 640px) { .hülle { padding-inline: 40px; } }

header.kopf {
  padding-block: 28px;
}
.wortmarke {
  display: inline-block;
  font-size: 17px;
  font-weight: 650;
  letter-spacing: -0.03em;
  text-decoration: none;
}
.wortmarke i { font-style: normal; color: var(--accent); }

main { flex: 1; }

footer.fuß {
  border-top: 1px solid var(--line-soft);
  padding-block: 28px 40px;
  margin-top: 96px;
}
.fuß-zeile {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--fg-3);
}
.fuß-zeile nav { display: flex; gap: 22px; }
.fuß-zeile a {
  color: var(--fg-2);
  text-decoration: none;
  transition: color 160ms var(--ease);
}
.fuß-zeile a:hover { color: var(--fg); }

/* ── Startseite ─────────────────────────────────────────────────────────── */
.held {
  padding-block: clamp(64px, 14vh, 150px) 0;
}
.held h1 {
  font-size: clamp(42px, 7.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 650;
  max-width: 15ch;
  text-wrap: balance;
}
.held h1 .leise { color: var(--fg-3); }
.held .satz {
  margin-top: 28px;
  max-width: 52ch;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.65;
  color: var(--fg-2);
}
.held .hinweis {
  margin-top: 14px;
  font-size: 14px;
  color: var(--fg-3);
}

.aktion { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.knopf {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding-inline: 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #05060a;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms var(--ease), box-shadow 160ms var(--ease);
  box-shadow: 0 14px 34px -14px rgb(0 0 0 / 0.8);
}
.knopf:hover { transform: translateY(-1px); box-shadow: 0 18px 40px -14px rgb(0 0 0 / 0.85); }
.knopf:active { transform: translateY(0.5px); }
.aktion .neben { font-size: 13.5px; color: var(--fg-3); }

.abschnitt {
  margin-top: clamp(80px, 12vh, 130px);
  padding-top: 40px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  gap: 12px 48px;
}
@media (min-width: 720px) {
  .abschnitt { grid-template-columns: 200px minmax(0, 1fr); }
}
.abschnitt h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fg-3);
}
.abschnitt p {
  max-width: 58ch;
  color: var(--fg-2);
  font-size: 15.5px;
}
.abschnitt p + p { margin-top: 14px; }
.abschnitt strong { color: var(--fg); font-weight: 600; }
.abschnitt a { color: var(--fg); text-underline-offset: 3px; text-decoration-color: var(--accent); }

/* Fokus-Zeilen: drei Begriffe, ruhig gesetzt, Haarlinien statt Kästen. */
.fokus { list-style: none; }
.fokus li {
  padding-block: 18px;
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--fg);
}
.fokus li + li { border-top: 1px solid var(--line-soft); }

/* ── Auftritt: eine einzige, ruhige Choreografie ────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .held > *, .abschnitt {
    animation: auftritt var(--t) var(--ease) backwards;
  }
  .held .satz { animation-delay: 70ms; }
  .held .hinweis { animation-delay: 110ms; }
  .held .aktion { animation-delay: 150ms; }
  .abschnitt { animation-delay: 200ms; }
}
@keyframes auftritt {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ── Rechtstexte ────────────────────────────────────────────────────────── */
.recht { padding-top: clamp(40px, 8vh, 80px); }
.recht header.titel {
  margin-bottom: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line-soft);
}
.recht h1 {
  font-size: clamp(30px, 4.5vw, 44px);
  letter-spacing: -0.035em;
  font-weight: 650;
  line-height: 1.05;
}
.recht .stand { margin-top: 12px; font-size: 13.5px; color: var(--fg-3); }

.recht article {
  max-width: 68ch;
  font-size: 15.5px;
  color: var(--fg-2);
}
.recht h2 {
  margin-top: 44px;
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.recht h3 {
  margin-top: 26px;
  margin-bottom: 8px;
  font-size: 15.5px;
  font-weight: 650;
  color: var(--fg);
}
.recht p + p, .recht ul + p, .recht address + p, .recht p + address { margin-top: 12px; }
.recht ul { margin: 12px 0 0 1.2em; }
.recht li + li { margin-top: 6px; }
.recht address { font-style: normal; line-height: 1.75; }
.recht strong { color: var(--fg); font-weight: 600; }
.recht a { color: var(--fg); text-underline-offset: 3px; text-decoration-color: var(--accent); }
.recht .klein { margin-top: 8px; font-size: 13px; color: var(--fg-3); }
.recht .einleitung {
  max-width: 68ch;
  margin-bottom: 8px;
  font-size: 15.5px;
  color: var(--fg-2);
}

/* Impressum: Begriff links, Wert rechts — souveräne Registerstruktur
   statt Textdokument. Auf Mobile gestapelt. */
.recht .block {
  display: grid;
  gap: 8px 48px;
  padding-block: 26px;
}
.recht .block + .block { border-top: 1px solid var(--line-soft); }
.recht .block h2 { margin: 0; font-size: 13.5px; font-weight: 600; color: var(--fg-3); letter-spacing: 0.01em; }
.recht .block .wert { font-size: 15.5px; }
@media (min-width: 720px) {
  .recht .block { grid-template-columns: 220px minmax(0, 1fr); }
  .recht .block h2 { padding-top: 2px; }
}
