﻿/* Ascend â€” Ãœberarbeitung 2026-08.
 *
 * Diese Datei liegt nach shop.css und account.css und Ã¼berschreibt gezielt, was im
 * Shop uneinheitlich war. Absichtlich eine eigene Ebene statt hundert verstreuter
 * Ã„nderungen: Wer wissen will, wie sich der Shop anfÃ¼hlt, liest genau eine Datei.
 *
 * Inhalt:
 *   1. Ein Bewegungsmodell fÃ¼r alles Anfassbare
 *   2. Produktkacheln â€” Bild und Knopf als eine FlÃ¤che
 *   3. Lizenzen nebeneinander
 *   4. Kasse
 *   5. Sicherheits-Tab
 */

/* =========================================== 1. ein Bewegungsmodell fÃ¼r alles
 *
 * Vorher hatte fast jede Komponente ihre eigene Dauer, ihre eigene Kurve und ihre
 * eigene HebehÃ¶he â€” KnÃ¶pfe 0.2s, Tarifzeilen 0.18s, Sicherheitskarten 0.22s, die
 * Produktkachel gar keine. Nebeneinander wirkt das nicht wie Detailarbeit, sondern
 * wie mehrere Baustellen. Hier stehen die Werte einmal, und alles Klickbare bedient
 * sich daraus.
 *
 * Die Regel dahinter: Hover hebt an und hellt auf, Klick drÃ¼ckt sichtbar herunter.
 * Ein Klick ohne RÃ¼ckmeldung lÃ¤sst Leute zweimal drÃ¼cken â€” im Warenkorb doppelt
 * Ã¤rgerlich. */
:root {
  --acend-lift: -2px;
  --acend-press: 1px;
  --acend-speed: 0.18s;
  --acend-curve: cubic-bezier(0.2, 0.7, 0.3, 1);
  --acend-ring: 0 0 0 1px var(--acend-accent, #8b5cf6);
  --acend-glow: 0 14px 30px -18px rgba(124, 58, 237, 0.85);
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --acend-lift: 0px;
    --acend-press: 0px;
    --acend-speed: 0.001s;
  }
}

.acend-btn,
.acend-plan__row,
.acend-method__card,
.acend-product-card__inner,
.acend-product-card__buy,
.acend-sec__card,
.acend-products__filter {
  transition:
    transform var(--acend-speed) var(--acend-curve),
    background-color var(--acend-speed) var(--acend-curve),
    border-color var(--acend-speed) var(--acend-curve),
    box-shadow var(--acend-speed) var(--acend-curve),
    color var(--acend-speed) var(--acend-curve);
  will-change: transform;
}

.acend-btn:hover,
.acend-products__filter:hover,
.acend-plan__row:hover,
.acend-method__card:hover {
  transform: translateY(var(--acend-lift));
}

/* Der Druckpunkt. Gilt auch fÃ¼r das Label eines Radios, weil dort der eigentliche
 * Klick landet â€” das Input selbst ist versteckt. */
.acend-btn:active,
.acend-products__filter:active,
.acend-plan__row:active,
.acend-method__card:active,
.acend-product-card__buy:active,
.acend-product-card__inner:active {
  transform: translateY(var(--acend-press)) scale(0.995);
}

/* Ein Fokusring fÃ¼r die ganze Seite, statt vier verschiedener. */
.acend-btn:focus-visible,
.acend-products__filter:focus-visible,
.acend-product-card__buy:focus-visible,
.acend-product-card__media:focus-visible,
.acend-plan__input:focus-visible + .acend-plan__row,
.acend-method__input:focus-visible + .acend-method__card {
  outline: 2px solid var(--acend-accent, #8b5cf6);
  outline-offset: 3px;
}

/* ========================================================= 2. Produktkacheln
 *
 * Bild und Knopf sitzen in einer FlÃ¤che ohne Fuge dazwischen: Das Motiv ist bereits
 * das Banner des Produkts, ein Rahmen quer darÃ¼ber zerschneidet es. */
.acend-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
  gap: 1.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.acend-product-card { min-width: 0; }

.acend-product-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 18px;
  background: var(--acend-surface, #14141c);
}

.acend-product-card__inner:hover {
  transform: translateY(var(--acend-lift));
  border-color: var(--acend-accent, #8b5cf6);
  box-shadow: var(--acend-glow);
}

.acend-product-card__media {
  position: relative;
  display: block;
  /* Ohne das erbt der Platzhaltertext die Unterstreichung des Links und die Kachel
     sieht aus wie ein Textlink mit Bild darum. */
  text-decoration: none;
  color: inherit;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(160deg, #1b1526, #10101a);
}

.acend-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--acend-curve);
}

.acend-product-card__inner:hover .acend-product-card__media img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .acend-product-card__inner:hover .acend-product-card__media img { transform: none; }
}

/* Ohne hinterlegtes Bild trÃ¤gt der Produktname die Kachel â€” besser als eine leere
 * graue FlÃ¤che, die aussieht, als fehle etwas. */
.acend-product-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--acend-muted, #9b95ad);
}

.acend-product-card__badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(6px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

/* Der lange Knopf. Sitzt bÃ¼ndig am Bild und fÃ¼llt die Kachel bis an beide Kanten. */
.acend-product-card__buy {
  display: block;
  margin-top: auto;
  padding: 0.95rem 1rem;
  border: 0;
  border-top: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  background: var(--acend-accent, #7c3aed);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.acend-product-card__buy:hover,
.acend-product-card__inner:hover .acend-product-card__buy {
  background: var(--acend-accent-strong, #8b5cf6);
  color: #fff;
}

/* =================================================== 3. Lizenzen nebeneinander
 *
 * Untereinander war jede Laufzeit eine breite Zeile, und der Vergleich zwischen
 * zwei Preisen hieÃŸ scrollen. Nebeneinander stehen sie im selben Blick. Unterhalb
 * von ~34rem bleibt es gestapelt, weil drei Spalten auf einem Telefon nur noch
 * WortumbrÃ¼che sind. */
.acend-plans {
  display: grid;
  /* 11rem, nicht 15: Auf einem 400px-Display passen damit noch zwei Karten
     nebeneinander, und genau dort wurde die Beschwerde aufgenommen. Darunter
     greift min(100%) und es stapelt sich wieder. */
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: 0.6rem;
  align-items: stretch;
}

/* Aus der Zeile wird eine Spalte: Titel oben, Preis unten, gleiche HÃ¶he fÃ¼r alle. */
.acend-plans .acend-plan__row {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  height: 100%;
  padding: 1.05rem 1.1rem 1.1rem;
}

.acend-plans .acend-plan__check {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
}

.acend-plans .acend-plan__main {
  width: 100%;
  padding-right: 1.75rem;
}

.acend-plans .acend-plan__side {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
  text-align: left;
}

.acend-plans .acend-plan__pricing {
  align-items: baseline;
  gap: 0.45rem;
}

.acend-plans .acend-plan__price { font-size: 1.35rem; }

.acend-plans .acend-plan__meta {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

/* Die Trennpunkte zwischen den Angaben ergeben untereinander keinen Sinn mehr. */
.acend-plans .acend-plan__meta-item + .acend-plan__meta-item::before { content: none; }

/* ================================================================= 4. Kasse */

/* Die Zahlungsarten standen auf schmalen GerÃ¤ten zu dritt nebeneinander, wodurch
 * "Credit / Debit Card" auf vier Zeilen zerfiel. */
.acend-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
  gap: 0.7rem;
}

.acend-method__card {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  height: 100%;
  padding: 1rem;
  border-radius: 14px;
}

.acend-method__text { min-width: 0; }

.acend-method__title {
  display: block;
  font-weight: 700;
  line-height: 1.25;
}

.acend-method__sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--acend-muted, #9b95ad);
}

/* Die Zustimmung war eine zentrierte Checkbox Ã¼ber einem seitenbreiten, blau
 * unterstrichenen Link â€” der Standard-Linkstil des Browsers, der sonst nirgends im
 * Shop vorkommt. Jetzt eine Zeile: KÃ¤stchen links, Text daneben, Link in der
 * Akzentfarbe. */
.acend-checkout__terms {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1.2rem;
  padding: 0.95rem 1.05rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 14px;
  background: var(--acend-surface, #14141c);
  text-align: left;
}

.acend-checkout__terms input[type='checkbox'] {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.1rem 0 0;
  accent-color: var(--acend-accent, #8b5cf6);
  cursor: pointer;
}

.acend-checkout__terms > span { min-width: 0; }

.acend-checkout__terms a {
  color: var(--acend-accent-text, #a78bfa);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.acend-checkout__terms a:hover { color: #c4b5fd; }

/* Bestellknopf und RÃ¼ckweg: ein klares GefÃ¤lle statt zweier gleich lauter Links. */
.acend-checkout__summary .acend-btn--block {
  width: 100%;
  margin-top: 1.1rem;
  padding: 0.95rem 1.2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
}

.acend-checkout__back {
  display: block;
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--acend-muted, #9b95ad);
  text-decoration: none;
}

.acend-checkout__back:hover {
  color: var(--acend-text, #e6e6ef);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.acend-summary__row--total {
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  font-size: 1.05rem;
  font-weight: 800;
}

/* ====================================================== 5. Sicherheits-Tab
 *
 * Sechs gleich groÃŸe Karten in einer einzigen Spalte lasen sich als eine lange
 * Liste, in der 2-Faktor genauso wichtig aussah wie ein GerÃ¤te-Reset. Zwei Spalten
 * ab Tablet-Breite halbieren die HÃ¶he und lassen ZusammengehÃ¶riges nebeneinander
 * stehen. */
@media (min-width: 900px) {
  .acend-sec {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 1rem;
  }
}

.acend-sec__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.3rem;
  border-radius: 16px;
}

.acend-sec__body { margin-top: auto; padding-top: 1rem; }

/* Die Formularfelder im Tab waren so breit wie die Karte und dadurch auf groÃŸen
 * Bildschirmen unangenehm lang. */
.acend-sec__card .acend-form__field input { max-width: 26rem; }

.acend-sec__card .acend-btn { align-self: flex-start; }

/* ============================== 6. Produktseite des Themes
 *
 * Die Kaufspalte auf der Produktseite kommt aus dem Theme und benutzt dessen eigene
 * Knopfklasse, greift fÃ¼r Lizenzen und Zahlungsarten aber auf dieselben Bausteine
 * zurÃ¼ck. Ohne diese paar Zeilen sÃ¤he derselbe Kaufvorgang auf Produktseite und
 * Kasse verschieden aus â€” genau das, was vermieden werden sollte. */
.ascend-product-single__cta {
  margin-top: 1.1rem;
}

.ascend-product-single__cta .ascend-btn {
  display: block;
  width: 100%;
  padding: 0.95rem 1.2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  text-align: center;
  transition:
    transform var(--acend-speed) var(--acend-curve),
    background-color var(--acend-speed) var(--acend-curve),
    box-shadow var(--acend-speed) var(--acend-curve);
}

.ascend-product-single__cta .ascend-btn:hover {
  transform: translateY(var(--acend-lift));
  box-shadow: var(--acend-glow);
}

.ascend-product-single__cta .ascend-btn:active {
  transform: translateY(var(--acend-press)) scale(0.995);
}

/* Der Hinweis unter dem Knopf war ein blau unterstrichener Browserlink mitten in
   einer sonst durchgestalteten Spalte. */
.ascend-product-single .ascend-small a,
.ascend-product-single__cta + .ascend-small a {
  color: var(--acend-muted, #9b95ad);
  text-decoration: none;
  border-bottom: 1px solid rgba(155, 149, 173, 0.35);
  transition: color var(--acend-speed) var(--acend-curve),
              border-color var(--acend-speed) var(--acend-curve);
}

.ascend-product-single .ascend-small a:hover {
  color: var(--acend-text, #e6e6ef);
  border-bottom-color: var(--acend-accent, #8b5cf6);
}

/* Die Kopfzeile Ã¼ber den Lizenzen ("AusgewÃ¤hlt â€¦ Preis") stand auf schmalen GerÃ¤ten
   auf zwei Zeilen und schob den Preis unter das Label. */
.acend-plans__selected {
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.65rem;
}

/* ============================= 7. Sicherheits-Tab als Aufklapper
 *
 * Ersetzt Abschnitt 5: Die Karten sind jetzt <details>, also von Haus aus
 * aufklappbar. Wieder eine Spalte statt zweier â€” nebeneinander stehende
 * Aufklapper springen beim Ã–ffnen gegenseitig in der HÃ¶he herum. */
.acend-sec {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 46rem;
}

@media (min-width: 900px) {
  .acend-sec {
    display: flex;
    grid-template-columns: none;
  }
}

.acend-sec__card {
  display: block;
  height: auto;
  padding: 0;
  overflow: hidden;
}

.acend-sec__card[open] {
  border-color: rgba(139, 92, 246, 0.32);
  box-shadow: 0 0 34px rgba(139, 92, 246, 0.08);
}

.acend-sec__summary {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 1.2rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

/* Das voreingestellte Dreieck von <details> passt nicht ins Bild; der Pfeil
   rechts ist unser eigener und dreht sich beim Ã–ffnen. */
.acend-sec__summary::-webkit-details-marker { display: none; }
.acend-sec__summary::marker { content: ""; }

.acend-sec__summary:hover { background: rgba(255, 255, 255, 0.025); }

.acend-sec__summary:focus-visible {
  outline: 2px solid var(--acend-accent, #8b5cf6);
  outline-offset: -2px;
}

.acend-sec__summary-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1 1 auto;
  min-width: 0;
}

.acend-sec__summary .acend-sec__desc {
  margin: 0;
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}

.acend-sec__chev {
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  color: var(--acend2-muted, #9b95ad);
  transition: transform var(--acend-speed) var(--acend-curve);
}

.acend-sec__card[open] .acend-sec__chev {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.acend-sec__panel {
  margin: 0;
  padding: 1.1rem 1.2rem 1.2rem;
  border-top: 1px solid var(--acend2-line, rgba(255, 255, 255, 0.08));
}

.acend-sec__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.acend-sec__hint {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--acend2-muted, #9b95ad);
}

.acend-sec__card .acend-sec__codefield input {
  max-width: 9.5rem;
  letter-spacing: 0.3em;
  text-align: center;
}

/* ================================================ 8. Zahlungsarten und MÃ¼nzen
 *
 * Vorher: ein HÃ¤kchen oben rechts, ein Symbol links, Text dazwischen â€” auf
 * schmalen Karten kollidierte alles miteinander. Jetzt eine ruhige Zeile mit
 * fester Symbolspalte; die Auswahl zeigt der Rahmen, nicht ein zweites Zeichen. */
.acend-method__card {
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 14px;
  background: var(--acend-surface, #14141c);
  cursor: pointer;
}

.acend-method__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
}

.acend-method__input:checked + .acend-method__card {
  border-color: var(--acend-accent, #8b5cf6);
  background: var(--acend-accent-soft, rgba(139, 92, 246, 0.1));
  box-shadow: var(--acend-ring);
}

.acend-method__input:checked + .acend-method__card .acend-method__icon {
  background: var(--acend-accent, #8b5cf6);
  color: #fff;
}

.acend-method__chip {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Die MÃ¼nzauswahl: Plakette oben, Name darunter, alle Karten gleich groÃŸ. */
.acend-coins {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(6.5rem, 1fr));
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.acend-coin {
  position: relative;
  min-width: 0;
}

.acend-coin__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.acend-coin__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  height: 100%;
  padding: 0.85rem 0.5rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 14px;
  background: var(--acend-surface, #14141c);
  text-align: center;
  cursor: pointer;
  transition:
    transform var(--acend-speed) var(--acend-curve),
    border-color var(--acend-speed) var(--acend-curve),
    background-color var(--acend-speed) var(--acend-curve),
    box-shadow var(--acend-speed) var(--acend-curve);
}

.acend-coin__card:hover { transform: translateY(var(--acend-lift)); }
.acend-coin__card:active { transform: translateY(var(--acend-press)) scale(0.995); }

.acend-coin__input:checked + .acend-coin__card {
  border-color: var(--acend-accent, #8b5cf6);
  background: var(--acend-accent-soft, rgba(139, 92, 246, 0.1));
  box-shadow: var(--acend-ring);
}

.acend-coin__input:focus-visible + .acend-coin__card {
  outline: 2px solid var(--acend-accent, #8b5cf6);
  outline-offset: 3px;
}

.acend-coin__symbol {
  display: block;
  line-height: 0;
}

.acend-coin__mark {
  display: block;
  width: 2.35rem;
  height: 2.35rem;
}

.acend-coin__name {
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.acend-coin__network {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--acend-muted, #9b95ad);
}

/* ==================================== 9. Kaufknopf mit Preis auf der Kachel */
.acend-product-card__buy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
}

.acend-product-card__buy-label { flex: 0 0 auto; }

.acend-product-card__buy-price {
  flex: 0 0 auto;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  opacity: 0.92;
}

/* ============================================== 10. Zeiger-Begleiter
 *
 * Ein weicher Lichtpunkt, der der Maus mit leichter VerzÃ¶gerung folgt und Ã¼ber
 * Anfassbarem grÃ¶ÃŸer wird. Der echte Mauszeiger bleibt sichtbar â€” ihn zu
 * ersetzen sieht eine Minute lang gut aus und stÃ¶rt danach bei jedem Klick.
 *
 * Nur fÃ¼r echte MÃ¤use: Auf TouchgerÃ¤ten gibt es keinen Zeiger, und wer im
 * System "weniger Bewegung" eingestellt hat, bekommt gar nichts. */
.acend-pointer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483000;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.42) 0%, rgba(139, 92, 246, 0) 68%);
  transition:
    opacity 0.25s ease,
    width 0.2s var(--acend-curve),
    height 0.2s var(--acend-curve),
    margin 0.2s var(--acend-curve);
}

.acend-pointer.is-visible { opacity: 1; }

.acend-pointer.is-hot {
  width: 46px;
  height: 46px;
  margin: -23px 0 0 -23px;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.5) 0%, rgba(167, 139, 250, 0) 70%);
}

@media (hover: none), (pointer: coarse) {
  .acend-pointer { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .acend-pointer { display: none; }
}

/* ================================== 11. Licht unter dem Zeiger
 *
 * Ersetzt Abschnitt 10. Der nachziehende Punkt ist raus: Was der Maus folgt,
 * hinkt ihr zwangslÃ¤ufig hinterher, und man sieht dann die VerzÃ¶gerung statt des
 * Effekts. Stattdessen malt das Element unter dem Zeiger selbst â€” auf genau dem
 * Pixel, auf dem die Maus steht. interactions.js schreibt nur die Koordinate.
 *
 * --ascend-mx / --ascend-my sind mit 50% vorbelegt, damit auch ohne JavaScript
 * nichts unangenehm aussieht: Der Schein sitzt dann eben in der Mitte. */
.acend-pointer { display: none !important; }

[data-ascend-glow],
[data-ascend-shine] {
  --ascend-mx: 50%;
  --ascend-my: 50%;
  position: relative;
}

/* Der groÃŸe Schein fÃ¼r Hero- und SektionsflÃ¤chen. */
[data-ascend-glow]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(
    620px circle at var(--ascend-mx) var(--ascend-my),
    rgba(124, 58, 237, 0.16) 0%,
    rgba(124, 58, 237, 0.06) 35%,
    transparent 65%
  );
}

[data-ascend-glow].is-lit::before { opacity: 1; }

/* Inhalte mÃ¼ssen Ã¼ber dem Schein liegen, sonst wÃ¤scht er sie aus. */
[data-ascend-glow] > * { position: relative; z-index: 1; }

/* Karten hellen unter dem Zeiger auf. Kleinerer Radius, damit der Effekt der
   KartengrÃ¶ÃŸe entspricht statt Ã¼ber sie hinauszulaufen. */
[data-ascend-shine]::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(
    260px circle at var(--ascend-mx) var(--ascend-my),
    rgba(167, 139, 250, 0.14) 0%,
    transparent 62%
  );
}

[data-ascend-shine].is-lit::after { opacity: 1; }

/* Bei den Produktkacheln liegt das Bild in der Karte; der Schein gehÃ¶rt darÃ¼ber,
   aber unter den Kaufknopf, damit dessen Farbe unverfÃ¤lscht bleibt. */
.acend-product-card__inner[data-ascend-shine]::after { z-index: 2; }
.acend-product-card__buy { position: relative; z-index: 3; }

@media (hover: none), (pointer: coarse) {
  [data-ascend-glow]::before,
  [data-ascend-shine]::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  [data-ascend-glow]::before,
  [data-ascend-shine]::after { display: none; }
}

/* ============================================= 12. Affiliate-Seite */
.acend-aff {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.acend-aff__hero {
  padding: 2.75rem 2rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.13), rgba(10, 10, 15, 0) 62%);
  text-align: center;
  overflow: hidden;
}

.acend-aff__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4b5fd;
}

.acend-aff__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.acend-aff__lead {
  max-width: 38rem;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--acend-muted, #9b95ad);
}

.acend-aff__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.acend-aff__stat {
  padding: 1.1rem 1rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 16px;
  background: var(--acend-surface, #14141c);
  text-align: center;
}

.acend-aff__stat-value {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.acend-aff__stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--acend-muted, #9b95ad);
}

.acend-aff__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1rem;
}

.acend-aff__step {
  position: relative;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 18px;
  background: var(--acend-surface, #14141c);
}

.acend-aff__step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: var(--acend-accent, #7c3aed);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
}

.acend-aff__step-title {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.acend-aff__step-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--acend-muted, #9b95ad);
}

.acend-aff__panel {
  padding: 1.75rem 1.6rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 20px;
  background: var(--acend-surface, #14141c);
}

.acend-aff__panel-title {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  font-weight: 750;
}

.acend-aff__panel-lead {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--acend-muted, #9b95ad);
}

/* Der Link zum Kopieren: Feld und Knopf als eine Einheit. */
.acend-aff__link {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: stretch;
}

.acend-aff__link input {
  flex: 1 1 16rem;
  min-width: 0;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--acend-text, #f3f1f8);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88rem;
}

.acend-aff__link .acend-btn { flex: 0 0 auto; }

.acend-aff__note {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--acend-muted, #9b95ad);
}

.acend-aff__faq { display: flex; flex-direction: column; gap: 0.6rem; }

.acend-aff__q {
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 14px;
  background: var(--acend-surface, #14141c);
  overflow: hidden;
}

.acend-aff__q > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.acend-aff__q > summary::-webkit-details-marker { display: none; }
.acend-aff__q > summary::marker { content: ""; }
.acend-aff__q > summary:hover { background: rgba(255, 255, 255, 0.025); }

.acend-aff__q > summary::after {
  content: "";
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  opacity: 0.6;
  transition: transform var(--acend-speed) var(--acend-curve);
}

.acend-aff__q[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }

.acend-aff__a {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--acend-muted, #9b95ad);
}

/* ============ 13. Kaufspalte der Produktseite: zwei Wege, klar gestuft */
.ascend-product-single__cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ascend-product-single__cta .acend-btn--ghost,
.ascend-product-single__cta .ascend-btn--ghost {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 650;
  text-align: center;
}

/* Der Empfehlungslink ist das Zweitprogramm und sieht auch so aus: ruhiger
   Untergrund, eine Trennlinie darÃ¼ber. Ohne diese Absetzung lesen sich zwei
   Angebote auf einer Seite als eines mit zwei Bedingungen. */
.acend-aff__secondary {
  padding-top: 2.25rem;
  border-top: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
}

.acend-aff__secondary .acend-aff__panel {
  background: rgba(255, 255, 255, 0.02);
}

.acend-aff__secondary .acend-aff__eyebrow {
  margin-bottom: 0.7rem;
}

.acend-aff__cta {
  margin: 1.75rem 0 0.6rem;
}

.acend-aff__cta .acend-btn {
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
}

.acend-aff__hero .acend-aff__note {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================================== 14. Guthaben */
.acend-tile--balance .acend-tile__value { color: #a78bfa; }

.acend-ledger {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--acend2-line, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
  background: var(--acend2-card, #14141c);
}

.acend-ledger__title { margin: 0 0 0.85rem; font-size: 1rem; font-weight: 700; }
.acend-ledger__empty { margin: 0; font-size: 0.88rem; color: var(--acend2-muted, #9b95ad); }
.acend-ledger__list { margin: 0; padding: 0; list-style: none; }

.acend-ledger__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.acend-ledger__row:first-child { border-top: 0; }

.acend-ledger__what { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }

.acend-ledger__when { font-size: 0.76rem; color: var(--acend2-muted, #9b95ad); }

/* Vorzeichen tragen Farbe: Ein Kontoauszug, in dem Zu- und Abgang gleich
   aussehen, muss gelesen statt erkannt werden. */
.acend-ledger__amount { font-variant-numeric: tabular-nums; font-weight: 700; white-space: nowrap; }
.acend-ledger__amount.is-plus { color: #34d399; }

/* ============================================= 15. Guthaben aufladen */
.acend-topup__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
  gap: 0.7rem;
}

.acend-topup__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.2rem 1rem 1rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 16px;
  background: var(--acend-surface, #14141c);
  text-align: center;
}

/* Stufen mit Bonus heben sich ab â€” sonst wÃ¤hlt jeder den kleinsten Betrag,
   weil kein Unterschied sichtbar ist. */
.acend-topup__card.has-bonus { border-color: rgba(139, 92, 246, 0.45); }

.acend-topup__badge {
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: #7c3aed;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.acend-topup__amount { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; }

.acend-topup__credited {
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  color: var(--acend-muted, #9b95ad);
}

/* ============================= 16. Guthaben-Seite und Sicherheits-Breiten */

/* Der Kontostand ist die Zahl, wegen der die Seite geoeffnet wird â€” also gross
   und allein, nicht in einer Reihe mit drei Bonuskacheln. */
.acend-topup__balance { margin: 0.4rem 0 1.1rem; }

.acend-topup__balance-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--acend-muted, #9b95ad);
}

.acend-topup__balance-value {
  display: block;
  margin-top: 0.15rem;
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: #c4b5fd;
}

.acend-topup__hero { padding-bottom: 2rem; }

/* Der Sicherheits-Tab lief vorher auf 46rem aus, waehrend Kacheln und Listen
   daneben die volle Breite nutzten â€” dadurch sprang die Kante bei jedem
   Tabwechsel. Alles bis an denselben Rand. */
.acend-sec { max-width: none; }

.acend-sec__card { width: 100%; }

.acend-sec__card .acend-form__field input,
.acend-sec__card .acend-form__field textarea,
.acend-sec__card .acend-sec__codefield input {
  max-width: none;
  width: 100%;
}

/* Der Code bleibt schmal â€” sechs Ziffern in einem seitenbreiten Feld sehen aus
   wie ein Fehler. Aber als bewusste Ausnahme, nicht als Zufall. */
.acend-sec__card .acend-sec__codefield { max-width: 12rem; }


/* ==================== 17. Lizenzkarten: ruhiger und klarer gewaehlt
 *
 * Vorher trug jede Karte einen Haken-Kreis, einen Rahmen, eine Fuellung und
 * einen Schein â€” vier Signale fuer eine Information. Jetzt traegt der Rahmen die
 * Auswahl, der Rest tritt zurueck. */
.acend-plans .acend-plan__row {
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.acend-plans .acend-plan__input:checked + .acend-plan__row {
  border-color: var(--acend-accent, #8b5cf6);
  background: rgba(139, 92, 246, 0.1);
  box-shadow: inset 0 0 0 1px var(--acend-accent, #8b5cf6);
}

/* Der Haken wird zum kleinen Punkt in der Ecke â€” er bestaetigt, statt zu
   konkurrieren. */
.acend-plans .acend-plan__check {
  width: 0.85rem;
  height: 0.85rem;
  top: 0.95rem;
  right: 1rem;
  border-width: 1px;
}

.acend-plans .acend-plan__check svg { width: 8px; height: 8px; }

.acend-plans .acend-plan__label {
  font-size: 1.02rem;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.acend-plans .acend-plan__meta-item {
  font-size: 0.79rem;
  line-height: 1.45;
  color: var(--acend-muted, #9b95ad);
}

.acend-plans .acend-plan__compare { font-size: 0.85rem; opacity: 0.65; }

.acend-plans .acend-plan__saving {
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 800;
}

/* Wunschbetrag-Karte: gleiche Groesse wie die festen Stufen, aber ohne Bonus-
   Versprechen â€” was sie bringt, haengt vom eingegebenen Betrag ab. */
.acend-topup__card--custom { justify-content: space-between; }

.acend-topup__customlabel {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--acend-muted, #9b95ad);
}

.acend-topup__customfield {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0.35rem 0 0.1rem;
}

.acend-topup__customfield input {
  width: 100%;
  padding: 0.6rem 2rem 0.6rem 0.7rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.12));
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--acend-text, #f3f1f8);
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
  font-variant-numeric: tabular-nums;
  -moz-appearance: textfield;
}

.acend-topup__customfield input::-webkit-outer-spin-button,
.acend-topup__customfield input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.acend-topup__customfield input:focus {
  outline: none;
  border-color: var(--acend-accent, #8b5cf6);
}

.acend-topup__cur {
  position: absolute;
  right: 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--acend-muted, #9b95ad);
  pointer-events: none;
}

/* ============ 18. Laufzeitkarten: eine Hierarchie statt vier gleicher Zeilen
 *
 * Vorher stand alles in derselben Groesse und Farbe untereinander â€” Name,
 * Laufzeit, Geraetezahl, Preis, Rabatt. Fuenf Angaben ohne Rangfolge liest
 * niemand, man ueberfliegt sie und klickt die erste. Jetzt traegt der Preis die
 * Karte, der Name steht darueber, die Details darunter und leiser. */
.acend-plans .acend-plan__row {
  gap: 0.5rem;
  padding: 1.25rem 1.15rem 1.3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
}

.acend-plans .acend-plan__main { order: 1; }
.acend-plans .acend-plan__side { order: 2; margin-top: 0.35rem; }

.acend-plans .acend-plan__label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--acend-muted, #9b95ad);
}

/* Der Preis ist die Zahl, wegen der man hinschaut. */
.acend-plans .acend-plan__price {
  font-size: 1.9rem;
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1;
}

.acend-plans .acend-plan__pricing {
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: baseline;
  gap: 0.5rem;
}

.acend-plans .acend-plan__meta {
  order: 3;
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  width: 100%;
}

.acend-plans .acend-plan__meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--acend-muted, #9b95ad);
}

/* Ein Haken vor jeder Angabe â€” sie sind Leistungen, keine Fussnoten. */
.acend-plans .acend-plan__meta-item::after {
  content: "";
  order: -1;
  flex: 0 0 auto;
  width: 0.32rem;
  height: 0.55rem;
  margin-right: 0.1rem;
  border-right: 2px solid rgba(139, 92, 246, 0.9);
  border-bottom: 2px solid rgba(139, 92, 246, 0.9);
  transform: rotate(45deg) translate(-1px, -1px);
}

.acend-plans .acend-plan__input:checked + .acend-plan__row {
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.16), rgba(139, 92, 246, 0.05));
}

.acend-plans .acend-plan__input:checked + .acend-plan__row .acend-plan__label {
  color: #c4b5fd;
}

/* Die gewaehlte Karte hebt sich zusaetzlich leicht an â€” auf einem Telefon steht
   sie sonst nur farblich anders da, und das faellt beim Scrollen unter. */
.acend-plans .acend-plan__input:checked + .acend-plan__row { transform: translateY(-2px); }

/* ======================= 19. Lizenzoptionen immer untereinander
 *
 * Jede Laufzeit nutzt eine volle Zeile. So bleibt die Auswahl auch bei drei
 * oder mehr Varianten ruhig lesbar: Bezeichnung und Laufzeit links, Preis
 * rechts, die naechste Lizenz direkt darunter. */
.acend-plans {
  grid-template-columns: minmax(0, 1fr);
  gap: 0.28rem;
}

/* ======================================== 9b. Visual product catalogue
 * Large image-led cards with a split action rail, matching the Ascend landing page:
 * quiet details on the left, high-contrast purchase action and price on the right. */
.acend-products__toolbar {
  align-items: stretch;
  gap: 1rem 1.25rem;
  margin-bottom: 1.7rem;
}

.acend-products__filters {
  flex: 1 1 40rem;
  flex-wrap: nowrap;
  gap: 0;
  min-width: 0;
  padding: 0.22rem;
  overflow-x: auto;
  scrollbar-width: thin;
  border: 1px solid rgba(139, 92, 246, 0.34);
  border-radius: 15px;
  background: rgba(10, 8, 24, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.acend-products__filter {
  flex: 1 0 auto;
  min-width: 7.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.05rem;
  border: 0;
  border-right: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 11px;
  color: var(--acend-muted, #aaa2bf);
  opacity: 1;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.acend-products__filter:last-child { border-right: 0; }

.acend-products__filter:hover {
  color: #fff;
  background: rgba(139, 92, 246, 0.1);
}

.acend-products__filter.is-active {
  color: #fff;
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 58%, #7c3aed 100%);
  border-color: transparent;
  box-shadow: 0 8px 24px -12px rgba(147, 51, 234, 0.95), inset 0 1px rgba(255, 255, 255, 0.18);
}

.acend-sort {
  flex: 0 1 16rem;
  min-height: 3.45rem;
  margin-left: 0;
  padding: 0.2rem;
  border: 1px solid rgba(139, 92, 246, 0.34);
  border-radius: 15px;
  background: rgba(10, 8, 24, 0.72);
}

.acend-sort__label { padding-left: 0.8rem; }
.acend-sort__dropdown { flex: 1 1 auto; }
.acend-sort__trigger,
.acend-sort__select {
  width: 100%;
  min-height: 3rem;
  justify-content: space-between;
  border: 0;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.035);
}

.acend-products__grid {
  gap: 1.15rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.acend-product-card__inner {
  isolation: isolate;
  border-color: rgba(139, 92, 246, 0.48);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(25, 16, 52, 0.78), rgba(9, 7, 20, 0.96));
  box-shadow: 0 20px 48px -32px rgba(88, 28, 135, 0.95);
}

.acend-product-card__inner:hover,
.acend-product-card__inner:focus-within {
  border-color: #a855f7;
  box-shadow: 0 0 0 1px rgba(168, 85, 247, 0.5), 0 24px 55px -27px rgba(126, 34, 206, 0.9);
}

.acend-product-card__media {
  aspect-ratio: 16 / 9.7;
  border-bottom: 1px solid rgba(139, 92, 246, 0.28);
  background: #0c0819;
}

.acend-product-card__media::after {
  background: linear-gradient(155deg, rgba(124, 58, 237, 0.22), transparent 48%, rgba(88, 28, 135, 0.2));
}

.acend-product-card__badge,
.acend-product-card__bonus {
  z-index: 2;
  top: 0.8rem;
  padding: 0.3rem 0.68rem;
  border-radius: 999px;
  backdrop-filter: blur(9px);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.acend-product-card__badge {
  left: 0.8rem;
  border: 1px solid rgba(168, 85, 247, 0.6);
  background: rgba(9, 6, 20, 0.78);
}

.acend-product-card__bonus {
  position: absolute;
  right: 0.8rem;
  color: #bbf7d0;
  border: 1px solid rgba(74, 222, 128, 0.55);
  background: rgba(6, 78, 59, 0.86);
  box-shadow: 0 8px 24px -14px rgba(34, 197, 94, 0.95);
}

.acend-product-card__actions {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: 4.35rem;
  padding: 0.6rem 0.65rem 0.6rem 1rem;
  background: linear-gradient(90deg, rgba(13, 9, 29, 0.96), rgba(20, 11, 43, 0.96));
}

.acend-product-card__details {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 2.9rem;
  padding: 0.55rem 0.35rem;
  color: #e9e4f5;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.acend-product-card__details svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s ease;
}

.acend-product-card__details:hover { color: #c4b5fd; }
.acend-product-card__details:hover svg { transform: translateX(3px); }

.acend-product-card__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 10.8rem;
  min-height: 3.15rem;
  margin: 0;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(216, 180, 254, 0.24);
  border-radius: 12px;
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 56%, #7c3aed 100%);
  box-shadow: 0 10px 28px -14px rgba(147, 51, 234, 1), inset 0 1px rgba(255, 255, 255, 0.2);
  color: #fff;
  text-align: center;
}

.acend-product-card__buy:hover,
.acend-product-card__inner:hover .acend-product-card__buy {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 56%, #8b5cf6 100%);
  color: #fff;
}

.acend-product-card__cart {
  width: 1.12rem;
  height: 1.12rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.acend-product-card__buy-label,
.acend-product-card__buy-price { font-size: 0.88rem; }

.acend-product-card__buy-price {
  padding-left: 0.55rem;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.acend-product-card__details:focus-visible,
.acend-product-card__buy:focus-visible {
  outline: 2px solid #c084fc;
  outline-offset: 2px;
}

.acend-buy { scroll-margin-top: 7rem; }

.acend-plan__bonus {
  margin-top: 0.15rem;
  padding: 0.18rem 0.55rem;
  border: 1px solid rgba(74, 222, 128, 0.42);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.acend-license-card__facts .acend-license-card__bonus {
  color: #4ade80;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .acend-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .acend-products__toolbar { display: block; }
  .acend-products__filters { margin-bottom: 0.75rem; }
  .acend-sort { width: 100%; }
  .acend-products__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 420px) {
  .acend-product-card__actions { padding-left: 0.75rem; }
  .acend-product-card__details { font-size: 0.82rem; }
  .acend-product-card__buy { min-width: 9.5rem; }
  .acend-product-card__buy-price { padding-left: 0.4rem; }
}

.acend-plans .acend-plan__row {
  box-sizing: border-box;
  height: 4.25rem;
  min-height: 4.25rem;
  flex-direction: row;
  align-items: center;
  gap: 0.38rem;
  padding: 0.46rem 0.64rem;
  overflow: hidden;
}

.acend-plans .acend-plan__check { display: none; }

.acend-plans .acend-plan__main {
  order: 1;
  width: auto;
  min-width: 0;
  padding-right: 0.16rem;
  gap: 0.04rem;
}

.acend-plans .acend-plan__side {
  order: 2;
  width: auto;
  margin: 0 0 0 auto;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  max-width: 43%;
  gap: 0.2rem;
  text-align: right;
}

.acend-plans .acend-plan__label {
  color: var(--acend-text, #f3f1f8);
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  text-transform: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.acend-plans .acend-plan__price { font-size: 1.02rem; white-space: nowrap; }
.acend-plans .acend-plan__badge,
.acend-plans .acend-plan__saving { padding: 0.04rem 0.24rem; font-size: 0.62rem; white-space: nowrap; }
.acend-plans .acend-plan__compare { font-size: 0.7rem; }

.acend-plans .acend-plan__pricing {
  flex-direction: row;
  justify-content: flex-end;
}

.acend-plans .acend-plan__meta {
  order: initial;
  width: auto;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.7rem;
}

.acend-plans .acend-plan__meta-item { display: inline-flex; }
.acend-plans .acend-plan__meta-item::after { content: none; }
.acend-plans .acend-plan__meta-item + .acend-plan__meta-item::before {
  content: "\00B7";
  margin-right: 0.55rem;
  opacity: 0.7;
}

@media (max-width: 460px) {
  .acend-plans .acend-plan__row {
    flex-wrap: nowrap;
    align-items: center;
    height: 4.25rem;
    min-height: 4.25rem;
    padding: 0.42rem 0.58rem;
  }

  .acend-plans .acend-plan__main { padding-right: 0.2rem; }
  .acend-plans .acend-plan__side {
    width: auto;
    padding-left: 0;
    flex-direction: row;
    align-items: flex-end;
    max-width: 43%;
    text-align: right;
  }
  .acend-plans .acend-plan__pricing { order: initial; margin-right: 0; }
}

@media (min-width: 961px) {
  .ascend-product-single__layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.08fr);
    gap: 1.75rem;
  }
}

/* ===================================== 19. Aufladen: Betrag als Auswahl */
.acend-topup__opt { position: relative; min-width: 0; }

.acend-topup__radio {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.acend-topup__card { cursor: pointer; }

.acend-topup__radio:checked + .acend-topup__card {
  border-color: var(--acend-accent, #8b5cf6);
  background: rgba(139, 92, 246, 0.12);
  box-shadow: inset 0 0 0 1px var(--acend-accent, #8b5cf6);
}

.acend-topup__radio:focus-visible + .acend-topup__card {
  outline: 2px solid var(--acend-accent, #8b5cf6);
  outline-offset: 3px;
}

.acend-topup__pay { margin-top: 1.6rem; }
.acend-topup__submit { margin-top: 1.4rem; padding: 0.95rem 1.2rem; font-size: 1rem; }

/* ===================================== 20. Bloecke aus dem Seiten-Editor */
.acend-blocks {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  margin-top: 2.25rem;
}

.acend-blocks__head {
  margin: 0 0 0.9rem;
  font-size: clamp(1.35rem, 3.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.acend-blocks__text p { line-height: 1.7; color: var(--acend-muted, #9b95ad); }

.acend-featgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 0.6rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.acend-featgrid__item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Der Haken wird gezeichnet, nicht als Zeichen gesetzt: Ein Unicode-Haken sieht
   in jeder Schrift anders aus und sitzt selten auf der Grundlinie. */
.acend-featgrid__item::before {
  content: "";
  flex: 0 0 auto;
  width: 0.4rem;
  height: 0.72rem;
  margin: 0.25rem 0.15rem 0 0;
  border-right: 2px solid var(--acend-accent, #8b5cf6);
  border-bottom: 2px solid var(--acend-accent, #8b5cf6);
  transform: rotate(45deg);
}

.acend-blocks__cta {
  position: relative;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.16), rgba(10, 10, 15, 0) 70%);
  text-align: center;
  overflow: hidden;
}

.acend-blocks__ctahead {
  margin: 0 0 0.5rem;
  font-size: clamp(1.3rem, 3.4vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.acend-blocks__ctatext {
  max-width: 36rem;
  margin: 0 auto 1.3rem;
  line-height: 1.6;
  color: var(--acend-muted, #9b95ad);
}

.acend-blocks__cta .acend-btn {
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
}

/* ================================ 21. Kategorien als Reiter
 *
 * Vorher waren es lose Textlinks nebeneinander â€” man sah nicht, dass sie
 * zusammengehoeren, und schon gar nicht, welcher gerade gilt. Als Reiterleiste
 * auf gemeinsamem Untergrund ist beides ohne Nachdenken sichtbar. */
.acend-products__filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  padding: 0.3rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.acend-products__filter {
  padding: 0.5rem 0.95rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--acend-muted, #9b95ad);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.acend-products__filter:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--acend-text, #f3f1f8);
}

/* Der aktive Reiter traegt eine Flaeche, keinen Rahmen: Ein Rahmen verschiebt
   die Nachbarn um einen Pixel, sobald er auftaucht. */
.acend-products__filter.is-active {
  background: linear-gradient(180deg, #8b5cf6, #7c3aed);
  color: #fff;
  box-shadow: 0 8px 20px -12px rgba(124, 58, 237, 0.95);
}

.acend-products__filter.is-active:hover { color: #fff; }

.acend-products__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

@media (max-width: 640px) {
  .acend-products__filters {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* ================================ 22. Kundenstimmen und Showcase */
.acend-vouches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
  gap: 1rem;
}

.acend-vouch {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 0;
  padding: 1.35rem 1.35rem 1.2rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 18px;
  background: var(--acend-surface, #14141c);
}

.acend-vouch__stars { display: flex; gap: 0.15rem; }

/* Der Stern wird gezeichnet, nicht getippt: Ein Unicode-Stern sieht in jeder
   Schrift anders aus, und halbe Reihen aus verschiedenen Zeichen zu bauen geht
   schief, sobald der Nutzer eine eigene Schrift erzwingt. */
.acend-vouch__star {
  width: 0.95rem;
  height: 0.95rem;
  background: rgba(255, 255, 255, 0.16);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.acend-vouch__star.is-on { background: #fbbf24; }

.acend-vouch__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--acend-text, #f3f1f8);
}

.acend-vouch__name {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--acend-muted, #9b95ad);
}

/* Drei Videos nebeneinander. Bei vier blieb je Kachel so wenig Breite, dass
   ein 16:9-Vorschaubild kleiner war als die Schaltflaeche darauf. */
.acend-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

/* The Showcase needs enough horizontal room for three proper 16:9 previews.
   This breakout is scoped to this page and leaves all other shop pages alone. */
.acend-showcase-page {
  width: min(94vw, 78rem);
  max-width: none;
  margin-inline: 50%;
  transform: translateX(-50%);
}

.acend-showcase-page .acend-aff__hero {
  width: 100%;
}

.acend-showcase-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.35rem;
}

.acend-showcase-filter {
  min-height: 2.55rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--acend-border, rgba(255,255,255,.1));
  border-radius: 999px;
  background: #151720;
  color: var(--acend-muted, #9b95ad);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, color .18s ease, transform .18s ease;
}

.acend-showcase-filter:hover {
  color: #fff;
  border-color: rgba(139,125,255,.55);
  transform: translateY(-1px);
}

.acend-showcase-filter:focus-visible {
  outline: 2px solid var(--acend-accent, #8b5cf6);
  outline-offset: 3px;
}

.acend-showcase-filter.is-active {
  color: #fff;
  border-color: #7868f5;
  background: linear-gradient(145deg, #7768ff, #5847df);
}

.acend-shot[hidden] { display: none !important; }

.acend-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 18px;
  background: #10101a;
}

.acend-shot > img,
.acend-shot__play img,
.acend-shot > .ascend-media__frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.acend-shot__play {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.acend-shot__play::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 12, 0.3);
  transition: background 0.2s ease;
}

.acend-shot__play:hover::after { background: rgba(6, 6, 12, 0.15); }

/* Kein negativer Rand: Das Theme zentriert das Symbol ueber
 * translate(-50%, -50%). Ein Rand zusaetzlich verschoebe es um seine volle
 * Groesse nach links oben — auf jeder einzelnen Kachel der Wand. */
.acend-shot__play .ascend-media__playicon {
  width: 3.2rem;
  height: 3.2rem;
  margin: 0;
  z-index: 1;
}

.acend-shot__caption {
  padding: 0.75rem 1rem 0.9rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--acend-muted, #9b95ad);
  font-weight: 750;
  text-align: center;
}

@media (max-width: 980px) {
  .acend-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .acend-showcase { grid-template-columns: 1fr; }
  .acend-showcase-filters {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
  }
  .acend-showcase-filter { flex: 0 0 auto; }
}

/* ============================================================ 23. Feinschliff
 *
 * Eine letzte Ebene fÃ¼r alles, was auf jeder Seite spÃ¼rbar ist, aber bisher
 * keiner Datei gehÃ¶rte: Auswahl, Scrollbalken, Tastaturfokus â€” und die
 * Verfeinerung von Konto-Dashboard und Partnerseite. Alles bleibt Ã¼ber die
 * vorhandenen Token angeschlossen; nichts hier erfindet eine zweite Optik. */

/* Textauswahl in Markenfarbe statt Browser-Blau: Der einzige Moment, in dem
 * der Besucher Text markiert, wird so Teil der Seite statt Teil des Browsers. */
::selection {
  background: rgba(139, 92, 246, 0.4);
  color: #fff;
}

/* Schlanke Scrollbalken im Seitenfarbton. Nur dort, wo der Browser sie
 * zeichnen lÃ¤sst; Ã¼berall sonst bleibt es beim System. */
@supports (scrollbar-width: thin) {
  * {
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.35) transparent;
  }
}

/* Links brauchen denselben Fokusring wie KnÃ¶pfe â€” Tastaturnutzer sollen auf
 * jeder Seite sehen, wo sie sind, nicht nur in Formularen. */
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--acend-accent, #8b5cf6);
  outline-offset: 3px;
  border-radius: 4px;
}

/* PrimÃ¤rknopf: leichter Farbverlauf und ein Schein, der den Knopf vom Boden
 * abhebt. SekundÃ¤r bleibt ruhig â€” nur einer darf auf jeder FlÃ¤che leuchten. */
.acend-btn--primary:not(.acend-aff__link .acend-btn) {
  background: linear-gradient(180deg, #8b5cf6, #7c3aed);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 24px -14px rgba(124, 58, 237, 0.9);
}

.acend-btn--primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 30px -14px rgba(124, 58, 237, 1);
}

/* ------------------------------------------------- Konto: Kopfbereich */
/* Der IdentitÃ¤tsblock ist der Empfang des Dashboards: Karte mit sanftem
 * Lichteinfall von oben links, Avatar mit Ring in Akzentfarbe. */
.acend-dash2__header {
  position: relative;
  padding: 1.5rem 1.6rem;
  border: 1px solid var(--acend2-line, rgba(255, 255, 255, 0.08));
  border-radius: var(--acend2-r, 16px);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(139, 92, 246, 0.12), transparent 55%),
    var(--acend2-card, #15151f);
  overflow: hidden;
}

.acend-dash2__avatar {
  box-shadow: 0 0 0 2px var(--acend2-card, #15151f), 0 0 0 4px rgba(139, 92, 246, 0.55);
}

.acend-dash2__name { letter-spacing: -0.01em; }

.acend-dash2__since {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.15rem;
}

/* BegrÃ¼ÃŸung Ã¼ber der Ãœbersicht â€” die Seite spricht den Besucher an, statt mit
 * einer Beschriftung zu beginnen, die schon im Reiter steht. */
.acend-dash2__greet {
  margin: -0.25rem 0 0.9rem;
  font-size: 0.95rem;
  color: var(--acend2-muted, #9b95ad);
}

.acend-dash2__greet strong {
  color: var(--acend2-text, #f3f1f8);
  font-weight: 700;
}

/* Kacheln: Der Wert ist die Nachricht, die Kante trÃ¤gt den Zustand. Beim Hover
 * neigt sich die Kachel dem Zeiger zu â€” sie reagiert, ohne zu springen. */
.acend-tile {
  position: relative;
  overflow: hidden;
  transition:
    transform var(--acend-speed) var(--acend-curve),
    border-color var(--acend-speed) var(--acend-curve),
    box-shadow var(--acend-speed) var(--acend-curve);
}

.acend-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.7), rgba(139, 92, 246, 0));
  opacity: 0;
  transition: opacity var(--acend-speed) var(--acend-curve);
}

.acend-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: var(--acend-glow, 0 14px 30px -18px rgba(124, 58, 237, 0.85));
}

.acend-tile:hover::before { opacity: 1; }

/* Guthaben-Kachel behÃ¤lt ihre Vorrangstellung: Akzentkante dauerhaft. */
.acend-tile--balance::before { opacity: 1; }

/* Tab-Leiste: Der aktive Reiter bekommt einen leichten Schein, sodass das Auge
 * ihn auch findet, wenn es nur streift. */
.acend-dash2__tab.is-active {
  box-shadow: 0 6px 18px -10px rgba(124, 58, 237, 0.8);
}

/* Lizenzzeilen: Der Key-Chip bleibt monospace, aber die Zeile antwortet jetzt
 * auf den Zeiger â€” wichtig, weil hier alles aussieht wie eine Zeile vieler. */
.acend-licrow {
  transition:
    border-color var(--acend-speed) var(--acend-curve),
    background-color var(--acend-speed) var(--acend-curve),
    transform var(--acend-speed) var(--acend-curve);
}

.acend-licrow:hover {
  border-color: var(--acend2-line-hi, rgba(255, 255, 255, 0.16));
  transform: translateY(-1px);
}

/* Bestellzeilen ebenso: Ganze Zeile klickbar heiÃŸt, ganze Zeile muss reagieren. */
.acend-orderrow {
  transition:
    border-color var(--acend-speed) var(--acend-curve),
    background-color var(--acend-speed) var(--acend-curve),
    transform var(--acend-speed) var(--acend-curve);
}

.acend-orderrow:hover {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.05);
  transform: translateY(-1px);
}

/* Download-Karten: Das Aktions-Label wandert beim Hover nach rechts â€” dieselbe
 * Bewegung wie ein Pfeil, ohne ein zweites Element einzufÃ¼hren. */
.acend-dlcard {
  transition:
    border-color var(--acend-speed) var(--acend-curve),
    box-shadow var(--acend-speed) var(--acend-curve),
    transform var(--acend-speed) var(--acend-curve);
}

.acend-dlcard:hover {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: var(--acend-glow, 0 14px 30px -18px rgba(124, 58, 237, 0.85));
  transform: translateY(-2px);
}

.acend-dlcard__action { transition: transform var(--acend-speed) var(--acend-curve); }
.acend-dlcard:hover .acend-dlcard__action { transform: translateX(3px); }

/* Quicklinks bekommen einen zeichengegebenen Pfeil, der bei Hover anrÃ¼ckt.
 * Gezeichnet statt getippt: Ein "â†’" sieht je nach Schrift anders aus. */
.acend-quick__link {
  position: relative;
  transition:
    border-color var(--acend-speed) var(--acend-curve),
    background-color var(--acend-speed) var(--acend-curve),
    transform var(--acend-speed) var(--acend-curve);
}

.acend-quick__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.1rem;
  width: 0.42rem;
  height: 0.42rem;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.35;
  transition:
    transform var(--acend-speed) var(--acend-curve),
    opacity var(--acend-speed) var(--acend-curve);
}

.acend-quick__link:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-1px);
}

.acend-quick__link:hover::after {
  transform: translateY(-50%) rotate(45deg) translate(2px, -2px);
  opacity: 0.9;
}

/* Sicherheits-Tab: Die offene Karte trÃ¤gt eine Akzentkante links â€” man sieht
 * auch beim Scrollen in langen Formularen, zu welcher Karte man gehÃ¶rt. */
.acend-sec__card[open] {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: inset 3px 0 0 -1px rgba(139, 92, 246, 0.65);
}

/* Ledger-Zeilen heben sich zeilenweise ab, ohne eigene Karten zu werden. */
.acend-ledger__row {
  transition: background-color var(--acend-speed) var(--acend-curve);
  border-radius: 8px;
}

.acend-ledger__row:hover { background: rgba(255, 255, 255, 0.03); }

/* Leere ZustÃ¤nde: gleiche Botschaft, aber mit Luft und gestrichelter Kante â€”
 * ein leerer Zustand ist eine Einladung, kein Fehler. */
.acend-blank {
  border-style: dashed;
  text-align: center;
  padding: 2.25rem 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  .acend-tile,
  .acend-licrow,
  .acend-orderrow,
  .acend-dlcard,
  .acend-quick__link,
  .acend-dlcard__action,
  .acend-quick__link::after {
    transition: none;
  }
}

/* ------------------------------------------- Partnerseite (Affiliate) */
/* Hero: Licht von oben statt von der Seite, plus feines Punktraster im
 * Hintergrund â€” dieselbe Technik wie auf der Startseite, damit beide Seiten
 * als eine Marke erscheinen. */
.acend-aff__hero {
  position: relative;
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(139, 92, 246, 0.16), transparent 60%),
    linear-gradient(160deg, rgba(124, 58, 237, 0.1), rgba(10, 10, 15, 0) 62%);
}

.acend-aff__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(139, 92, 246, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(70% 60% at 50% 0%, #000 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 0%, #000 30%, transparent 100%);
  pointer-events: none;
}

.acend-aff__hero > * { position: relative; }

/* Statistikwerte in Markenfarbe â€” Zahlen sind hier das Angebot. */
.acend-aff__stat-value {
  background: linear-gradient(180deg, #ede9fe, #c4b5fd);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.acend-aff__stat {
  transition:
    border-color var(--acend-speed) var(--acend-curve),
    transform var(--acend-speed) var(--acend-curve),
    box-shadow var(--acend-speed) var(--acend-curve);
}

.acend-aff__stat:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--acend-glow, 0 14px 30px -18px rgba(124, 58, 237, 0.85));
}

/* Schritte: Verbinder zwischen den Nummern, solange Platz ist â€” erst unter
 * 700px stehen die Karten untereinander und die Linie wÃ¼rde lÃ¼gen. */
.acend-aff__step {
  transition:
    border-color var(--acend-speed) var(--acend-curve),
    transform var(--acend-speed) var(--acend-curve),
    box-shadow var(--acend-speed) var(--acend-curve);
}

.acend-aff__step:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--acend-glow, 0 14px 30px -18px rgba(124, 58, 237, 0.85));
}

.acend-aff__step-num {
  box-shadow: 0 6px 16px -8px rgba(124, 58, 237, 0.9);
}

.acend-aff__step-icon {
  position: absolute;
  top: 1.4rem;
  right: 1.35rem;
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  color: rgba(196, 181, 253, 0.75);
}

.acend-aff__step-icon svg { width: 100%; height: 100%; }

/* Kopierfeld: Fokus zieht den Knopf mit â€” Feld und Knopf sind eine Einheit. */
.acend-aff__link input:focus {
  outline: none;
  border-color: var(--acend-accent, #8b5cf6);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.22);
}

/* Teilen: kleine runde KnÃ¶pfe in einer Reihe unter dem Link. */
.acend-aff__share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.acend-aff__share-label {
  width: 100%;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--acend-muted, #9b95ad);
}

.acend-aff__share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--acend-text, #f3f1f8);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
  transition:
    border-color var(--acend-speed) var(--acend-curve),
    background-color var(--acend-speed) var(--acend-curve),
    transform var(--acend-speed) var(--acend-curve),
    color var(--acend-speed) var(--acend-curve);
}

.acend-aff__share-btn:hover {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.12);
  transform: translateY(var(--acend-lift, -2px));
  color: #fff;
}

.acend-aff__share-btn svg {
  width: 0.95rem;
  height: 0.95rem;
  flex: 0 0 auto;
}

/* AbschnittsÃ¼berschriften ohne Inline-Stil: gleiche Wirkung, eine Regel. */
.acend-aff__block-title { margin-bottom: 1rem; }

/* FAQ-EintrÃ¤ge rÃ¼cken beim Hover leicht â€” zusammenklappbare Listen wirken
 * sonst tot, weil nichts auf den Zeiger antwortet. */
.acend-aff__q {
  transition: border-color var(--acend-speed) var(--acend-curve);
}

.acend-aff__q[open],
.acend-aff__q:hover {
  border-color: rgba(139, 92, 246, 0.35);
}

/* ==================== 24. Zahlungsarten und Aufladen: eine Liste, keine Plakate
 *
 * Vorher waren Zahlungsarten grosse Karten mit Symbolkachel und Haekchen - drei
 * Anbieter fÃ¼llten eine halbe Seite, bevor man Ã¼berhaupt den Betrag gesehen
 * hatte. Jetzt eine zusammenhÃ¤ngende Segmented-Liste: ein Rahmen fÃ¼r alle,
 * Trennlinien zwischen den Zeilen, die Auswahl trÃ¤gt die Zeile. */

.acend-methods {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 12px;
  background: var(--acend-surface, #14141c);
  overflow: hidden;
}

/* Legende und MÃ¼nzpanel folgen der kompakteren Skala. */
.acend-methods__legend {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.acend-payflow { margin-top: 0.5rem; }

.acend-payflow__inner { padding: 0.7rem 0.8rem; }

.acend-payflow__title { font-size: 0.78rem; }

/* Die Karten werden zu Zeilen: keine eigenen Rahmnen mehr, nur die Trennlinie
 * zur Nachbarzeile. Der Hover antwortet zeilenweise. */
.acend-method__card {
  gap: 0.6rem;
  padding: 0.5rem 0.7rem;
  border: 0;
  border-radius: 0;
  transition:
    background-color var(--acend-speed) var(--acend-curve),
    box-shadow var(--acend-speed) var(--acend-curve);
}

.acend-method + .acend-method .acend-method__card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.acend-method__card:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: none;
}

/* Auswahl: linke Akzentkante + getÃ¶nter Grund. Deutlich, ohne zu leuchten. */
.acend-method__input:checked + .acend-method__card {
  border-color: transparent;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.14), rgba(139, 92, 246, 0.03) 55%);
  box-shadow: inset 3px 0 0 -1px var(--acend-accent, #8b5cf6);
}

.acend-method__icon {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.acend-method__icon svg { width: 13px; height: 13px; }

.acend-method__input:checked + .acend-method__card .acend-method__icon {
  background: var(--acend-accent, #8b5cf6);
}

.acend-method__title { font-size: 0.88rem; font-weight: 650; }

.acend-method__sub {
  margin-top: 0.02rem;
  font-size: 0.72rem;
  line-height: 1.3;
}

.acend-method__chip {
  margin-top: 0.1rem;
  padding: 0.08rem 0.38rem;
  font-size: 0.64rem;
}

/* Das HÃ¤kchen sitzt zeilenvertikal am rechten Rand und erscheint nur in der
 * ausgewÃ¤hlten Zeile â€” klein, ohne Kachel dahinter. */
.acend-method__card { position: relative; }

.acend-method__check {
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%) scale(0.6);
}

.acend-method__input:checked + .acend-method__card .acend-method__check {
  transform: translateY(-50%) scale(1);
}

.acend-method__text { padding-right: 1.4rem; }

@media (prefers-reduced-motion: reduce) {
  .acend-method__card { transition: none; }
}

/* ------------------------------------------------ MÃ¼nzen als Pillen */
.acend-coins {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.6rem;
}

.acend-coin__card {
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.75rem 0.38rem 0.5rem;
  border-radius: 999px;
}

.acend-coin__mark,
.acend-coin__symbol svg {
  width: 1.3rem;
  height: 1.3rem;
}

.acend-coin__name { font-size: 0.78rem; }

.acend-coin__network {
  display: inline;
  margin-left: 0.25rem;
  font-size: 0.66rem;
}

/* ============================== 25. Guthaben aufladen: Hero und Pillenauswahl
 *
 * Der Kontostand ist die Zahl, wegen der die Seite geÃ¶ffnet wird â€” er steht
 * jetzt allein in einer ruhigen Karte, und die BetrÃ¤ge sind Pillen statt
 * Kacheln mit drei Zeilen Text. GewÃ¤hlt wird schneller, gelesen wird weniger. */
.acend-topup__hero--card {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.6rem 1.6rem 1.45rem;
}

.acend-topup__balance-value {
  font-size: clamp(2.1rem, 5.5vw, 3rem);
}

.acend-topup__hero-note {
  max-width: 20rem;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--acend-muted, #9b95ad);
  text-align: right;
}

@media (max-width: 640px) {
  .acend-topup__hero-note { text-align: left; }
}

/* Betragswahl: eine Reihe von Pillen, Bonus als Mini-Chip oben rechts. */
.acend-topup__choose { display: flex; flex-direction: column; }

.acend-topup__choose-label {
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--acend-muted, #9b95ad);
}

.acend-topup__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.acend-topup__opt { position: relative; min-width: 0; }

.acend-topup__radio {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.acend-topup__pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition:
    border-color var(--acend-speed) var(--acend-curve),
    background-color var(--acend-speed) var(--acend-curve),
    box-shadow var(--acend-speed) var(--acend-curve),
    transform var(--acend-speed) var(--acend-curve);
}

.acend-topup__pill:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-1px);
}

.acend-topup__radio:checked + .acend-topup__pill {
  border-color: var(--acend-accent, #8b5cf6);
  background: rgba(139, 92, 246, 0.14);
  box-shadow: inset 0 0 0 1px var(--acend-accent, #8b5cf6);
}

.acend-topup__radio:focus-visible + .acend-topup__pill {
  outline: 2px solid var(--acend-accent, #8b5cf6);
  outline-offset: 3px;
}

.acend-topup__pill-amount {
  font-size: 0.98rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.acend-topup__pill-bonus {
  position: absolute;
  top: -0.55rem;
  right: 0.5rem;
  padding: 0.06rem 0.38rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #8b5cf6, #7c3aed);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  white-space: nowrap;
}

/* Eigener Betrag: gleiche Pille, aber mit Feld darin. */
.acend-topup__pill--custom { padding: 0.25rem 0.6rem; }

.acend-topup__pill--custom .acend-topup__customfield input {
  width: 7.5rem;
  padding: 0.32rem 1.9rem 0.32rem 0.6rem;
  border: 0;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 750;
  text-align: left;
}

.acend-topup__pill--custom .acend-topup__cur {
  right: 0.65rem;
  font-size: 0.85rem;
}

.acend-topup__range-hint {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--acend-muted, #9b95ad);
}

/* ========================= 26. Community-Beweise als gepackte Bildwand
 *
 * Die Bilder stammen aus dem Backend (Ascend - Community-Beweise) und haben
 * bewusst unterschiedliche Masse: Bewertungs-Screenshots sind quadratisch,
 * hoch, breit. Frueher gab die Reihe eine feste Hoehe vor und schnitt mit
 * `object-fit: cover` alles ab, was nicht passte — genau das machte die
 * Screenshots unlesbar. Jetzt gibt nur die Spaltenbreite etwas vor, die
 * Hoehe folgt dem echten Seitenverhaeltnis, und der Spaltenfluss verteilt
 * die Kacheln selbst auf gleich hohe Spalten: Zwei flache stehen dann
 * uebereinander neben einer hohen, unten bleibt nichts offen.
 *
 * Die Reihenfolge bleibt die aus dem Backend. Der Fluss laeuft Spalte fuer
 * Spalte von links oben nach rechts unten — "weiter nach vorne" setzt eine
 * Kachel also weiterhin nach oben links. */
.acend-proof {
  max-width: calc(1080px + 2 * 1.35rem);
  margin: 0 auto;
  padding: 0 1.35rem;
}

/* Spalten statt Zeilen. Die Bilder fallen von oben in die Spalten und fuellen
 * sie lueckenlos aus: Wo ein hohes Bild steht, passen daneben zwei flache
 * uebereinander. Eine Zeilenanordnung kann das nicht — dort richtet sich jede
 * Zeile nach ihrem hoechsten Bild und laesst darunter Luft stehen. */
.acend-proof__track {
  columns: 230px 5;
  column-gap: 0.7rem;
}

.acend-proof__item {
  /* Ohne Deckel, bis PHP die echte Dateibreite setzt. */
  --acend-proof-w: 9999px;
  --acend-proof-scale: 1;

  position: relative;
  /* Ein Bild wird nie ueber zwei Spalten zerrissen. */
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: block;
  /* Anteil der Spalte, aber nie breiter als die Datei selbst: Ein kleiner
   * Screenshot bleibt klein, statt auf Spaltenbreite hochskaliert und dabei
   * unscharf zu werden. */
  width: min(calc(100% * var(--acend-proof-scale)), var(--acend-proof-w));
  margin: 0 auto 0.7rem;
  border: 1px solid var(--acend-border, rgba(255, 255, 255, 0.09));
  border-radius: 12px;
  background: var(--acend-surface, #14141c);
  overflow: hidden;
  line-height: 0;
  transition:
    transform var(--acend-speed) var(--acend-curve),
    border-color var(--acend-speed) var(--acend-curve),
    box-shadow var(--acend-speed) var(--acend-curve);
}

/* Spezifischer als die Einblend-Regel des Themes ([data-reveal].is-visible
 * setzt transform auf none) — sonst bliebe die Karte unter dem Zeiger liegen. */
.acend-proof__item:hover,
.acend-proof__item[data-reveal].is-visible:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 18px 40px -24px rgba(124, 58, 237, 0.9);
}

/* Ganze Breite, eigene Hoehe: Das Bild behaelt sein Seitenverhaeltnis und
 * wird nirgends beschnitten. Das Seitenverhaeltnis steht zusaetzlich als
 * Variable im Markup, damit der Platz schon vor dem Laden stimmt. */
.acend-proof__item img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  aspect-ratio: var(--acend-proof-ar, auto);
}

/* Anzeigegroesse aus dem Backend (Ascend — Community-Beweise): Anteil der
 * Spaltenbreite, nie mehr als die echte Pixelbreite der Datei. */
.acend-proof__item[data-size="s"] { --acend-proof-scale: 0.55; }
.acend-proof__item[data-size="m"] { --acend-proof-scale: 0.78; }
.acend-proof__item[data-size="l"] { --acend-proof-scale: 1; }

/* Ueber alle Spalten — fuer den einen langen Chatverlauf, dem eine Spalte
 * nicht reicht. Sparsam: Jede solche Kachel teilt den Spaltenfluss in einen
 * Abschnitt davor und einen danach, und beide verteilen sich getrennt. */
.acend-proof__item[data-size="full"] {
  column-span: all;
  width: auto;
  max-width: min(100%, var(--acend-proof-w));
}

/* Die Wand kaskadiert, sobald sie ins Bild scrollt. `backwards` haelt das Bild
 * vor seinem Einsatz zurueck, laesst danach aber los — sonst bliebe die
 * Endposition kleben und der Hover-Effekt waere tot. */
@keyframes acend-proof-rise {
  from { opacity: 0; transform: translateY(16px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}

.acend-proof__item[data-reveal].is-visible {
  animation: acend-proof-rise 0.62s var(--acend-curve, cubic-bezier(0.22, 1, 0.36, 1)) backwards;
  animation-delay: calc(min(var(--acend-proof-i, 0), 9) * 65ms);
}

@media (prefers-reduced-motion: reduce) {
  .acend-proof__item,
  .acend-proof__item[data-reveal].is-visible {
    animation: none;
    transition: none;
  }
}

@media (max-width: 640px) {
  .acend-proof__track { columns: 150px 2; column-gap: 0.5rem; }
  .acend-proof__item { margin-bottom: 0.5rem; }
}

.acend-proof__item figcaption {
  position: absolute;
  left: 0.35rem;
  bottom: 0.35rem;
  max-width: calc(100% - 0.7rem);
  padding: 0.1rem 0.42rem;
  border-radius: 999px;
  background: rgba(8, 8, 13, 0.78);
  font-size: 0.64rem;
  font-weight: 650;
  line-height: 1.4;
  color: #ede9fe;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* ============================== 27. Admin: Beweis-Galerie */
.ascend-vouch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.ascend-vouch-item {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.ascend-vouch-item img {
  display: block;
  width: 100%;
  height: 130px;
  object-fit: cover;
}

.ascend-vouch-item figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 0.6rem;
  font-size: 0.78rem;
}

/* ============================== 28. Konto: Profilbild und ruhige Uebersicht */
.acend-photo {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.acend-photo__preview {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    inset 0 0 0 1px var(--acend2-line-hi, rgba(255, 255, 255, 0.16)),
    0 0 0 4px rgba(139, 92, 246, 0.18);
}

.acend-photo__img,
.acend-photo__preview img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 50%;
}

.acend-photo__form { flex: 1 1 16rem; min-width: 0; }

.acend-photo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.15rem;
}

/* Uebersicht: vier gleiche Kacheln auf dem Desktop, Werte in einer Groesse —
 * vorher wucherte jede Kachel nach eigenem Inhalt. */
.acend-dash2__panels .acend-tiles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.acend-dash2__panels .acend-tiles > .acend-ledger {
  grid-column: 1 / -1;
}

@media (max-width: 900px) {
  .acend-dash2__panels .acend-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.acend-dash2__panels .acend-tile { padding: 1.05rem 1rem 0.95rem; }

.acend-dash2__panels .acend-tiles .acend-tile__value {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.acend-dash2__panels .acend-tiles .acend-tile__label { font-size: 0.74rem; }

/* ===================================== 23. Knopf mit Symbol */
.acend-btn__icon { flex: 0 0 auto; }

.acend-aff__cta .acend-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

/* Discord in seiner eigenen Farbe: Der Knopf führt aus dem Shop heraus, und die
   Farbe sagt das vor dem Text. */
.acend-btn--discord {
  background: #5865f2;
  border-color: #5865f2;
  color: #fff;
}

.acend-btn--discord:hover,
.acend-btn--discord:focus-visible {
  background: #6b76f5;
  border-color: #6b76f5;
  color: #fff;
}

/* Buyer-only Configs link injected into the public navigation. */
.menu-item-ascend-configs > a,
.ascend-nav__configs {
  display: inline-flex !important;
  align-items: center;
  gap: 0.42rem;
}

.ascend-configs-menu-icon {
  display: inline-grid;
  place-items: center;
  min-width: 1.65rem;
  height: 1.35rem;
  padding: 0 0.24rem;
  border: 1px solid rgba(139, 92, 246, 0.38);
  border-radius: 6px;
  background: rgba(139, 92, 246, 0.12);
  color: #b7adff;
  font: 800 0.62rem/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

/* ================================================= Top-up payment selector v2
 * Payment choices on the balance page are a deliberate second step: compact brand
 * cards with strong selected state, rather than the old compressed list rows. */
.acend-topup__pay {
  margin-top: 1.5rem;
  padding: 1rem;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(139, 92, 246, 0.12), transparent 54%),
    rgba(9, 9, 15, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  animation: acend-topup-pay-in 0.28s var(--acend-curve, ease) both;
}

@keyframes acend-topup-pay-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.acend-topup__pay-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

.acend-topup__pay-head > span:last-child { display: grid; min-width: 0; }
.acend-topup__pay-head strong {
  color: var(--acend-text, #f3f1f8);
  font-size: 0.94rem;
  line-height: 1.3;
}
.acend-topup__pay-head small {
  margin-top: 0.14rem;
  color: var(--acend-muted, #9b95ad);
  font-size: 0.73rem;
  line-height: 1.4;
}

.acend-topup__pay-step {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(139, 92, 246, 0.38);
  border-radius: 10px;
  background: rgba(139, 92, 246, 0.13);
  color: #c4b5fd;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.acend-topup__pay .acend-checkout__gateways { margin: 0; gap: 0.75rem; }
.acend-topup__pay .acend-methods__legend {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.acend-topup__pay .acend-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.acend-topup__pay .acend-methods--1 { grid-template-columns: minmax(0, 1fr); }
.acend-topup__pay .acend-methods--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.acend-topup__pay .acend-method + .acend-method .acend-method__card { box-shadow: none; }

.acend-topup__pay .acend-method__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.7rem;
  min-height: 7.4rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.acend-topup__pay .acend-method__card::after {
  content: "";
  position: absolute;
  inset: auto -2.5rem -3.5rem auto;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--acend-accent, #8b5cf6);
  opacity: 0;
  filter: blur(28px);
  transition: opacity 0.2s ease;
}

.acend-topup__pay .acend-method__card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.4);
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.09), rgba(255, 255, 255, 0.025));
}

.acend-topup__pay .acend-method__input:checked + .acend-method__card {
  border-color: var(--acend-accent, #8b5cf6);
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.19), rgba(139, 92, 246, 0.045));
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.28), 0 18px 34px -26px var(--acend-accent, #8b5cf6);
}

.acend-topup__pay .acend-method__input:checked + .acend-method__card::after { opacity: 0.18; }

.acend-topup__pay .acend-method__icon {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.22);
  color: #d9d5e3;
}
.acend-topup__pay .acend-method__icon svg { width: 18px; height: 18px; }
.acend-topup__pay .acend-method__input:checked + .acend-method__card .acend-method__icon {
  border-color: transparent;
  background: linear-gradient(145deg, var(--acend-accent, #8b5cf6), #6d28d9);
  color: #fff;
  box-shadow: 0 10px 24px -14px var(--acend-accent, #8b5cf6);
}

.acend-topup__pay .acend-method__text { padding-right: 0.8rem; gap: 0.16rem; }
.acend-topup__pay .acend-method__title { font-size: 0.9rem; font-weight: 750; }
.acend-topup__pay .acend-method__sub { margin: 0; font-size: 0.69rem; line-height: 1.35; }
.acend-topup__pay .acend-method__chip { font-size: 0.61rem; }

.acend-topup__pay .acend-method__check {
  top: 0.75rem;
  right: 0.75rem;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--acend-accent, #8b5cf6);
  transform: scale(0.55);
}
.acend-topup__pay .acend-method__input:checked + .acend-method__card .acend-method__check { transform: scale(1); }

.acend-topup__pay .acend-payflow {
  margin-top: 0.1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.022);
}
.acend-topup__pay .acend-payflow__inner { padding: 0.85rem; }

@media (max-width: 720px) {
  .acend-topup__pay .acend-methods,
  .acend-topup__pay .acend-methods--2,
  .acend-topup__pay .acend-methods--3 { grid-template-columns: minmax(0, 1fr); }
  .acend-topup__pay .acend-method__card {
    flex-direction: row;
    align-items: center;
    min-height: 0;
    padding: 0.8rem 2.7rem 0.8rem 0.8rem;
  }
  .acend-topup__pay .acend-method__text { padding-right: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .acend-topup__pay { animation: none; }
  .acend-topup__pay .acend-method__card,
  .acend-topup__pay .acend-method__card::after { transition: none; }
}

/* =============================== 24. Compact license rhythm + equal programs
 * The rows gain a little breathing room internally while their outside spacing
 * tightens. Partner and affiliate are now peers in the first row. */
.acend-plans { gap: 0.18rem; }
.acend-plans .acend-plan__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: 1rem;
  min-height: 5.25rem;
  padding-top: 1.38rem;
  padding-bottom: 1.42rem;
}
.acend-plans .acend-plan__main {
  order: initial;
  width: auto;
  padding-right: 1rem;
}
.acend-plans .acend-plan__side {
  order: initial;
  align-self: center;
  margin-top: 0;
}
.acend-plans .acend-plan__meta {
  order: initial;
  margin-top: 0.22rem;
  padding-top: 0;
  border-top: 0;
}
.acend-plans .acend-plan__pricing { justify-content: flex-end; }
.acend-plans .acend-plan__price { display: inline-block; }

.acend-product-card__bonus {
  display: grid;
  min-width: 7.2rem;
  padding: 0.52rem 0.72rem;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(22, 163, 74, 0.96), rgba(5, 94, 55, 0.96));
  color: #fff;
  text-align: center;
  line-height: 1.05;
}
.acend-product-card__bonus strong {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.acend-product-card__bonus small {
  margin-top: 0.24rem;
  color: #dcfce7;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  text-transform: none;
}

.acend-affiliate-page {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  gap: 1.15rem;
}
.acend-affiliate-page.ascent-section {
  width: min(96vw, 90rem);
  max-width: none;
  margin-inline: 50%;
  transform: translateX(-50%);
}
.acend-affiliate-page > .acend-notice,
.acend-affiliate-page .acend-aff__how,
.acend-affiliate-page .acend-aff__faq-block { flex: 0 0 100%; }
.acend-affiliate-page .acend-aff__hero,
.acend-affiliate-page .acend-aff__secondary {
  flex: 1 1 calc(50% - 0.575rem);
  min-width: min(100%, 28rem);
}
.acend-affiliate-page .acend-aff__hero {
  padding: 1.85rem 1.65rem;
  text-align: left;
}
.acend-affiliate-page .acend-aff__hero .acend-aff__title { font-size: clamp(1.65rem, 3.1vw, 2.35rem); }
.acend-affiliate-page .acend-aff__hero .acend-aff__lead,
.acend-affiliate-page .acend-aff__hero .acend-aff__note { margin-left: 0; margin-right: 0; }
.acend-affiliate-page .acend-aff__secondary {
  display: flex;
  padding-top: 0;
  border-top: 0;
}
.acend-affiliate-page .acend-aff__secondary .acend-aff__panel { width: 100%; }
.acend-affiliate-page.acend-aff--single .acend-aff__secondary { flex-basis: 100%; }
.acend-affiliate-page .acend-aff__how { order: 3; margin-top: 1.2rem; }
.acend-affiliate-page .acend-aff__faq-block { order: 4; margin-top: 1.2rem; }

@media (max-width: 760px) {
  .acend-affiliate-page .acend-aff__hero,
  .acend-affiliate-page .acend-aff__secondary { flex-basis: 100%; min-width: 0; }
}

@media (max-width: 460px) {
  .acend-plans .acend-plan__row {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 0.55rem;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
  .acend-plans .acend-plan__main { padding-right: 0.3rem; }
  .acend-plans .acend-plan__price { font-size: 1.28rem; }
}
