:root {
  --creme:      #ffffff;
  --creme-hell: #fafafa;
  --creme-tief: #e6e4e0;

  --bordeaux:      #97162c;
  --bordeaux-tief: #74101f;
  --ocker:         #e2bd72;
  --ocker-tief:    #c99a3f;
  --tinte:         #3a2a22;

  --linie:      rgba(151, 22, 44, 0.30);
  --linie-fein: rgba(58, 42, 34, 0.16);

  --rand: 3.2vw;
  --spalte: 46rem;

  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans:  "Frutiger", "Frutiger LT Std", "Frutiger Neue LT", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  height: 100%;
  font-size: clamp(16px, min(1.45vw, 2.1vh), 26px);
}

body {
  height: 100%;
  overflow: hidden;
  background: var(--creme);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: 1.15rem;
  line-height: 1.55;
  -webkit-tap-highlight-color: transparent;
}

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

.ebene {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: none;
  flex-direction: column;
  padding: calc(var(--rand) * 0.9) var(--rand);
  overflow: hidden;
}

.ebene--aktiv {
  display: flex;
  animation: ebene-auf 0.4s ease both;
}

@keyframes ebene-auf {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.kopf {
  flex: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 0.7rem;
}

.marke {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.45;
}

.marke span:first-child { color: var(--ocker-tief); }
.marke span:last-child  { color: var(--bordeaux); }

.kopf-rechts {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  text-align: right;
}

.zaehler {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bordeaux);
  letter-spacing: 0.08em;
}

.schritte {
  flex: none;
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.schritte span {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: var(--creme-tief);
  transition: background 0.3s ease;
}

.schritte span.voll { background: var(--bordeaux); }

.mitte {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow-y: auto;
}

.mitte--frage {
  justify-content: flex-start;
  animation: frage-auf 0.35s ease both;
}

@keyframes frage-auf {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.schlagzeile {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1.1;
  color: var(--bordeaux);
  margin-bottom: 1.2rem;
}

.schlagzeile--klein { font-size: 2.4rem; }

#screen-start .schlagzeile {
  font-size: 2.7rem;
  max-width: 30ch;
  margin-bottom: 1.4rem;
}

.frage-titel {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.15;
  color: var(--bordeaux);
  max-width: 24ch;
  margin: 0 auto 0.6rem;
}

.frage-hinweis {
  font-size: 1.15rem;
  color: var(--tinte);
  max-width: 54ch;
  margin: 0 auto 1.4rem;
}

.szenario {
  max-width: 52ch;
  font-size: 1.25rem;
  line-height: 1.65;
  margin: 0 auto 1.4rem;
}

.kernfrage {
  max-width: var(--spalte);
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--bordeaux);
  padding-top: 1.1rem;
  border-top: 3px solid var(--ocker);
  margin: 0 auto 2rem;
  max-width: 44ch;
}

#screen-start .mitte { justify-content: safe center; overflow: hidden; }

.raum {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ocker-tief);
}

.kette {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  gap: 0.7rem;
  max-width: 54rem;
  margin-bottom: 1.5rem;
}

.anlass {
  padding: 0.5rem 1.1rem;
  border: 2px solid var(--ocker);
  border-radius: 999px;
  background: var(--creme-hell);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tinte);
}

.kette-pfeil {
  width: 1.6rem;
  height: 1.6rem;
  flex: none;
  fill: none;
  stroke: var(--ocker-tief);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ziel {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--bordeaux);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--creme-hell);
}

.teaser-laeuft .teaser {
  animation: teaser-auf 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--verz, 0s);
}

@keyframes teaser-auf {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.startfuss {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.1rem;
}

.anonym {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocker-tief);
  text-align: right;
}

.regler-block {
  width: 100%;
  max-width: var(--spalte);
  margin: 0 auto;
}

.regler {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3.4rem;
  background: transparent;
  cursor: pointer;
}

.regler::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--bordeaux) var(--fuellung, 50%), var(--creme-tief) var(--fuellung, 50%));
}

.regler::-moz-range-track {
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--bordeaux) var(--fuellung, 50%), var(--creme-tief) var(--fuellung, 50%));
}

.regler::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 2.6rem;
  height: 2.6rem;
  margin-top: -1.15rem;
  border-radius: 50%;
  background: var(--creme-hell);
  border: 4px solid var(--bordeaux);
}

.regler::-moz-range-thumb {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--creme-hell);
  border: 4px solid var(--bordeaux);
}

.pole {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--tinte);
}

.pole span:last-child { text-align: right; }

.regler-wert {
  display: block;
  margin-top: 1.4rem;
  text-align: center;
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bordeaux);
}

.liste {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  text-align: left;
}

.zeile-wahl {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.95rem 1.3rem;
  border: 2px solid var(--linie-fein);
  border-radius: 8px;
  background: var(--creme-hell);
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--tinte);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.zeile-wahl--gewaehlt {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--creme-hell);
  font-weight: 600;
}

.kasten {
  flex: none;
  width: 1.6rem;
  height: 1.6rem;
  border: 2px solid var(--bordeaux);
  border-radius: 4px;
  background: var(--creme-hell);
  position: relative;
}

.zeile-wahl--gewaehlt .kasten::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 8%;
  width: 24%;
  height: 55%;
  border: solid var(--bordeaux);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

body[data-typ="raster"] .mitte--frage { overflow: hidden; }
body[data-typ="raster"] .frage-titel { font-size: 2.1rem; max-width: 30ch; }
body[data-typ="raster"] .frage-hinweis { margin-bottom: 1rem; }

.raster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto;
  text-align: left;
}

.bereich {
  padding: 0.9rem 1.1rem;
  border: 2px solid var(--linie-fein);
  border-radius: 8px;
  background: var(--creme-hell);
  transition: border-color 0.2s ease;
}

.bereich[data-wahl="wachstum"],
.bereich[data-wahl="sorge"],
.bereich[data-wahl="beide"] { border-color: var(--bordeaux); }

.bereich-kopf {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.bereich-kopf svg {
  flex: none;
  width: 2rem;
  height: 2rem;
  fill: none;
  stroke: var(--bordeaux);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bereich-kopf h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bordeaux);
  line-height: 1.2;
}

.bereich-knoepfe { display: flex; gap: 0.7rem; }

.mini-knopf {
  all: unset;
  cursor: pointer;
  flex: 1;
  text-align: center;
  padding: 0.7rem 0.5rem;
  border: 2px solid var(--linie);
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bordeaux);
  background: var(--creme-hell);
  transition: background 0.2s ease, color 0.2s ease;
}

.mini-knopf--an {
  background: var(--bordeaux);
  border-color: var(--bordeaux);
  color: var(--creme-hell);
}

.freitext {
  display: block;
  width: 100%;
  max-width: 52rem;
  height: 9rem;
  padding: 1.1rem 1.3rem;
  border: 2px solid var(--linie-fein);
  border-radius: 8px;
  background: var(--creme-hell);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: 1.25rem;
  line-height: 1.55;
  resize: none;
}

.regler:focus { outline: none; }
.regler:focus-visible { outline: none; }
.regler:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 5px rgba(151, 22, 44, 0.3); }
.regler:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 5px rgba(151, 22, 44, 0.3); }

.freitext::placeholder { color: var(--tinte); opacity: 0.45; }
.freitext:focus { outline: none; border-color: var(--bordeaux); }

.navigation {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.1rem;
}

.btn {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn--voll {
  background: var(--bordeaux);
  color: var(--creme-hell);
}

.btn--voll:active { background: var(--bordeaux-tief); }

.btn--linie {
  border: 2px solid var(--bordeaux);
  background: var(--creme-hell);
  color: var(--bordeaux);
}

.btn--linie:active { background: var(--creme-tief); }

.btn[hidden] { visibility: hidden; display: inline-flex; }

.btn--start {
  align-self: center;
  padding: 1.6rem 3.4rem;
  font-size: 1.65rem;
  line-height: 1.25;
  text-align: left;
  gap: 1.6rem;
}

.btn--start .hand { width: 3.5rem; height: 3.5rem; }

.btn--dgs { padding: 0.8rem 1.5rem; font-size: 1.05rem; font-weight: 600; }
.btn--klein { padding: 0.7rem 1.5rem; font-size: 1.05rem; }

.pfeil {
  width: 1.2rem;
  height: 1.2rem;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hand {
  width: 2.9rem;
  height: 2.9rem;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: tippen 2.4s ease-in-out infinite;
}

.hand--ruhig { width: 1.8rem; height: 1.8rem; animation: none; }

@keyframes tippen {
  0%, 32%, 100% { transform: translateY(0)       scale(1); }
  46%           { transform: translateY(0.65rem) scale(0.82); }
  60%           { transform: translateY(0)       scale(1); }
  70%           { transform: translateY(0.3rem)  scale(0.92); }
  80%           { transform: translateY(0)       scale(1); }
}

.zusammenfassung {
  width: 100%;
  max-width: var(--spalte);
  margin: 0 auto;
  border-top: 3px solid var(--ocker);
  text-align: left;
}

.ergebnis-zeile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--linie-fein);
  font-size: 1.2rem;
}

.ergebnis-zeile b {
  font-weight: 600;
  color: var(--tinte);
}

.ergebnis-zeile span {
  font-weight: 700;
  color: var(--bordeaux);
  text-align: right;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--rand);
  background: rgba(58, 42, 34, 0.55);
}

.overlay[hidden] { display: none; }

.overlay-karte {
  width: min(46rem, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 2.2rem;
  border: 3px solid var(--bordeaux);
  border-radius: 10px;
  background: var(--creme);
  text-align: center;
}

.overlay-karte .btn { margin-top: 1.4rem; }

.video-platzhalter {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 3px dashed var(--linie);
  border-radius: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bordeaux);
}

.video-platzhalter .anonym { text-align: center; }

@media (max-width: 760px) {
  :root { --rand: 5vw; }

  .btn { padding: 0.95rem 1.5rem; }
  .startfuss { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .anonym { text-align: left; }
}

@media (max-width: 560px) and (min-height: 760px) {
  .raster { grid-template-columns: 1fr; }
}

@media (max-height: 900px) {
  .schlagzeile { font-size: 2.9rem; margin-bottom: 0.9rem; }
  #screen-start .schlagzeile { font-size: 2.35rem; margin-bottom: 1rem; }
  .kette { margin-bottom: 1.1rem; }
  .frage-titel { font-size: 2.2rem; }
  .frage-hinweis { margin-bottom: 1rem; }
  .schritte { margin-bottom: 1.1rem; }
  .kernfrage { margin-bottom: 1.4rem; padding-top: 0.9rem; }
  .liste, .raster { gap: 0.6rem; }
  .zeile-wahl { padding: 0.8rem 1.2rem; }
  .freitext { height: 7rem; }

  body[data-typ="raster"] .frage-hinweis { margin-bottom: 0.9rem; }
  .bereich { padding: 0.75rem 1rem; }
  .bereich-kopf { margin-bottom: 0.7rem; }
  .mini-knopf { padding: 0.65rem 0.5rem; }
}

@media (max-height: 800px) {
  #screen-start .schlagzeile { font-size: 2.2rem; margin-bottom: 0.9rem; }
  .kette { gap: 0.5rem; margin-bottom: 1rem; }
  .anlass, .ziel { padding: 0.42rem 0.95rem; font-size: 1.02rem; }
  #screen-start .szenario { font-size: 1.15rem; margin-bottom: 1rem; }
  .kernfrage { font-size: 1.4rem; padding-top: 0.8rem; margin-bottom: 1.1rem; }
  .btn--start { padding: 1.25rem 2.6rem; font-size: 1.4rem; }
  .btn--start .hand { width: 2.9rem; height: 2.9rem; }

  body[data-typ="raster"] .frage-titel { margin-bottom: 0.4rem; }
  body[data-typ="raster"] .frage-hinweis { margin-bottom: 0.8rem; }
  .raster { gap: 0.55rem 0.8rem; }
  .bereich { padding: 0.65rem 0.95rem; }
  .bereich-kopf { margin-bottom: 0.6rem; }
  .mini-knopf { padding: 0.6rem 0.5rem; }
}

@media (max-height: 760px) {
  body[data-typ="raster"] .frage-titel { font-size: 2rem; }
  .raster { gap: 0.5rem 0.8rem; }
  .bereich { padding: 0.6rem 0.9rem; }
  .bereich-kopf { margin-bottom: 0.5rem; }
  .bereich-kopf svg { width: 1.8rem; height: 1.8rem; }
  .mini-knopf { padding: 0.55rem 0.5rem; }
}

@media (max-height: 700px) {
  #screen-ende .schlagzeile { font-size: 2.4rem; margin-bottom: 0.7rem; }
  #screen-ende .szenario { margin-bottom: 0.9rem; }
  .ergebnis-zeile { padding: 0.55rem 0; }

  body[data-typ="raster"] .frage-titel { font-size: 1.9rem; margin-bottom: 0.35rem; }
  body[data-typ="raster"] .frage-hinweis { margin-bottom: 0.6rem; }
  .raster { gap: 0.45rem 0.7rem; }
  .bereich { padding: 0.55rem 0.85rem; }
  .bereich-kopf { margin-bottom: 0.45rem; }
  .bereich-kopf svg { width: 1.6rem; height: 1.6rem; }
  .mini-knopf { padding: 0.5rem 0.4rem; }
}

@media (max-height: 680px) {
  #screen-start .schlagzeile { font-size: 1.9rem; margin-bottom: 0.7rem; }
  .kette { margin-bottom: 0.8rem; }
  #screen-start .szenario { margin-bottom: 0.8rem; }
  .kernfrage { font-size: 1.25rem; margin-bottom: 0.9rem; }
  .btn--start { padding: 1.1rem 2.2rem; font-size: 1.25rem; }

  body[data-typ="raster"] .navigation { padding-top: 0.8rem; }
  .bereich { padding: 0.5rem 0.8rem; }
  .bereich-kopf { margin-bottom: 0.4rem; }
  .mini-knopf { padding: 0.45rem 0.4rem; }
}

@media (min-height: 660px) {
  body[data-typ="raster"] .mitte--frage { justify-content: center; }
  body[data-typ="raster"] .raster { gap: 0.8rem 1rem; }
  body[data-typ="raster"] .bereich { padding: 0.9rem 1.15rem; }
  body[data-typ="raster"] .bereich-kopf { margin-bottom: 0.8rem; }
  body[data-typ="raster"] .mini-knopf { padding: 0.72rem 0.6rem; }
}

@media (min-height: 740px) {
  body[data-typ="raster"] .raster { gap: 1.2rem 1.2rem; }
  body[data-typ="raster"] .bereich { padding: 1.2rem 1.4rem; }
  body[data-typ="raster"] .bereich-kopf { margin-bottom: 1.05rem; }
  body[data-typ="raster"] .mini-knopf { padding: 0.92rem 0.6rem; }
}

@media (min-width: 1200px) {
  .mitte--frage { justify-content: center; }

  .frage-titel {
    font-size: clamp(2.4rem, 2.9vw, 4.4rem);
    max-width: 20ch;
    margin-bottom: clamp(0.6rem, 1.4vh, 1.2rem);
  }

  .frage-hinweis {
    font-size: clamp(1.15rem, 1.15vw, 1.8rem);
    max-width: 60ch;
    margin-bottom: clamp(1rem, 3vh, 2.4rem);
  }

  .liste,
  .raster,
  .regler-block,
  .freitext { max-width: min(1500px, 94%); }

  .liste { gap: clamp(0.7rem, 2vh, 1.6rem); }

  .zeile-wahl {
    padding: clamp(1.1rem, 3.1vh, 2.4rem) clamp(1.4rem, 1.6vw, 2.6rem);
    font-size: clamp(1.3rem, 1.4vw, 2.1rem);
    gap: 1.4rem;
    border-radius: 10px;
  }

  .kasten {
    width: clamp(1.7rem, 1.5vw, 2.6rem);
    height: clamp(1.7rem, 1.5vw, 2.6rem);
  }

  .regler { height: clamp(3.4rem, 6vh, 5rem); }
  .regler::-webkit-slider-runnable-track { height: 14px; border-radius: 7px; }
  .regler::-moz-range-track { height: 14px; border-radius: 7px; }
  .regler::-webkit-slider-thumb {
    width: clamp(2.6rem, 2.4vw, 3.8rem);
    height: clamp(2.6rem, 2.4vw, 3.8rem);
    margin-top: clamp(-1.7rem, -1.05vw, -1.2rem);
  }
  .regler::-moz-range-thumb { width: clamp(2.4rem, 2.2vw, 3.4rem); height: clamp(2.4rem, 2.2vw, 3.4rem); }
  .pole { font-size: clamp(1.1rem, 1.05vw, 1.6rem); }
  .regler-wert {
    font-size: clamp(2rem, 2.1vw, 3.2rem);
    margin-top: clamp(1rem, 3vh, 2.2rem);
  }

  .raster { gap: clamp(0.7rem, 1.8vh, 1.6rem) clamp(1rem, 1.6vw, 2rem); }
  .bereich {
    padding: clamp(0.9rem, 2.6vh, 1.9rem) clamp(1.2rem, 1.6vw, 2.4rem);
    border-radius: 10px;
  }
  .bereich-kopf { margin-bottom: clamp(0.6rem, 1.6vh, 1.3rem); }
  .bereich-kopf svg { width: clamp(2rem, 1.9vw, 3rem); height: clamp(2rem, 1.9vw, 3rem); }
  .bereich-kopf h3 { font-size: clamp(1.25rem, 1.25vw, 2rem); }
  .mini-knopf {
    padding: clamp(0.8rem, 2.4vh, 1.6rem) 0.6rem;
    font-size: clamp(1.05rem, 1.05vw, 1.6rem);
  }
  .bereich-knoepfe { gap: clamp(0.7rem, 1.2vw, 1.6rem); }

  .freitext {
    height: clamp(9rem, 32vh, 18rem);
    font-size: clamp(1.25rem, 1.2vw, 1.9rem);
    padding: clamp(1rem, 2vh, 1.8rem) clamp(1.2rem, 1.4vw, 2rem);
  }

  .navigation .btn {
    padding: clamp(1rem, 2vh, 1.6rem) clamp(2rem, 2.4vw, 3.4rem);
    font-size: clamp(1.2rem, 1.15vw, 1.8rem);
  }
}

@media (max-height: 620px) {
  #screen-start .schlagzeile { font-size: 1.7rem; margin-bottom: 0.6rem; }
  #screen-start .szenario { font-size: 1rem; line-height: 1.5; margin-bottom: 0.7rem; }
  .kette { gap: 0.4rem; margin-bottom: 0.7rem; }
  .anlass, .ziel { padding: 0.3rem 0.7rem; font-size: 0.9rem; }
  .kette-pfeil { width: 1.1rem; height: 1.1rem; }
  .kernfrage { font-size: 1.1rem; padding-top: 0.6rem; margin-bottom: 0.7rem; }
  .btn--start { padding: 0.9rem 1.8rem; font-size: 1.1rem; }
  .btn--start .hand { width: 1.7rem; height: 1.7rem; }
  .startfuss { padding-top: 0.6rem; }
  .btn--dgs { padding: 0.6rem 1.2rem; font-size: 0.95rem; }
  .anonym { font-size: 0.85rem; }
}

@media (max-height: 560px) {
  #screen-start .schlagzeile { font-size: 1.4rem; margin-bottom: 0.4rem; }
  #screen-start .szenario { font-size: 0.92rem; margin-bottom: 0.5rem; }
  .kette { margin-bottom: 0.5rem; }
  .kernfrage { font-size: 1rem; padding-top: 0.45rem; margin-bottom: 0.5rem; }
  .btn--start { padding: 0.75rem 1.5rem; font-size: 1rem; }
}

@media (max-height: 500px) {
  .kopf { margin-bottom: 0.4rem; }
  #screen-start .schlagzeile { font-size: 1.2rem; margin-bottom: 0.35rem; }
  #screen-start .szenario { font-size: 0.85rem; margin-bottom: 0.4rem; }
  .kette { margin-bottom: 0.4rem; gap: 0.3rem; }
  .anlass, .ziel { padding: 0.22rem 0.6rem; font-size: 0.8rem; }
  .kernfrage { font-size: 0.9rem; padding-top: 0.35rem; margin-bottom: 0.4rem; }
  .btn--start { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
  .btn--start .hand { width: 1.3rem; height: 1.3rem; }
  .startfuss { padding-top: 0.4rem; }
}

@media (max-height: 440px) {
  #screen-start .schlagzeile { font-size: 1.1rem; }
  #screen-start .szenario { font-size: 0.8rem; margin-bottom: 0.3rem; }
  .kette { margin-bottom: 0.3rem; }
  .kernfrage { font-size: 0.85rem; margin-bottom: 0.3rem; }
  .btn--start { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
  .startfuss { padding-top: 0.3rem; }
}

@media (min-height: 950px) {
  #screen-start .schlagzeile { font-size: 2.4rem; margin-bottom: 1.2rem; }
  #screen-start .szenario { font-size: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}