/* TwoBe Voranmeldung - die oeffentliche Pre-Launch-Seite (voranmeldung.html).
   VORANMELDUNG_V1 (21.09.2026). Dieselbe Familie wie anmeldung.css und konto.css: tiefes Violett, Gold als Marke,
   Glaskarte, Feld-Kaesten mit 12 px Rundung, ein weisser Pillen-Knopf. Rollenfarben aus den Hero-Tueren der Landing
   (Creative hellblau, Kuenstler flieder, Studio gold, Organisation rosa) - ueberall dort, wo eine Art benannt wird.
   EIN Bildschirm (Nutzer 21.09.: "nur 1 Seite auf einem Blick"): Marke, Leitspruch, Karte, unten der Fuss mit den
   Rechtstexten - kein Abschnitt darunter, keine Kopfleiste. Body = Raster Hero (1fr) + Fuss (auto) auf 100svh. */

.vor-seite {
  --tb-tint: #c9a85c;
  --tb-violet-soft: #a98dff;
  --tb-ink: #090810;
  --tb-text: #f7f6fb;
  --tb-text-soft: rgba(220, 224, 236, 0.72);
  --tb-text-leise: rgba(220, 224, 236, 0.48);
  --tb-linie: rgba(255, 255, 255, 0.08);
  --tb-feld: rgba(255, 255, 255, 0.045);
  --tb-feld-rand: rgba(255, 255, 255, 0.1);
  --tb-fehler: #ff8aa0;
  --rolle-creative: rgb(186, 232, 255);
  --rolle-kuenstler: rgb(226, 214, 255);
  --rolle-studio: rgb(247, 226, 168);
  --rolle-organisation: rgb(238, 186, 210);
  --vor-rand: clamp(20px, 5vw, 64px);
  --vor-breite: 1120px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  min-height: 100svh;
  overflow-x: clip;
  background:
    radial-gradient(ellipse 90% 55% at 50% -8%, rgba(123, 92, 255, 0.3), transparent 58%),
    radial-gradient(ellipse 45% 35% at 8% 28%, rgba(201, 168, 92, 0.12), transparent 52%),
    radial-gradient(ellipse 40% 30% at 96% 18%, rgba(255, 80, 160, 0.08), transparent 48%),
    linear-gradient(180deg, #1c152c 0%, #0d0b16 42%, var(--tb-ink) 100%);
  color: var(--tb-text);
  font-family: "Estedad", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Weiches Rollen gehoert ans Wurzelelement - nur dort gilt es fuer das Fenster. */
html:has(> .vor-seite) {
  scroll-behavior: smooth;
}

/* Feines Korn wie auf Landing und Anmeldung - nimmt dem Verlauf das Plastik. */
.vor-seite::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* hidden gewinnt gegen jedes display der Klassen (Fokus-Block, Freifeld, Karte/Dank wechseln sich ab). */
.vor-seite [hidden] {
  display: none !important;
}

.vor-seite :focus-visible {
  outline: 2px solid color-mix(in srgb, var(--tb-tint) 80%, transparent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Felder und die Fokus-Wahl tragen ihren eigenen Ring (goldener Rand + Schein) - kein zweiter Rahmen darum. */
.vor-feld input:focus-visible,
.vor-wahl:focus-visible {
  outline: none;
  border-radius: 12px;
}

.vor-wahl:focus-visible {
  border-color: var(--tb-tint);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--tb-tint) 22%, transparent);
}

/* Sprunglink fuer Tastatur und Vorleser - sichtbar nur mit Fokus. */
.vor-sprung {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: #141218;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
}

.vor-sprung:focus-visible {
  transform: none;
}

/* ---------------------------------------------------------------------
   Gemeinsame Schrift-Bausteine
   --------------------------------------------------------------------- */
.vor-kicker {
  margin: 0;
  color: var(--tb-tint);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.vor-primaer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin: 6px 0 0;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f2ee 100%);
  color: #141218;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 22px rgba(0, 0, 0, 0.28);
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.vor-primaer:hover {
  filter: brightness(1.04);
}

.vor-primaer:active {
  transform: translateY(1px);
}

.vor-primaer:disabled {
  cursor: wait;
  opacity: 0.7;
}

.vor-zweit {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(169, 141, 255, 0.4);
  border-radius: 999px;
  background: rgba(169, 141, 255, 0.08);
  color: #e6ddff;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.vor-zweit:hover,
.vor-zweit:focus-visible {
  border-color: rgba(169, 141, 255, 0.8);
  background: rgba(169, 141, 255, 0.16);
}

.vor-leise-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 4px;
  border: 0;
  background: none;
  color: var(--tb-text-soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 160ms ease,
    border-color 160ms ease;
}

.vor-leise-link:hover,
.vor-leise-link:focus-visible {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

/* ---------------------------------------------------------------------
   Hero - links das Wort mit der grossen Marke, rechts die Karte.
   --------------------------------------------------------------------- */
.vor-hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100%;
  padding: clamp(32px, 5vh, 72px) var(--vor-rand) clamp(24px, 4vh, 56px);
}

.vor-hero__innen {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
  align-items: center;
  column-gap: clamp(40px, 7vw, 110px);
  width: min(var(--vor-breite), 100%);
  margin: 0 auto;
}

.vor-hero__wort {
  display: grid;
  gap: 18px;
  max-width: 560px;
}

/* Die Marke mit Aura - wie LANDING_LOGO_V2, nur im Fluss statt absolut: sie nimmt ihren Platz und schiebt nichts. */
.vor-marke {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: clamp(120px, 16vh, 200px);
  aspect-ratio: 1;
  margin-bottom: 4px;
}

.vor-marke__aura {
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, rgba(169, 141, 255, 0.42), transparent 62%),
    radial-gradient(circle at 60% 70%, rgba(201, 168, 92, 0.22), transparent 58%);
  filter: blur(14px);
  animation: vor-atmen 9s ease-in-out infinite alternate;
}

.vor-marke__logo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 28px rgba(123, 92, 255, 0.45)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

@keyframes vor-atmen {
  from {
    transform: scale(0.96);
    opacity: 0.8;
  }
  to {
    transform: scale(1.06);
    opacity: 1;
  }
}

.vor-titel {
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 4.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.vor-titel em {
  font-style: normal;
  color: var(--tb-violet-soft);
  text-shadow: 0 0 34px rgba(169, 141, 255, 0.45);
}

.vor-satz {
  margin: 0;
  max-width: 50ch;
  color: var(--tb-text-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.6;
}

/* Die Schlusszeile des Textblocks - hell, eigene Zeile, damit sie landet. */
.vor-satz--schluss {
  color: var(--tb-text);
  font-weight: 600;
}

/* VOR_CREDIT_V1 (css v12: Kartensatz kurz "Trag dich ein. Du hörst zuerst von uns.") - die Credit-Zeile unter dem Leitsatz, gebaut wie die Fund-Buehne der Landing (landing-fund-tipp):
   Rolle als Kapitaelchen, Feld mit Linie, Caret. Voll (is-voll) wird Linie und Wort Gold. */
.vor-credit {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin-top: 6px;
}

.vor-credit__rolle {
  color: var(--tb-text-leise);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 260ms ease;
}

.vor-credit.is-wechsel .vor-credit__rolle {
  opacity: 0;
}

.vor-credit__feld {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0 2px 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.34);
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  transition: border-color 500ms ease;
}

.vor-credit.is-voll .vor-credit__feld {
  border-color: var(--tb-tint);
}

.vor-credit__wort {
  color: var(--tb-tint);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 0 28px rgba(201, 168, 92, 0.35);
}

.vor-credit__caret {
  display: block;
  flex: 0 0 2px;
  width: 2px;
  height: 1em;
  margin-left: 5px;
  background: rgba(255, 255, 255, 0.85);
  animation: vor-credit-caret 1s steps(1) infinite;
}

.vor-credit.is-voll .vor-credit__caret {
  background: var(--tb-tint);
}

@keyframes vor-credit-caret {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

/* ---------------------------------------------------------------------
   VOR_ABSPANN_V1 - der Abspann mit Luecken (twobe-voranmeldung.js baut ihn)
   --------------------------------------------------------------------- *//* ---------------------------------------------------------------------
   VOR_ABSPANN_V1 - der Abspann mit Luecken (twobe-voranmeldung.js baut ihn)
   --------------------------------------------------------------------- */
.vor-abspann {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 14%, #000 84%, transparent 100%);
}

.vor-abspann__bahn {
  position: absolute;
  top: 0;
  display: grid;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: vor-abspann-lauf var(--dauer, 90s) linear infinite;
}

.vor-abspann__bahn--links {
  --dauer: 96s;
  left: clamp(8px, 2vw, 40px);
  width: 220px;
}

.vor-abspann__bahn--rechts {
  --dauer: 124s;
  right: clamp(8px, 2vw, 40px);
  width: 200px;
  opacity: 0.7;
  text-align: right;
}

.vor-abspann__eintrag {
  display: grid;
  gap: 5px;
}

.vor-abspann__rolle {
  color: var(--tb-text-leise);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.vor-abspann__luecke {
  position: relative;
  display: block;
  height: 16px;
}

.vor-abspann__luecke i {
  display: block;
  width: 128px;
  height: 100%;
  border-bottom: 1px solid var(--tb-linie);
}

.vor-abspann__bahn--rechts .vor-abspann__luecke i {
  margin-left: auto;
}

.vor-abspann__luecke b {
  position: absolute;
  top: -3px;
  left: 0;
  color: var(--tb-tint);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 600ms ease;
}

.vor-abspann__bahn--rechts .vor-abspann__luecke b {
  left: auto;
  right: 0;
}

.vor-abspann__luecke.is-voll b {
  opacity: 1;
}

@keyframes vor-abspann-lauf {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

/* VOR_ZWEI_SCHRITTE_V2 - Schritt zwei im Dank: Name, Fokus-Wort, Genre - freiwillig, still. */
.vor-nachtrag {
  display: grid;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--tb-linie);
}

.vor-nachtrag__satz {
  margin: 0;
  color: var(--tb-text-soft);
  font-size: 0.9rem;
}

.vor-nachtrag__wege {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
}

/* Schritt zwei ist, solange er offen ist, der ganze Blick: Ring, Satz und Wege kommen danach. Die Woerter enger. */
.vor-danke.is-schritt-zwei .vor-danke__ring,
.vor-danke.is-schritt-zwei [data-vor-danke-satz],
.vor-danke.is-schritt-zwei .vor-danke__wege {
  display: none;
}

.vor-nachtrag .vor-wort {
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.76rem;
}

.vor-nachtrag .vor-fokus__woerter {
  gap: 5px;
}

/* ---------------------------------------------------------------------
   Die Karte
   --------------------------------------------------------------------- *//* ---------------------------------------------------------------------
   Die Karte
   --------------------------------------------------------------------- */
.vor-karte {
  position: relative;
  width: 100%;
  padding: 30px 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(9, 12, 18, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 26px 80px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  scroll-margin-top: 80px;
}

.vor-karte__form,
.vor-danke {
  display: grid;
  gap: 14px;
}

.vor-kicker--karte {
  font-size: 0.7rem;
}

.vor-karte__titel {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.vor-karte__satz {
  margin: -2px 0 0;
  color: var(--tb-text-soft);
  font-size: 0.97rem;
  line-height: 1.5;
}

.vor-form {
  display: grid;
  gap: 16px;
  margin-top: 4px;
}

.vor-feld {
  display: grid;
  gap: 7px;
  font-weight: 400;
}

.vor-feld > span,
.vor-feldname,
.vor-rollen > legend {
  color: rgba(247, 246, 251, 0.82);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.vor-feld > span em {
  margin-left: 6px;
  color: var(--tb-text-leise);
  font-style: normal;
  font-weight: 500;
}

.vor-feld input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--tb-feld-rand);
  border-radius: 12px;
  outline: 0;
  background: var(--tb-feld);
  color: var(--tb-text);
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.vor-feld input::placeholder {
  color: rgba(220, 224, 236, 0.32);
  font-weight: 400;
}

.vor-feld input:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.vor-feld input:focus {
  border-color: var(--tb-tint);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--tb-tint) 22%, transparent);
}

.vor-feld input[aria-invalid="true"] {
  border-color: var(--tb-fehler);
}

.vor-feld input:-webkit-autofill,
.vor-feld input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--tb-text);
  -webkit-box-shadow: 0 0 0 1000px #17131f inset;
  caret-color: var(--tb-text);
  border-radius: 12px;
}

/* Die vier Arten als Wahl - zwei Reihen, jede Art in ihrer Farbe, sobald sie gewaehlt ist. */
.vor-rollen {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.vor-rollen > legend {
  padding: 0;
  margin-bottom: 8px;
}

.vor-rollen__reihe {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vor-rolle {
  --rolle: var(--tb-text);
  display: grid;
  gap: 2px;
  min-height: 56px;
  padding: 9px 12px;
  border: 1px solid var(--tb-feld-rand);
  border-radius: 12px;
  background: var(--tb-feld);
  color: var(--tb-text);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.vor-rolle--creative {
  --rolle: var(--rolle-creative);
}

.vor-rolle--kuenstler {
  --rolle: var(--rolle-kuenstler);
}

.vor-rolle--studio {
  --rolle: var(--rolle-studio);
}

.vor-rolle--organisation {
  --rolle: var(--rolle-organisation);
}

.vor-rolle strong {
  font-size: 0.95rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: color 160ms ease;
}

.vor-rolle small {
  color: var(--tb-text-leise);
  font-size: 0.74rem;
  line-height: 1.3;
}

/* v13 - Nutzer: "die rechte Seite sieht so dunkel und tot aus ... wenigstens beim Hovern farblich nach Rollenfarben":
   Hover in der Rollenfarbe (Rand, Hauch Fläche, Wort), die Wahl bleibt kräftiger. */
.vor-rolle:hover {
  border-color: color-mix(in srgb, var(--rolle) 55%, transparent);
  background: color-mix(in srgb, var(--rolle) 7%, var(--tb-feld));
}

.vor-rolle:hover strong {
  color: var(--rolle);
}

.vor-rolle:hover small {
  color: var(--tb-text-soft);
}

.vor-rolle[aria-checked="true"] {
  border-color: color-mix(in srgb, var(--rolle) 70%, transparent);
  background: color-mix(in srgb, var(--rolle) 9%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--rolle) 18%, transparent);
}

.vor-rolle[aria-checked="true"] strong {
  color: var(--rolle);
}

.vor-rollen.has-error .vor-rolle {
  border-color: color-mix(in srgb, var(--tb-fehler) 60%, transparent);
}

/* Der Fokus - Knopf mit Unterstrich-Gefuehl im Kasten, darunter die Liste als dunkle Karte. */
.vor-fokus {
  position: relative;
  display: grid;
  gap: 7px;
}

/* FOKUS_WOERTER_V1 - die Woerter der Art als Reihe. VOR_ZWEI_SCHRITTE_V2: im Dank, still, ohne Vorschau. */
.vor-fokus__woerter {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vor-wort {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--tb-feld-rand);
  border-radius: 999px;
  background: transparent;
  color: var(--tb-text-soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.vor-wort:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--tb-text);
}

.vor-wort[aria-checked="true"] {
  border-color: var(--tb-tint);
  background: color-mix(in srgb, var(--tb-tint) 10%, transparent);
  color: var(--tb-tint);
}

/* Der Fokus wird zum Formular-Fluss: die Listenposition darf die Karte nicht sprengen. */
.vor-feld--frei {
  margin-top: 2px;
}

/* GENRE_EINHEIT_V1 - Genre aus der Liste als Chips (Schritt zwei): Klick waehlt, nochmal nimmt es raus, bis zu drei. */
.vor-genre {
  display: grid;
  gap: 7px;
}

.vor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.vor-nachtrag .vor-chip {
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.76rem;
}

.vor-chip {
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--tb-feld-rand);
  border-radius: 999px;
  background: transparent;
  color: var(--tb-text-soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.vor-chip:hover {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.vor-chip[aria-pressed="true"] {
  border-color: color-mix(in srgb, var(--tb-tint) 70%, transparent);
  background: color-mix(in srgb, var(--tb-tint) 14%, transparent);
  color: #f3e3b6;
}

/* Die Zustimmung - ein Haken in Gold, ein Satz. */
.vor-haken {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 2px;
  color: var(--tb-text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
  cursor: pointer;
}

.vor-haken input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--tb-tint);
  cursor: pointer;
}

.vor-haken a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.vor-haken.has-error {
  color: var(--tb-fehler);
}

.vor-honig {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.vor-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--tb-tint);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.vor-status:empty {
  display: none;
}

.vor-status.is-fehler {
  color: var(--tb-fehler);
}

/* Der Dank - ein goldener Ring mit Haken, dann das Wort. */
.vor-danke {
  align-content: center;
  min-height: 100%;
}

.vor-karte {
  display: grid;
}

.vor-danke__ring {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 6px;
  border-radius: 50%;
  border: 2px solid var(--tb-tint);
  color: var(--tb-tint);
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--tb-tint) 14%, transparent),
    0 0 40px rgba(201, 168, 92, 0.35);
  animation: vor-ring 640ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.vor-danke__ring svg {
  width: 28px;
  height: 28px;
}

.vor-danke__ring svg path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: vor-haken-zeichnen 420ms 260ms ease-out forwards;
}

@keyframes vor-ring {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@keyframes vor-haken-zeichnen {
  to {
    stroke-dashoffset: 0;
  }
}

.vor-danke__zeile {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--tb-feld);
  border: 1px solid var(--tb-feld-rand);
  color: rgba(247, 246, 251, 0.86);
  font-size: 0.92rem;
  line-height: 1.45;
}

.vor-danke__zeile b {
  color: var(--tb-tint);
  font-weight: 700;
}

.vor-danke__wege {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-top: 6px;
}

.vor-leise-link--knopf {
  min-height: 42px;
}

/* ---------------------------------------------------------------------
   Fuss - Rechtstexte, unten im selben Bildschirm.
   --------------------------------------------------------------------- */
.vor-fuss {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  width: min(var(--vor-breite), 100%);
  margin: 0 auto;
  padding: 16px var(--vor-rand) 18px;
  border-top: 1px solid var(--tb-linie);
}

.vor-fuss__marke {
  margin: 0;
  color: var(--tb-text-leise);
  font-size: 0.82rem;
}

.vor-fuss__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.vor-fuss__links a {
  color: rgba(220, 224, 236, 0.5);
  font-size: 0.82rem;
  text-decoration: none;
}

.vor-fuss__links a:hover,
.vor-fuss__links a:focus-visible {
  color: #fff;
}

/* ---------------------------------------------------------------------
   Schmale Fenster
   --------------------------------------------------------------------- */
@media (max-width: 960px) {
  .vor-hero {
    padding-top: clamp(48px, 8vh, 80px);
  }

  .vor-abspann {
    opacity: 0.3;
  }

  .vor-abspann__bahn--rechts {
    display: none;
  }

  .vor-hero__innen {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 40px;
    justify-items: center;
  }

  .vor-hero__wort {
    max-width: 620px;
    justify-items: center;
    text-align: center;
  }

  .vor-karte {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .vor-seite {
    --vor-rand: 16px;
  }

  .vor-karte {
    padding: 24px 18px 20px;
    border-radius: 18px;
  }

  .vor-rollen__reihe {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vor-rolle {
    min-height: 46px;
    align-content: center;
  }

  .vor-titel {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .vor-fuss {
    justify-content: center;
    text-align: center;
  }
}

/* Niedrige Fenster neben dem Wort (1440x900, 1280x800, 1366x768): die Karte wird kompakt, damit die ganze Seite
   ohne Scrollen steht - engere Luft. Gemessen: 827 px Karte + Luft = 935 px, passt nicht in 900 px Hoehe. VOR_ZWEI_SCHRITTE_V2: Schritt eins ist 513 px - die Untertitel der vier Karten ("Producer,
   Mixing, Mastering") bleiben jetzt in jeder Hoehe, sie sind das "keiner fuehlt sich ausgeschlossen". */
@media (min-width: 961px) and (max-height: 940px) {
  .vor-karte {
    padding: 24px 26px 22px;
  }

  .vor-karte__form,
  .vor-form {
    gap: 12px;
  }

  .vor-marke {
    width: clamp(96px, 14vh, 140px);
  }
}

@media (min-width: 961px) and (max-height: 830px) {
  .vor-karte__satz {
    display: none;
  }

  .vor-hero__wort {
    gap: 12px;
  }
}

/* Ganz niedrig (1280x720): noch engere Luft, kleinere Marke - der Fuss bleibt im Bild. */
@media (min-width: 961px) and (max-height: 750px) {
  .vor-karte {
    padding: 20px 22px 18px;
  }

  .vor-karte__form,
  .vor-form {
    gap: 10px;
  }

  .vor-marke {
    width: 84px;
  }

  .vor-hero {
    padding-top: 24px;
    padding-bottom: 16px;
  }
}

@media (max-height: 640px) {
  .vor-marke {
    width: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:has(> .vor-seite) {
    scroll-behavior: auto;
  }

  .vor-abspann__bahn {
    animation: none;
  }

  .vor-credit__caret {
    animation: none;
  }

  .vor-marke__aura,
  .vor-danke__ring,
  .vor-danke__ring svg path {
    animation: none;
  }

  .vor-danke__ring svg path {
    stroke-dashoffset: 0;
  }


    transition: none;
  }
}
