/* ============================================================
   MI-Simulator (HAPOK) — Umsetzung des Claude-Design-Entwurfs
   „Ruhiger Raum" (1a). Tokens aus colors_and_type.css, Maße aus
   der Design-Übergabe. Fonts lokal gehostet (DSGVO).
   ============================================================ */

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/HankenGrotesk-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/HankenGrotesk-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/HankenGrotesk-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/HankenGrotesk-ExtraBold.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('../fonts/Newsreader-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}

:root {
  --coral: #f0523d;
  --coral-press: #d8432f;
  --coral-soft: #fdeae6;
  --ink: #272727;
  --ink-2: #3e3e3e;
  --ink-3: #6b6b6b;
  --ink-4: #9a9a9a;
  --paper: #f6f6f6;
  --surface: #ffffff;
  --mint: #E8F8F5;
  --mint-deep: #d3f0ea;
  --line: #e7e7e7;
  --line-strong: #d8d8d8;
  --flaeche-inaktiv: #ededed;
  --focus-ring: color-mix(in oklab, var(--coral) 55%, white);
  --font-sans: 'Hanken Grotesk', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-sm: 0 2px 6px rgba(39,39,39,0.06);
  --shadow-md: 0 10px 30px -12px rgba(39,39,39,0.14);
  --shadow-coral: 0 12px 28px -10px rgba(240,82,61,0.42);
}

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

html, body { height: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

::selection { background: var(--coral-soft); color: var(--ink); }

/* ---------- Wortmarke ---------- */

.wortmarke {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.wortmarke::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--coral);
}

/* ---------- Bildschirm-Umschaltung (SPA) ---------- */

.bildschirm { display: none; }
.bildschirm.aktiv { display: flex; }

/* ---------- 1 · Startbildschirm ---------- */

.start {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 96px 34px 56px;
  background: var(--surface);
  gap: 22px;
  text-align: center;
}
.start .wortmarke { font-size: 19px; margin-bottom: 12px; }
.start h1 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
  color: var(--ink);
}
.start p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 420px;
}
.start .hinweis {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 300px;
}

.knopf-korall {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 19px 44px;
  border-radius: 999px;
  box-shadow: var(--shadow-coral);
  transition: background 140ms var(--ease-out), transform 140ms var(--ease-out);
}
.knopf-korall:hover:not(:disabled) { background: var(--coral-press); transform: translateY(-1px); }
.knopf-korall:active:not(:disabled) { transform: scale(0.98); }
.knopf-korall:disabled {
  background: var(--flaeche-inaktiv);
  color: var(--ink-4);
  box-shadow: none;
  cursor: not-allowed;
}

.einwilligung-block {
  max-width: 420px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.einwilligung-block p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-4);
  max-width: none;
}
.einwilligung-block a {
  color: var(--ink-3);
  text-underline-offset: 3px;
}
.einwilligung-block .einwilligung {
  font-size: 14px;
  color: var(--ink-2);
}

.fusszeile {
  margin-top: auto;
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 13px;
}
.fusszeile a {
  color: var(--ink-4);
  text-decoration: none;
}
.fusszeile a:hover { color: var(--ink-3); }

/* ---------- 2 · Chat ---------- */

.chat {
  flex-direction: column;
  height: 100dvh;
  background: var(--paper);
}

.chat-kopf {
  padding: calc(env(safe-area-inset-top, 0px) + 14px) 22px 14px;
  background: rgba(246,246,246,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.chat-kopf .wortmarke { font-size: 16px; }

.verlauf {
  flex: 1;
  overflow-y: auto;
  padding: 22px 18px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blase {
  max-width: 80%;
  padding: 14px 17px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  animation: rise 320ms var(--ease-out);
  white-space: pre-wrap;
  overflow-wrap: break-word;
}
.blase--bot {
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px 22px 22px 6px;
  box-shadow: var(--shadow-sm);
}
.blase--person {
  align-self: flex-end;
  background: var(--coral-soft);
  border-radius: 22px 22px 6px 22px;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tippindikator */
.tippt {
  align-self: flex-start;
  display: flex;
  gap: 6px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px 22px 22px 6px;
  box-shadow: var(--shadow-sm);
  padding: 16px 18px;
  animation: rise 320ms var(--ease-out);
}
.tippt span {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--ink-4);
  animation: dots 1400ms ease-in-out infinite;
}
.tippt span:nth-child(2) { animation-delay: 200ms; }
.tippt span:nth-child(3) { animation-delay: 400ms; }

@keyframes dots {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}

/* ---------- Eingabeleiste ---------- */

.eingabe {
  padding: 12px 14px calc(env(safe-area-inset-bottom, 0px) + 18px);
  background: var(--surface);
  border-top: 1px solid var(--line);
  flex-shrink: 0;
}

.eingabe-zeile {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.textfeld {
  flex: 1;
  resize: none;
  border: 1.5px solid var(--line-strong);
  border-radius: 24px;
  padding: 16px 18px;
  font-size: 16px;
  line-height: 1.4;
  color: var(--ink);
  background: var(--surface);
  max-height: 120px;
  outline: none;
  transition: border-color 140ms var(--ease-out);
}
.textfeld:focus { border-color: var(--coral); }
.textfeld::placeholder { color: var(--ink-4); }
.textfeld.mit-transkript { border-color: var(--coral); }

.knopf-mikro {
  width: 64px; height: 64px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--coral);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-coral);
  position: relative;
  transition: background 140ms var(--ease-out), transform 140ms var(--ease-out);
}
.knopf-mikro svg { width: 28px; height: 28px; }
.knopf-mikro:hover { background: var(--coral-press); }
.knopf-mikro:active { transform: scale(0.96); }
.knopf-mikro[aria-pressed="true"] { background: var(--coral-press); }
.knopf-mikro[aria-pressed="true"]::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid var(--coral);
  animation: ring 1600ms var(--ease-out) infinite;
}
.knopf-mikro:disabled {
  background: var(--flaeche-inaktiv);
  color: var(--ink-4);
  box-shadow: none;
  cursor: not-allowed;
}

@keyframes ring {
  from { transform: scale(1); opacity: 0.5; }
  to { transform: scale(1.5); opacity: 0; }
}

.knopf-senden {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 140ms var(--ease-out), transform 140ms var(--ease-out);
}
.knopf-senden svg { width: 24px; height: 24px; }
.knopf-senden:hover { background: var(--ink-2); }
.knopf-senden:active { transform: scale(0.96); }
.knopf-senden.sichtbar { display: inline-flex; }

/* Zustand: Aufnahme läuft — Pegel-Fläche statt Textfeld */
.pegel {
  flex: 1;
  display: none;
  align-items: center;
  justify-content: space-between;
  background: var(--coral-soft);
  border-radius: 28px;
  height: 56px;
  padding: 0 20px;
}
.pegel.sichtbar { display: flex; }
.pegel-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pegel-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--coral-press);
}
.pegel-unter {
  font-size: 12px;
  line-height: 1.35;
  color: var(--coral-press);
  opacity: 0.75;
}
.pegel-balken {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 28px;
}
.pegel-balken i {
  width: 4px;
  height: 100%;
  border-radius: 3px;
  background: var(--coral);
  transform-origin: center;
  animation: pegel 900ms ease-in-out infinite;
}
.pegel-balken i:nth-child(1) { animation-delay: 0ms; }
.pegel-balken i:nth-child(2) { animation-delay: 120ms; }
.pegel-balken i:nth-child(3) { animation-delay: 240ms; }
.pegel-balken i:nth-child(4) { animation-delay: 60ms; }
.pegel-balken i:nth-child(5) { animation-delay: 320ms; }
.pegel-balken i:nth-child(6) { animation-delay: 180ms; }
.pegel-balken i:nth-child(7) { animation-delay: 400ms; }
.pegel-balken i:nth-child(8) { animation-delay: 90ms; }

@keyframes pegel {
  0%, 100% { transform: scaleY(0.25); }
  50% { transform: scaleY(1); }
}

/* Zustand: kein Mikrofon-Zugriff */
.mikro-hinweis {
  display: none;
  align-items: flex-start;
  gap: 10px;
  background: var(--paper);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--ink-3);
}
.mikro-hinweis.sichtbar { display: flex; }
.mikro-hinweis svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--ink-3); }

/* Fehler-Blase mit Wiederholen-Link */
.blase--bot .wiederholen {
  display: inline-block;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--coral-press);
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Krisenhinweis: kommt von der Oberfläche, nicht vom Gesprächspartner.
   Ruhig, mittig, ohne Warnfarbe. */
.krisen-hinweis {
  align-self: center;
  max-width: 92%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-3);
  text-align: center;
  animation: rise 380ms var(--ease-out);
}

/* ---------- 4 · E-Mail-Karte im Chat ---------- */

.email-karte {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: rise 380ms var(--ease-out);
  max-width: 100%;
}
.email-karte label.feld-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.email-karte input[type="email"] {
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  padding: 15px 16px;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  width: 100%;
  transition: border-color 140ms var(--ease-out);
}
.email-karte input[type="email"]:focus { border-color: var(--coral); }
.email-karte input[type="email"]::placeholder { color: var(--ink-4); }

.einwilligung {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  cursor: pointer;
}
.einwilligung input[type="checkbox"] {
  width: 22px; height: 22px;
  flex-shrink: 0;
  accent-color: var(--coral);
  margin-top: 1px;
  cursor: pointer;
}

.knopf-absenden {
  width: 100%;
  background: var(--coral);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  padding: 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-coral);
  transition: background 140ms var(--ease-out), transform 140ms var(--ease-out);
}
.knopf-absenden:hover:not(:disabled) { background: var(--coral-press); transform: translateY(-1px); }
.knopf-absenden:active:not(:disabled) { transform: scale(0.98); }
.knopf-absenden:disabled {
  background: var(--flaeche-inaktiv);
  color: var(--ink-4);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.karten-hinweis {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-4);
}

.feld-fehler {
  display: none;
  font-size: 13px;
  line-height: 1.5;
  color: var(--coral-press);
}
.feld-fehler.sichtbar { display: block; }

/* ---------- 5 · Danke-Bildschirm ---------- */

.danke {
  flex-direction: column;
  min-height: 100dvh;
  padding: 96px 30px 48px;
  background: var(--surface);
  overflow-y: auto;
}
.danke h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-wrap: balance;
}
.danke .dank-text {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}
.danke hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 36px 0 28px;
}
.danke h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.danke .teilen-text {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-3);
}

.teilen {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.knopf-teilen {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: 1.5px solid var(--line-strong);
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  border-radius: 999px;
  transition: border-color 140ms var(--ease-out);
}
.knopf-teilen svg { width: 19px; height: 19px; }
.knopf-teilen:hover { border-color: var(--ink); }

.danke .fusszeile { padding-top: 40px; }

/* ---------- 6 · Wartelisten-Seite ---------- */

.warteliste-seite {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 90px 30px 48px;
  background: var(--surface);
}
.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
}
.warteliste-seite h1 {
  margin-top: 14px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}
.warteliste-seite .einleitung {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}
.warteliste-formular {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.warteliste-formular label.feld-label {
  font-size: 15px;
  font-weight: 700;
}
.warteliste-formular input[type="email"] {
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  padding: 15px 16px;
  font-size: 16px;
  outline: none;
  width: 100%;
  transition: border-color 140ms var(--ease-out);
}
.warteliste-formular input[type="email"]:focus { border-color: var(--coral); }
.warteliste-formular input[type="email"]::placeholder { color: var(--ink-4); }

/* Erfolgszustand */
.warteliste-erfolg {
  display: none;
  margin-top: 32px;
  background: var(--mint);
  border: 1px solid var(--mint-deep);
  border-radius: 24px;
  padding: 32px 28px;
  animation: rise 380ms var(--ease-out);
}
.warteliste-erfolg.sichtbar { display: block; }
.warteliste-erfolg h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.warteliste-erfolg p {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
}
.warteliste-erfolg .editorial {
  margin-top: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 21px;
  color: var(--ink);
}

.warteliste-seite .fusszeile { padding-top: 48px; }

/* Desktop-Warteliste */
@media (min-width: 720px) {
  .warteliste-seite {
    padding: 0;
    background: var(--paper);
  }
  .warteliste-kopf {
    padding: 22px 48px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
  }
  .warteliste-kopf .wortmarke { font-size: 18px; }
  .warteliste-inhalt {
    width: 760px;
    max-width: calc(100% - 64px);
    margin: 72px auto 48px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 72px;
    align-items: start;
    flex: 1;
  }
  .warteliste-inhalt h1 { font-size: 44px; line-height: 1.06; }
  .warteliste-inhalt .einleitung { font-size: 18px; }
  .warteliste-serifzeile {
    margin-top: 26px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 24px;
    color: var(--ink);
  }
  .warteliste-karte {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-md);
  }
  .warteliste-karte .warteliste-formular { margin-top: 0; }
  .warteliste-seite .fusszeile { padding: 0 48px 28px; }
}
@media (max-width: 719.98px) {
  .warteliste-kopf { display: none; }
  .warteliste-serifzeile { display: none; }
}

/* ---------- 7 · Desktop-Fassung des Chats ---------- */

@media (min-width: 720px) {
  .chat-kopf {
    padding: 18px 32px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .verlauf {
    padding: 28px max(24px, calc((100% - 680px) / 2)) 12px;
    gap: 18px;
  }
  .blase { max-width: 78%; font-size: 17px; line-height: 1.6; }
  .blase--bot { border-radius: 24px 24px 24px 6px; }
  .blase--person { border-radius: 24px 24px 6px 24px; }
  .eingabe { padding: 14px 24px 18px; }
  .eingabe-zeile, .mikro-hinweis {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .textfeld { min-height: 56px; border-radius: 28px; }
  .knopf-mikro { width: 60px; height: 60px; }
  .chat-fusszeile { display: flex; }
  .email-karte { max-width: 680px; width: 100%; }
  .start h1 { font-size: 40px; }
}

.chat-fusszeile {
  display: none;
  gap: 20px;
  justify-content: center;
  font-size: 13px;
  padding-top: 12px;
}
.chat-fusszeile a { color: var(--ink-4); text-decoration: none; }
.chat-fusszeile a:hover { color: var(--ink-3); }
@media (min-width: 720px) {
  .chat-fusszeile { display: flex; }
}

/* ---------- 9 · Rechtsseiten ---------- */

.rechtsseite {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  padding: 40px 20px;
}
.rechtsseite .rechts-kopf {
  max-width: 720px;
  width: 100%;
  margin: 0 auto 24px;
}
.rechtsseite .rechts-kopf .wortmarke { font-size: 18px; }
.rechts-karte {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px 64px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 719.98px) {
  .rechts-karte { padding: 36px 26px; }
}
.rechts-karte h1 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 28px;
}
.rechts-karte h2 {
  font-size: 17px;
  font-weight: 800;
  margin-top: 32px;
  margin-bottom: 8px;
}
.rechts-karte p, .rechts-karte li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.rechts-karte li { margin-bottom: 8px; }
.rechts-karte ul { padding-left: 22px; margin-bottom: 24px; }
.rechts-karte a { color: var(--coral); text-underline-offset: 3px; }
.rechts-karte .hervorgehoben {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}
.rechts-fuss {
  max-width: 720px;
  width: 100%;
  margin: 28px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  gap: 20px;
  font-size: 13px;
}
.rechts-fuss a { color: var(--ink-4); text-decoration: none; }
.rechts-fuss a:hover { color: var(--ink-3); }

/* ---------- Bestätigt-Seite (Ziel nach DOI-Klick) ---------- */

.bestaetigt {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--mint);
  padding: 60px 30px;
  text-align: center;
}
.bestaetigt .wortmarke { font-size: 18px; margin-bottom: 28px; }
.bestaetigt h1 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-wrap: balance;
}
.bestaetigt p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 440px;
}
.bestaetigt .editorial {
  margin-top: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 21px;
  color: var(--ink);
}
.bestaetigt .fusszeile { position: fixed; bottom: 24px; left: 0; right: 0; }

/* ---------- Reduzierte Bewegung ---------- */

@media (prefers-reduced-motion: reduce) {
  .blase, .tippt, .email-karte, .warteliste-erfolg { animation: none; }
  .tippt span { animation: none; opacity: 0.6; }
  .pegel-balken i { animation: none; transform: scaleY(0.6); }
  .knopf-mikro[aria-pressed="true"]::before { animation: none; opacity: 0.4; }
}
