/* ==========================================================================
   Was ist neu – Seiten-Styles (Entwurf)
   Ergänzt /styles.css. Alle Regeln sind mit .wn-page bzw. .wn- gescoped,
   damit die restliche Website unberührt bleibt.
   ========================================================================== */

.wn-page {
  --wn-max: 1120px;
  --wn-ink: var(--ink);
  --wn-ink-soft: var(--ink-soft);
  --wn-line: rgba(15, 23, 42, 0.08);
  background: #f6f7fb;
}

/* --- Zeilenumbrüche ------------------------------------------------------
   Überschriften und kurze Texte werden auf gleich lange Zeilen ausbalanciert,
   Fließtext bekommt nur den Schutz gegen Schusterjungen. Silbentrennung ist
   für Komposita wie „Push-Benachrichtigungen“ aktiv. */

.wn-page h1,
.wn-page h2,
.wn-page h3,
.wn-page h4,
.wn-page .wn-statement,
.wn-page .wn-hero-sub,
.wn-stat-label,
.wn-bubble-label,
.wn-compare-row span {
  text-wrap: balance;
}

.wn-page p,
.wn-bubble-detail p {
  text-wrap: pretty;
}

.wn-highlight p,
.wn-section-head p,
.wn-bubble-detail p {
  hyphens: auto;
}

.wn-page main {
  background: #f6f7fb;
}

/* --- Scroll-Reveal ------------------------------------------------------ */

.wn-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--wn-delay, 0s);
}

.wn-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* --- Hero --------------------------------------------------------------- */

.wn-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 160px clamp(20px, 6vw, 96px) 120px;
}

.wn-hero-grid {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.wn-hero-inner {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 26px;
}

.wn-hero-visual {
  display: grid;
  place-items: center;
}

/* Das Gerät nutzt die Rahmen-Styles aus /styles.css, wird hier aber an der
   Höhe des Heros ausgerichtet, damit es auf flachen Fenstern nicht überläuft. */
.wn-hero-visual .device-frame {
  width: auto;
  height: min(62vh, 620px);
}

.wn-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wn-page .wn-hero-title {
  margin: 0;
  color: #ffffff;
  /* Auf die Spaltenbreite abgestimmt: bei größerer Schrift passt
     „wird das Original.“ nicht mehr in eine Zeile. */
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 18px 42px rgba(15, 23, 42, 0.22);
  text-wrap: initial;
}

/* Jede Zeile bleibt geschlossen – kein einzelnes Wort rutscht um. */
.wn-hero-title-line {
  display: block;
  white-space: nowrap;
}

.wn-hero-title em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.62);
}

.wn-hero-sub {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  line-height: 1.6;
  font-weight: 400;
}

.wn-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 8px;
}

.wn-ghost-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s ease;
}

.wn-ghost-cta:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* --- Sektionen ---------------------------------------------------------- */

.wn-section {
  padding: clamp(80px, 12vw, 160px) clamp(20px, 6vw, 96px);
}

.wn-inner {
  max-width: var(--wn-max);
  margin: 0 auto;
}

/* Etwas breiter als der Rest der Seite – die Kennzahl-Kacheln brauchen den
   Platz, damit lange Werte wie „100.000+“ in eine Zeile passen. */
.wn-inner--wide {
  max-width: 1240px;
}

.wn-section-head {
  max-width: 760px;
  margin: 0 auto clamp(48px, 7vw, 88px);
  text-align: center;
}

.wn-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.wn-section-head h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.wn-section-head p {
  margin: 0;
  color: var(--wn-ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.65;
}

/* --- Statement + Kennzahlen --------------------------------------------- */

.wn-statement {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.wn-statement span {
  color: rgba(15, 23, 42, 0.35);
}

.wn-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: clamp(56px, 8vw, 96px);
}

.wn-stat {
  padding: 32px 20px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--wn-line);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.wn-stat-value {
  display: block;
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
  background: linear-gradient(120deg, var(--blue), #e9a45c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wn-stat-label {
  display: block;
  margin-top: 8px;
  color: var(--wn-ink-soft);
  font-size: 0.98rem;
  font-weight: 600;
}

/* --- Blasenfeld --------------------------------------------------------- */

.wn-bubbles-section {
  position: relative;
}

.wn-bubble-field {
  --wn-field-radius: 40px;
  position: relative;
  padding: clamp(24px, 3.5vw, 48px) clamp(16px, 3vw, 40px);
  border-radius: var(--wn-field-radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
  overflow: hidden;
  /* backdrop-filter hebelt in WebKit das Runden per overflow aus – die
     Farb-Orbs liefen dadurch oben links und unten rechts über die Ecke.
     clip-path klippt zuverlässig entlang desselben Radius. */
  clip-path: inset(0 round var(--wn-field-radius));
}

.wn-bubble-field::before,
.wn-bubble-field::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.wn-bubble-field::before {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(102, 129, 211, 0.28), transparent 70%);
  top: -140px;
  left: -100px;
}

.wn-bubble-field::after {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 205, 143, 0.4), transparent 70%);
  bottom: -140px;
  right: -80px;
}

.wn-filters-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(20px, 3vw, 28px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: center;
}

/* Beschriftung der beiden Bereiche im Feld: „Kategorien“ und „Features“. */
.wn-field-label {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  text-align: center;
  color: var(--wn-ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.wn-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.wn-filter-icon {
  font-size: 1.05em;
  line-height: 1;
}

.wn-filter-avatar {
  width: 1.25em;
  height: 1.25em;
  object-fit: contain;
  display: block;
}

/* Anzahl der Neuerungen je Kategorie – macht die Gruppen greifbar. */
.wn-filter-count {
  min-width: 1.6em;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: var(--wn-ink-soft);
  font-size: 0.78em;
  font-weight: 800;
  line-height: 1.4;
}

.wn-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--wn-ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.wn-filter:hover {
  border-color: rgba(102, 129, 211, 0.5);
  color: var(--ink);
  transform: translateY(-1px);
}

.wn-filter.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}

.wn-filter.is-active .wn-filter-count {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.wn-filter--highlight.is-active .wn-filter-count {
  background: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.wn-filter--highlight {
  border-color: rgba(233, 164, 92, 0.55);
  color: #b8762f;
  background: linear-gradient(150deg, rgba(255, 205, 143, 0.35), rgba(255, 255, 255, 0.8));
}

.wn-filter--highlight:hover {
  border-color: rgba(233, 164, 92, 0.9);
  color: #8f5a1d;
}

.wn-filter--highlight.is-active {
  background: linear-gradient(140deg, #e9a45c, #d98b3c);
  border-color: #d98b3c;
  color: #ffffff;
}

.wn-filter:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* Aufklapp-Button, nur auf Mobile sichtbar (siehe Media Query unten). */
.wn-bubbles-toggle {
  display: none;
  position: relative;
  z-index: 1;
  margin: 18px auto 0;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.wn-bubbles-toggle::after {
  content: "▾";
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.25s ease;
}

.wn-bubble-field.is-expanded .wn-bubbles-toggle::after {
  transform: rotate(180deg);
}

.wn-bubbles-toggle:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.wn-bubbles {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(8px, 1vw, 13px);
}

.wn-bubble {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 17px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(246, 247, 251, 0.85));
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-align: left;
  animation: wn-float 7s ease-in-out infinite;
  animation-delay: var(--wn-delay, 0s);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease,
    opacity 0.3s ease, filter 0.3s ease;
}

.wn-bubble .wn-bubble-icon {
  font-size: 1.15em;
  line-height: 1;
}

/* Fino-Avatar statt Emoji – in em, damit er mit der Blasengröße mitwächst. */
.wn-bubble-icon--img {
  flex: none;
  width: 1.35em;
  height: 1.35em;
}

.wn-bubble-icon--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.wn-bubble .wn-bubble-desc {
  display: none;
}

/* Blasen, die zusätzlich zur Kategorie ein Highlight sind */
.wn-bubble[data-cat~="highlight"] {
  position: relative;
}

/* Der Marker sitzt vollständig innerhalb der Blase, in der rechten oberen
   Ecke des Innenabstands: außerhalb würde er auf der Rundung liegen und die
   Kontur optisch aufbrechen. Kein Textschatten – der weiße Schein davon
   riss auf der dunklen, ausgewählten Blase ein Loch in den Rahmen. */
.wn-bubble[data-cat~="highlight"]::after {
  content: "✦";
  position: absolute;
  top: 3px;
  right: 8px;
  font-size: 0.58rem;
  line-height: 1;
  color: #d9922f;
  pointer-events: none;
}

.wn-bubble.is-lg {
  padding: 14px 23px;
  font-size: 1.02rem;
  background: linear-gradient(150deg, rgba(102, 129, 211, 0.16), rgba(255, 255, 255, 0.9));
  border-color: rgba(102, 129, 211, 0.28);
}

.wn-bubble.is-md {
  padding: 12px 20px;
  font-size: 0.94rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(240, 243, 250, 0.9));
  border-color: rgba(15, 23, 42, 0.08);
}

/* Farbe steht für Bedeutung, nicht für Größe: Highlights sind unabhängig von
   is-lg/is-md immer bernsteinfarben – dieselbe Farbe wie Filter-Chip und ✦.
   Muss nach den Größenklassen stehen, um sie zu überschreiben. */
.wn-bubble[data-cat~="highlight"] {
  /* Exakt die Werte von .wn-filter--highlight, damit Chip und Blasen
     dieselbe Farbe tragen. */
  background: linear-gradient(150deg, rgba(255, 205, 143, 0.35), rgba(255, 255, 255, 0.8));
  border-color: rgba(233, 164, 92, 0.55);
  color: #b8762f;
  box-shadow: 0 14px 30px rgba(191, 122, 45, 0.14);
}

.wn-bubble:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.16);
  animation-play-state: paused;
}

.wn-bubble:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
  animation-play-state: paused;
}

.wn-bubble.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.26);
  transform: translateY(-4px) scale(1.04);
  animation-play-state: paused;
}

/* Abschluss-Blase: sieht aus wie die anderen, ist aber nur Text. */
.wn-bubble--more {
  cursor: default;
  color: var(--wn-ink-soft);
  font-weight: 600;
  font-style: italic;
  background: rgba(255, 255, 255, 0.55);
  border-style: dashed;
  border-color: rgba(15, 23, 42, 0.18);
  box-shadow: none;
}

.wn-bubble--more:hover {
  transform: none;
  box-shadow: none;
}

.wn-bubble.is-dimmed {
  opacity: 0.28;
  filter: saturate(0.4);
  pointer-events: none;
}

@keyframes wn-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* Detail-Karte zum ausgewählten Feature */

.wn-bubble-detail {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: clamp(28px, 4vw, 42px) auto 0;
  padding: 24px 30px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--wn-line);
  box-shadow: var(--shadow-soft);
  text-align: center;
  /* Auf den längsten Beschreibungstext ausgelegt, damit die Karte beim
     Wechsel nicht in der Höhe springt. */
  min-height: 172px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.wn-bubble-detail.is-swapping {
  opacity: 0;
  transform: translateY(8px);
}

.wn-bubble-detail-cat {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.wn-bubble-detail h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wn-bubble-detail p {
  margin: 0;
  color: var(--wn-ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

/* --- Highlights (abwechselnd Bild / Text) ------------------------------- */

.wn-highlight {
  --wn-hl-radius: 40px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 88px);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 4vw, 64px);
  border-radius: var(--wn-hl-radius);
  /* Gleiche Glas-Behandlung wie .wn-bubble-field, damit die Sektionen als
     eine Familie lesbar sind. */
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
  overflow: hidden;
  clip-path: inset(0 round var(--wn-hl-radius));
}

/* Farb-Orbs wie im Blasenfeld. Absolut positioniert, damit sie trotz
   display:grid keine eigene Spalte aufmachen. */
.wn-highlight::before,
.wn-highlight::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.wn-highlight::before {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(102, 129, 211, 0.28), transparent 70%);
  top: -150px;
  left: -110px;
}

.wn-highlight::after {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 205, 143, 0.4), transparent 70%);
  bottom: -150px;
  right: -90px;
}

/* Beim gespiegelten Block wandern die Orbs mit, sonst sähen zwei
   aufeinanderfolgende Blöcke identisch aus. */
.wn-highlight--reverse::before {
  left: auto;
  right: -110px;
}

.wn-highlight--reverse::after {
  right: auto;
  left: -90px;
}

.wn-highlight-text,
.wn-highlight-media {
  position: relative;
  z-index: 1;
}

.wn-highlight + .wn-highlight {
  margin-top: clamp(28px, 4vw, 48px);
}

.wn-highlight--reverse .wn-highlight-media {
  order: -1;
}

.wn-highlight-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(102, 129, 211, 0.14);
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wn-highlight h3 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.wn-highlight p {
  margin: 0 0 12px;
  color: var(--wn-ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.wn-highlight-media {
  display: flex;
  justify-content: center;
}

/* Der Screenshot steht frei – kein Rahmen, kein Schatten, kein Container. */
.wn-highlight-media img {
  display: block;
  width: min(280px, 70vw);
  height: auto;
}

/* --- Vergleich Beta / heute --------------------------------------------- */

.wn-compare {
  display: grid;
  gap: 0;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--wn-line);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.wn-compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 16px;
  padding: 22px clamp(20px, 3vw, 34px);
  align-items: center;
}

.wn-compare-row + .wn-compare-row {
  border-top: 1px solid var(--wn-line);
}

.wn-compare-row--head {
  background: rgba(102, 129, 211, 0.08);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wn-ink-soft);
}

.wn-compare-topic {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.wn-compare-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(102, 129, 211, 0.16), rgba(255, 205, 143, 0.22));
  font-size: 1rem;
  line-height: 1;
}

/* Fino-Avatar statt Emoji. Etwas kleiner als das Kästchen, damit er optisch
   gleich groß wirkt wie die Emojis der übrigen Zeilen. */
.wn-compare-icon--img img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.wn-compare-beta {
  color: rgba(15, 23, 42, 0.45);
}

.wn-compare-now {
  font-weight: 700;
  color: var(--ink);
}

.wn-compare-now::before {
  content: "→ ";
  color: var(--blue);
}

.wn-compare-row--head .wn-compare-now::before {
  content: none;
}

/* --- Abschluss-CTA ------------------------------------------------------ */

.wn-cta {
  text-align: center;
  padding: clamp(56px, 9vw, 110px) clamp(24px, 5vw, 72px);
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(102, 129, 211, 0.95), rgba(255, 205, 143, 0.95));
  color: #ffffff;
  box-shadow: 0 40px 90px rgba(15, 23, 42, 0.2);
}

.wn-cta-logo {
  display: block;
  height: clamp(64px, 9vw, 104px);
  width: auto;
  max-width: 100%;
  margin: 0 auto 32px;
  filter: drop-shadow(0 10px 24px rgba(15, 23, 42, 0.22));
}

.wn-cta h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.wn-cta p {
  margin: 0 auto 32px;
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
}

.wn-cta .store-badges {
  justify-content: center;
}

/* --- Responsive --------------------------------------------------------- */

@media (max-width: 900px) {
  .wn-hero {
    padding-top: 130px;
    padding-bottom: 90px;
  }

  .wn-hero-grid {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 48px);
  }

  .wn-hero-inner {
    align-items: center;
    text-align: center;
  }

  .wn-hero-actions {
    justify-content: center;
  }

  .wn-hero-visual .device-frame {
    width: min(300px, 74vw);
    height: auto;
  }

  .wn-highlight {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .wn-highlight--reverse .wn-highlight-media {
    order: 0;
  }

  .wn-compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
  }

  .wn-compare-row--head {
    display: none;
  }

  .wn-compare-beta::before {
    content: "Beta: ";
    font-weight: 700;
  }
}

@media (max-width: 380px) {
  /* Letzter Ausweg: Auf sehr schmalen Displays darf die Zeile doch umbrechen,
     sonst läuft sie aus dem Viewport. */
  .wn-hero-title-line {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  /* Gefilterte Blasen verschwinden ganz, statt nur auszugrauen – sonst
     bliebe die Liste beim Filtern genauso lang. */
  .wn-bubble.is-dimmed {
    display: none;
  }

  /* Das Feld wird gekappt und per Button aufgeklappt. Der Innenabstand
     verhindert, dass die Schwebe-Animation oben angeschnitten wird. */
  .wn-bubbles {
    padding-block: 8px;
    max-height: 55vh;
    overflow: hidden;
  }

  .wn-bubbles::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 84px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92));
    pointer-events: none;
  }

  .wn-bubble-field.is-expanded .wn-bubbles {
    max-height: none;
  }

  .wn-bubble-field.is-expanded .wn-bubbles::after {
    content: none;
  }

  /* :not([hidden]), damit das hidden-Attribut aus dem Skript weiterhin
     gewinnt – eine reine display-Regel würde es aushebeln. */
  .wn-bubbles-toggle:not([hidden]) {
    display: block;
  }

  .wn-bubble {
    padding: 9px 14px;
    font-size: 0.8rem;
  }

  .wn-bubble.is-lg {
    padding: 11px 17px;
    font-size: 0.88rem;
  }

  .wn-bubble.is-md {
    padding: 10px 15px;
    font-size: 0.84rem;
  }

  .wn-bubble-field {
    --wn-field-radius: 28px;
  }

  .wn-highlight {
    --wn-hl-radius: 28px;
  }

  .wn-bubble-detail {
    min-height: 216px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wn-bubble {
    animation: none;
  }

  .wn-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
