/* (C) AI-generiert — Automation-Audit · Brand-Look (_robintamba_: Navy/Cyan)
 * Layout & Typo unverändert (editorial, Serif-Display, Hairline-Borders,
 * Color-Block statt Schatten) — Farben auf Brand umgestellt. Mobile-first.
 */

:root {
  /* Brand-Farben — Navy #1B3A6B / Cyan #00A8CC */
  --canvas: #f7f9fb;
  --surface-soft: #eff3f8;
  --surface-card: #e7edf5;
  --surface-strong: #dce5f0;
  --surface-dark: #122340;
  --surface-dark-elevated: #1b3a6b;
  --ink: #10203a;
  --body: #36465f;
  --muted: #5d6e87;
  --muted-soft: #8595ac;
  --hairline: #dfe6ee;
  --hairline-soft: #e9eef5;
  --navy: #1b3a6b;
  --navy-active: #142c52;
  --navy-disabled: #dfe6ee;
  --cyan: #00a8cc;
  --cyan-ink: #007897; /* abgedunkelt für AA-Kontrast auf hellem Grund */
  --cyan-bright: #2dd4e8;
  --on-dark: #f7f9fb;
  --on-dark-soft: #9fb0c7;
  --amber: #e8a55a;
  --success-ink: #2f7d4f;
  --error: #c64545;
  --whatsapp: #25d366;

  /* Typo */
  --font-display: "Fraunces", "Tiempos Headline", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Form */
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --shadow-soft: 0 1px 3px rgba(16, 32, 58, 0.08);
  --maxw: 520px;
  --tap: 56px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  /* verhindert iOS-Font-Boosting im Querformat */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100svh;
  -webkit-tap-highlight-color: transparent;
}

/* Touch: kein Doppeltipp-Zoom, keine versehentliche Textauswahl auf Controls */
.btn,
.choice,
.tile,
.tab,
.why-toggle,
.accordion__head,
.report__restart,
.progress__back,
.range {
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

/* alle Zahlen springen nicht beim Count-up */
.num,
.hero__big,
.metric__value,
.bar__value,
.slidervalue__num,
.livecount__num,
.horizon__value {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* ---------------------------------------------------------------- Progress */
.progress {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 251, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
  padding: env(safe-area-inset-top) 0 0;
}
.progress__track {
  height: 3px;
  background: var(--hairline-soft);
}
.progress__bar {
  height: 100%;
  width: 0;
  background: var(--cyan);
  border-radius: 0 3px 3px 0;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.progress__row {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px calc(16px + env(safe-area-inset-right)) 6px
    calc(16px + env(safe-area-inset-left));
}
.progress__label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.progress__back {
  background: none;
  border: none;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 10px 8px;
  min-height: 44px;
}
.progress__back[hidden] {
  visibility: hidden;
}
.progress__spacer {
  width: 56px;
}

/* ------------------------------------------------------------------- Layout */
.app {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px calc(16px + env(safe-area-inset-right))
    calc(24px + env(safe-area-inset-bottom)) calc(16px + env(safe-area-inset-left));
  min-height: calc(100svh - 49px);
  display: flex;
  flex-direction: column;
}

.screen {
  display: flex;
  flex-direction: column;
  flex: 1;
  animation: fade 0.34s ease both;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.screen__top {
  flex: 1;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-ink);
  font-weight: 600;
  margin: 0 0 12px;
}
.question {
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.18;
  font-weight: 520;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.question u {
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.subline {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 24px;
}

/* --------------------------------------------------------------- Hook screen */
.hook {
  justify-content: center;
  text-align: center;
  gap: 8px;
}
.hook__badge {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-card);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hook__badge .spark {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}
.hook__title {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.12;
  font-weight: 520;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}
.hook__title em {
  color: var(--cyan-ink);
  font-style: italic;
}
.hook__sub {
  color: var(--body);
  font-size: 17px;
  margin: 0 auto 32px;
  max-width: 36ch;
}
.hook__meta {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.hook__meta span {
  display: inline;
}

/* ----------------------------------------------------------------- Buttons */
.btn {
  appearance: none;
  border: none;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--r-md);
  min-height: var(--tap);
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.12s ease, background 0.15s ease,
    border-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
  width: 100%;
}
.btn:active {
  transform: scale(0.98);
}

/* Sichtbarer Tastatur-Fokus (WCAG 2.4.7) — gilt für alle interaktiven Elemente */
.btn:focus-visible,
.choice:focus-visible,
.tile:focus-visible,
.tab:focus-visible,
.range:focus-visible,
.why-toggle:focus-visible,
.accordion__head:focus-visible,
.report__restart:focus-visible,
.progress__back:focus-visible,
.consent input:focus-visible,
.input:focus-visible {
  outline: 3px solid var(--cyan-ink);
  outline-offset: 2px;
}
.btn--primary {
  background: var(--navy);
  color: #ffffff;
  font-weight: 600;
  font-size: 17px;
  box-shadow: var(--shadow-soft);
}
.btn--primary:active {
  background: var(--navy-active);
}
.btn--primary:disabled {
  background: var(--navy-disabled);
  color: var(--muted);
  cursor: not-allowed;
}
.btn--ghost {
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.btn--whatsapp {
  background: var(--whatsapp);
  color: #04231a;
  font-weight: 700;
  font-size: 17px;
  box-shadow: var(--shadow-soft);
}
.btn--block {
  width: 100%;
}

/* sticky Aktionsleiste am unteren Rand (Weiter-Buttons) */
.actions {
  position: sticky;
  bottom: 0;
  margin: 20px calc(-16px - env(safe-area-inset-right)) 0
    calc(-16px - env(safe-area-inset-left));
  padding: 16px calc(16px + env(safe-area-inset-right))
    calc(16px + env(safe-area-inset-bottom)) calc(16px + env(safe-area-inset-left));
  background: linear-gradient(
    to top,
    var(--canvas) 60%,
    rgba(247, 249, 251, 0)
  );
}

/* ---------------------------------------------------- Choice cards / grids */
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.choice {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: 18px 14px;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: transform 0.12s ease, border-color 0.15s ease,
    background 0.15s ease;
}
.choice:active {
  transform: scale(0.98);
}
.choice.is-selected {
  border-color: var(--ink);
  background: var(--surface-card);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.choice__icon {
  font-size: 25px;
  line-height: 1;
}
.choice__label {
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.25;
}

/* multiselect-Kacheln (volle Breite, Toggle) */
.tiles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tile {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 16px;
  min-height: var(--tap);
  cursor: pointer;
  color: var(--ink);
  font: inherit;
  text-align: left;
  width: 100%;
  transition: border-color 0.15s ease, background 0.15s ease,
    transform 0.12s ease;
}
.tile:active {
  transform: scale(0.99);
}
.tile.is-selected {
  border-color: var(--ink);
  background: var(--surface-card);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.tile.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.tile__icon {
  font-size: 22px;
  width: 28px;
  text-align: center;
  flex: 0 0 auto;
}
.tile__label {
  flex: 1;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
}
.tile__box {
  width: 26px;
  height: 26px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--hairline);
  background: var(--canvas);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 15px;
  font-weight: 800;
  transition: all 0.15s ease;
}
.tile.is-selected .tile__box {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--ink);
}
.hint {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--amber);
  color: var(--body);
  font-size: 14px;
  border-radius: var(--r-md);
  padding: 12px 14px;
  margin-top: 16px;
}
.hint--info {
  border-left-color: var(--cyan);
}

/* ------------------------------------------------------------------ Slider */
.slidervalue {
  text-align: center;
  margin: 14px 0 22px;
}
.slidervalue__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 480;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.slidervalue__unit {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
  display: block;
  margin-top: 8px;
}
.slidervalue__note {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  color: var(--muted);
  min-height: 20px;
}
.range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  border-radius: 999px;
  background: var(--surface-card);
  outline: none;
  margin: 6px 0;
}
.range::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--cyan) var(--fill, 0%),
    var(--surface-card) var(--fill, 0%)
  );
}
.range::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: var(--surface-card);
}
.range::-moz-range-progress {
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  margin-top: -16px;
  border-radius: 50%;
  background: var(--canvas);
  border: 7px solid var(--cyan);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}
.range::-moz-range-thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--canvas);
  border: 7px solid var(--cyan);
  cursor: pointer;
}
.range__scale {
  display: flex;
  justify-content: space-between;
  color: var(--muted-soft);
  font-size: 13px;
  margin-top: 4px;
}

/* Live-Mitlauf-Zähler über dem Slider (Stunden-Ersparnis) */
.livecount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
  background: var(--surface-card);
  border-radius: 999px;
  padding: 8px 18px;
  align-self: center;
  margin-bottom: 20px;
}
.livecount__num {
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan-ink);
}
.livecount__label {
  font-size: 13px;
  color: var(--muted);
}

/* ------------------------------------------------------------------ Report */
.report {
  gap: 0;
}
.hero {
  text-align: center;
  background: var(--surface-dark);
  border-radius: var(--r-xl);
  padding: 32px 20px 28px;
  color: var(--on-dark);
}
.hero__eyebrow {
  color: var(--on-dark-soft);
  font-size: 14px;
  margin: 0 0 8px;
}
.hero__big {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 480;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--on-dark);
}
.hero__bigunit {
  font-size: 24px;
  font-weight: 480;
  color: var(--on-dark-soft);
}
.hero__range {
  color: var(--on-dark-soft);
  font-size: 14px;
  margin: 10px 0 20px;
}
.hero__money {
  font-size: 15px;
  color: var(--on-dark-soft);
}
.hero__money strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 480;
  color: var(--cyan-bright);
  letter-spacing: -0.01em;
  margin-top: 4px;
}

/* Woche/Monat/Jahr-Tabs */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  padding: 4px;
  margin: 18px 0 14px;
}
.tab {
  flex: 1;
  border: none;
  background: none;
  color: var(--muted);
  font: inherit;
  font-weight: 500;
  font-size: 14px;
  padding: 12px 0;
  border-radius: 6px;
  cursor: pointer;
  min-height: 44px;
}
.tab.is-active {
  background: var(--surface-card);
  color: var(--ink);
  font-weight: 600;
}
.horizon {
  display: flex;
  justify-content: space-around;
  text-align: center;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 16px;
  margin-bottom: 14px;
}
.horizon__item {
  flex: 1;
}
.horizon__value {
  font-size: 26px;
  font-weight: 700;
  display: block;
  color: var(--ink);
}
.horizon__value.is-hours {
  color: var(--cyan-ink);
}
.horizon__value.is-money {
  color: var(--navy);
}
.horizon__label {
  font-size: 13px;
  color: var(--muted);
}
.horizon__divider {
  width: 1px;
  background: var(--hairline);
  margin: 4px 8px;
}

.trustline {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.5;
  background: var(--surface-soft);
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-md);
  padding: 12px 14px;
  margin-bottom: 26px;
}

.section {
  margin-bottom: 26px;
}
.section__title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 520;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Aufschlüsselung pro Aufgabe */
.bar {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  margin-bottom: 10px;
}
.bar__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.bar__icon {
  font-size: 19px;
}
.bar__label {
  flex: 1;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.25;
  color: var(--ink);
}
.bar__value {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink);
}
.bar__value small {
  display: block;
  font-weight: 500;
  color: var(--muted);
  font-size: 12.5px;
}
.bar__track {
  height: 8px;
  border-radius: 999px;
  background: var(--surface-card);
  overflow: hidden;
}
.bar__fill {
  height: 100%;
  border-radius: 999px;
  background: var(--cyan);
  width: 0;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.bar__why {
  margin-top: 10px;
}
.why-toggle {
  background: none;
  border: none;
  color: var(--cyan-ink);
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.why-toggle__chev {
  transition: transform 0.2s ease;
}
.why-toggle[aria-expanded="true"] .why-toggle__chev {
  transform: rotate(90deg);
}
.bar__rationale {
  font-size: 13.5px;
  color: var(--body);
  line-height: 1.55;
  margin-top: 8px;
  padding-left: 2px;
}

/* Akkordeon "So haben wir gerechnet" */
.accordion {
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  background: var(--canvas);
  overflow: hidden;
}
.accordion__head {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  font-size: 15.5px;
  text-align: left;
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: var(--tap);
}
.accordion__head span {
  color: var(--muted);
}
.accordion__body {
  padding: 0 16px 16px;
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
}
.accordion__body ul {
  margin: 8px 0 0;
  padding-left: 18px;
}
.accordion__body li {
  margin-bottom: 6px;
}
.accordion__body code {
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 13px;
  color: var(--cyan-ink);
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.note {
  font-size: 14.5px;
  color: var(--body);
  line-height: 1.65;
  background: var(--surface-soft);
  border-left: 3px solid var(--amber);
  border-radius: var(--r-md);
  padding: 14px 16px;
}

.examples {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.examples li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--body);
}
.examples li::before {
  content: "→";
  color: var(--cyan-ink);
  font-weight: 700;
  flex: 0 0 auto;
}

/* CTA — Navy-Callout (Signature-Moment, volle Voltage) */
.cta {
  text-align: center;
  background: var(--navy);
  border-radius: var(--r-xl);
  padding: 32px 20px 26px;
  color: #ffffff;
}
.cta__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 520;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.cta__sub {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  margin: 0 0 20px;
}
.cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* invertierte Buttons auf Navy */
.cta .btn--primary {
  background: var(--canvas);
  color: var(--navy);
}
.cta .btn--primary:active {
  background: var(--surface-card);
}
.cta .btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.cta__trust {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin-top: 14px;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

/* E-Mail-Capture */
.capture {
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  margin-top: 18px;
}
.capture__title {
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 4px;
  color: var(--ink);
}
.capture__sub {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.input {
  width: 100%;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  color: var(--ink);
  font: inherit;
  font-size: 16px; /* >=16px verhindert iOS-Auto-Zoom beim Fokus */
  padding: 0 16px;
  min-height: var(--tap);
}
.input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.16);
}
.input::placeholder {
  color: var(--muted-soft);
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
  text-align: left;
}
.consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 1px;
  accent-color: var(--cyan);
}
.consent a {
  color: var(--cyan-ink);
}
.capture__msg {
  font-size: 14px;
  margin-top: 10px;
  min-height: 20px;
}
.capture__msg.is-ok {
  color: var(--success-ink);
}
.capture__msg.is-err {
  color: var(--error);
}
.capture.is-done .field,
.capture.is-done .capture__sub {
  display: none;
}

.report__footer {
  text-align: center;
  color: var(--muted-soft);
  font-size: 12px;
  margin-top: 30px;
  line-height: 1.6;
}
.report__footer a {
  color: var(--muted);
}
.report__site {
  margin: 12px 0 10px;
  font-size: 15px;
}
.report__restart {
  background: none;
  border: 1px solid var(--hairline);
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  border-radius: 999px;
  padding: 8px 18px;
  min-height: 40px;
  cursor: pointer;
  margin-top: 6px;
}

/* Hover nur auf Geräten mit echtem Hover (Maus) — verhindert
   "klebende" Hover-Zustände nach Tap auf Touchscreens */
@media (hover: hover) {
  .progress__back:hover {
    color: var(--ink);
  }
  .btn--primary:hover {
    background: var(--navy-active);
  }
  .btn--ghost:hover {
    border-color: var(--muted-soft);
  }
  .choice:hover {
    background: var(--surface-soft);
    border-color: var(--muted-soft);
  }
  .tile:hover {
    background: var(--surface-soft);
  }
  .cta .btn--primary:hover {
    background: var(--surface-card);
  }
  .cta .btn--ghost:hover {
    border-color: #ffffff;
  }
  .report__restart:hover {
    color: var(--ink);
    border-color: var(--muted-soft);
  }
}

/* ----------------------------------------------------------- Larger screens */
@media (min-width: 560px) {
  body {
    font-size: 18px;
  }
  .hook__title {
    font-size: 44px;
  }
  .question {
    font-size: 30px;
  }
  .hero__big {
    font-size: 76px;
  }
}

/* very small phones */
@media (max-width: 340px) {
  .hero__big,
  .slidervalue__num {
    font-size: 46px;
  }
  .hook__title {
    font-size: 29px;
  }
  .choice-grid {
    grid-template-columns: 1fr;
  }
  .bar__value {
    white-space: normal;
  }
  .bar__value small {
    font-size: 11.5px;
  }
}

/* Querformat / sehr niedrige Viewports: kompakter, damit der Hook ohne
   Scrollen lesbar bleibt und Slider-Screens nicht gequetscht wirken */
@media (max-height: 560px) {
  .app {
    padding-top: 16px;
  }
  /* Sticky-Leiste würde bei so wenig Höhe den Inhalt verdecken —
     Button fließt stattdessen normal am Ende des Inhalts */
  .actions {
    position: static;
    margin: 20px 0 0;
    padding: 0 0 calc(8px + env(safe-area-inset-bottom));
    background: none;
  }
  .hook__badge {
    margin-bottom: 12px;
  }
  .hook__title {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .hook__sub {
    margin-bottom: 18px;
  }
  .slidervalue {
    margin: 8px 0 14px;
  }
  .slidervalue__num {
    font-size: 44px;
  }
  .livecount {
    margin-bottom: 10px;
  }
}

/* Animation aus, wenn Nutzer es wünscht oder Hardware schwach */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

[hidden] {
  display: none !important;
}
