/* =========================================================
   Spinko Funnel 3 — VIP-Tier (Quiz + Tier-Unlock + Premium-Wheel)
   Klon von Wild-Robin Funnel-3 mit Spinko-Brand-Tokens
   ========================================================= */

/* ---------- 1. VIP Design-Tokens ---------- */
:root {
  /* Monte-Carlo VIP-Palette (komplett aus variant-2-vip-blackcard.html) */
  --vip-black: #1A0D3E;
  --vip-black-deep: #000000;
  --vip-marble: #2A1461;
  --vip-marble-light: #3D1F7A;
  --vip-marble-edge: #6B3DDB;
  --vip-gold: #7A4CE6;
  --vip-gold-bright: #FF83DD;
  --vip-gold-deep: #A62A84;
  --vip-gold-shadow: #063D14;
  --vip-royal-red: #6B3DDB;
  --vip-red-bright: #7A4CE6;
  --vip-red-deep: #4B2A9C;
  --vip-cream: #FFFFFF;
  --vip-cream-bright: #FFFFFF;
  --vip-platinum: rgba(255, 255, 255, 0.95);

  /* Typography */
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-editorial: 'Poppins', system-ui, sans-serif;
  --font-body: 'Poppins', system-ui, sans-serif;

  /* Radius */
  --radius-pill: 9999px;
  --radius-card: 4px;
  --radius-lg: 1.5rem;
}

/* ---------- 2. Reset / Normalize ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; min-height: 100vh; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- 3. Body — Background-Stack ---------- */
body {
  font-family: var(--font-body);
  background-color: var(--vip-black);
  color: var(--vip-cream);
  background-image:
    linear-gradient(180deg, rgba(11, 13, 46, 0.45) 0%, rgba(11, 13, 46, 0.78) 55%, rgba(11, 13, 46, 0.95) 100%),
    none;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding-bottom: 70px; /* Sticky-CTA-Reservation (Mobile) */
}
@media (min-width: 768px) {
  body {
    background-image:
      linear-gradient(180deg, rgba(11, 13, 46, 0.45) 0%, rgba(11, 13, 46, 0.78) 55%, rgba(11, 13, 46, 0.95) 100%),
      none;
    padding-bottom: 80px; /* Sticky-CTA-Reservation (Desktop) */
  }
}

/* ---------- 4. Global-Layer-Container (initial empty, später Sprint-spezifisch befüllt) ---------- */
#sound-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 60;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 72, 0.6);
  background: rgba(11, 13, 46, 0.85);
  backdrop-filter: blur(8px);
  color: var(--vip-gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

#activity-ticker {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 4.5rem;
  z-index: 50;
}
#activity-ticker:empty { display: none; }

#progress-banner {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 55;
}

#sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
}
#sticky-cta-bar:empty { display: none; }

/* ---------- 5. Modal-Base ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.92) 50%, rgba(11, 13, 46, 0.98) 100%);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  overflow-y: auto;
}
.modal[hidden] { display: none; }
.modal.visible {
  display: flex;
  animation: modal-overlay-in 280ms ease-out;
}
.modal.visible .modal-frame,
.modal.visible .modal-final-frame {
  animation: modal-frame-in 380ms cubic-bezier(0.34, 1.4, 0.6, 1);
}

/* ---------- 6. Hero (S1) ---------- */
.hero-container {
  position: relative;
  max-width: 1024px;
  margin-inline: auto;
  padding: 0.875rem 1.5rem 0.5rem;
  text-align: center;
  overflow: hidden;
}

.glow-spot {
  position: absolute;
  top: 3rem;
  width: 8rem;
  height: 8rem;
  border-radius: var(--radius-pill);
  filter: blur(64px);
  pointer-events: none;
}
.glow-spot-left  { left: 25%;  background: var(--vip-gold);        opacity: 0.18; }
.glow-spot-right { right: 25%; background: var(--vip-red-bright);  opacity: 0.20; }

.wordmark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.wordmark-img {
  display: block;
  width: auto;
  max-width: 280px;
  height: auto;
  max-height: 80px;
  margin: 0 auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}
@media (max-width: 600px) {
  .wordmark-img {
    max-width: 220px;
    max-height: 64px;
  }
}

.wordmark-sub {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: var(--vip-gold);
  margin-bottom: 0.625rem;
}

.reciprocity-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  margin-bottom: 0.625rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 165, 72, 0.5);
  background: linear-gradient(135deg, rgba(28, 24, 21, 0.85), rgba(11, 13, 46, 0.7));
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: var(--vip-cream);
  font-size: 0.75rem;
  font-weight: 600;
  animation: reciprocity-pulse 3s ease-in-out infinite;
}
.reciprocity-banner strong {
  color: var(--vip-gold-bright);
}

.hero-label {
  display: inline-block;
  padding: 0.3125rem 0.875rem;
  margin-bottom: 0.625rem;
  border-radius: var(--radius-pill);
  background: var(--vip-red-bright);
  color: var(--vip-cream-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.hero-label-premium {
  background: linear-gradient(180deg, var(--vip-gold-bright) 0%, var(--vip-gold) 100%);
  color: var(--vip-black);
  box-shadow: 0 0 24px rgba(201, 165, 72, 0.35), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.hero-question {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.375rem;
  line-height: 1.15;
  color: var(--vip-cream-bright);
  margin-bottom: 0.375rem;
}

.hero-sub {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgba(244, 237, 224, 0.85);
  margin-bottom: 0.625rem;
}

.text-gold {
  color: var(--vip-gold-bright);
}

@media (min-width: 768px) {
  .hero-container   { padding: 2.5rem 3rem 2rem; }
  .wordmark-sub     { font-size: 1rem; }
  .hero-label       { font-size: 0.875rem; }
  .hero-question    { font-size: 2.5rem; }
  .hero-sub         { font-size: 1.125rem; }
}

/* ---------- 7. Wheel (S2 + S4) ---------- */
.wheel-section {
  padding: 0.25rem 1.5rem 2.5rem;
  max-width: 1024px;
  margin-inline: auto;
}

.wheel-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.wheel-label-pill {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: 0.5rem;
  border-radius: var(--radius-pill);
  background: var(--vip-red-bright);
  color: var(--vip-cream-bright);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.wheel-label-pill-premium {
  background: linear-gradient(180deg, var(--vip-gold-bright) 0%, var(--vip-gold) 100%);
  color: var(--vip-black);
  box-shadow: 0 0 20px rgba(201, 165, 72, 0.3);
}

.wheel-subline {
  color: rgba(244, 237, 224, 0.8);
  font-size: 0.875rem;
}

.wheel-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.5rem;
}

/* Locked-state: desaturated + dimmed */
.wheel-container-locked .wheel-disc {
  filter: grayscale(0.5) brightness(0.55);
}
.pointer-top-locked {
  background: rgba(201, 165, 72, 0.3) !important;
  box-shadow: none !important;
}

/* Atmosphere-Emojis */
.atmo {
  position: absolute;
  font-size: 1.5rem;
  pointer-events: none;
  user-select: none;
}
.atmo-1 { top: -1rem; left: -1.5rem; font-size: 1.875rem; }
.atmo-2 { top: 4rem;  right: -2rem; }
.atmo-3 { bottom: -0.5rem; left: -1rem; }

/* Pointer-Triangles */
.pointer {
  position: absolute;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 1.75rem;
  height: 1.75rem;
  background: rgba(201, 165, 72, 0.5);
}
.pointer-top {
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: var(--vip-gold-bright);
  box-shadow: 0 0 50px rgba(232, 200, 122, 0.4);
  z-index: 2;
}
.pointer-bottom {
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}
.pointer-left {
  left: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
}
.pointer-right {
  right: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

/* Wheel-Rotor */
.wheel-rotor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  will-change: transform;
}

/* Wheel-Disc — BLACK/GOLD conic-gradient */
.wheel-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid var(--vip-gold-bright);
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.55) 0 18%, transparent 19%),
    conic-gradient(
      from -15deg,
      #1a1210 0deg 30deg, #7A4CE6 30deg 60deg,
      #1a1210 60deg 90deg, #7A4CE6 90deg 120deg,
      #1a1210 120deg 150deg, #7A4CE6 150deg 180deg,
      #1a1210 180deg 210deg, #7A4CE6 210deg 240deg,
      #1a1210 240deg 270deg, #7A4CE6 270deg 300deg,
      #1a1210 300deg 330deg, #7A4CE6 330deg 360deg
    );
  box-shadow:
    0 0 60px rgba(232, 200, 122, 0.4),
    inset 0 0 0 4px var(--vip-black),
    inset 0 0 0 6px var(--vip-gold-deep);
}

/* SVG-Overlay with labels */
.wheel-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.wheel-segment-label {
  font-family: var(--font-display);
  font-weight: 700;
  pointer-events: none;
}

/* Highlight-Reveal (badge appears AFTER spin ends) */
.highlight-badge {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 350ms ease;
}
.highlight-text {
  transition: fill 350ms ease;
}
.wheel-rotor.revealed .highlight-badge {
  opacity: 1;
  animation: badge-pop 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 1;
}
.wheel-rotor.revealed .highlight-text {
  fill: #FFFFFF;
  font-weight: 900;
}

/* Wheel-2: gold badge → dark text on reveal */
#wheel-2-rotor.revealed .highlight-text {
  fill: var(--vip-black);
}

/* Wheel-2 atmo-emojis mirrored */
#wheel-2 .atmo-1 { left: auto; right: -1.5rem; }
#wheel-2 .atmo-2 { right: auto; left: -2rem; }
#wheel-2 .atmo-3 { left: auto; right: -1rem; }

/* Lock-Overlay */
.lock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  width: auto;
  height: auto;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: radial-gradient(ellipse at center, rgba(11, 13, 46, 0.94) 40%, rgba(11, 13, 46, 0.8) 100%);
  border: 1px solid rgba(201, 165, 72, 0.2);
  z-index: 4;
}
.lock-icon-wrap {
  width: 3rem;
  height: 3rem;
  animation: vault-pulse 2.5s ease-in-out infinite;
}
.lock-text-stack {
  text-align: center;
  max-width: 10rem;
}
.lock-text-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--vip-gold-bright);
  margin: 0 0 0.125rem;
}
.lock-text-sub {
  font-size: 0.5rem;
  line-height: 1.35;
  color: rgba(244, 237, 224, 0.7);
  margin: 0;
}

/* Tier-Badge (credit-card layout, gold gradient) */
.tier-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  width: 55%;
  max-width: 200px;
  aspect-ratio: 1.586 / 1;
  padding: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--vip-gold-bright) 0%, var(--vip-gold) 40%, var(--vip-gold-deep) 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 0 40px rgba(232, 200, 122, 0.5),
    0 8px 24px rgba(0, 0, 0, 0.6);
  color: var(--vip-black);
  text-align: center;
  animation: tier-reveal 800ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tier-badge[hidden] { display: none; }
.tier-badge-corner {
  font-size: 1.25rem;
  line-height: 1;
}
.tier-badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.7;
}
.tier-badge-main {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
}
.tier-badge-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.8;
}

/* Unlock-CTA inside lock-overlay */
.lock-overlay .cta-unlock {
  margin-top: 0.75rem;
  width: 100%;
  max-width: 14rem;
}

/* Locked wheel visual state */
.wheel-disc-locked {
  opacity: 0.5;
  filter: saturate(0.6) brightness(0.7);
  transition: opacity 400ms ease, filter 400ms ease;
}

/* Unlock Animation — 6-step CSS cascade triggered by JS adding .unlocking */
.wheel-container-locked.unlocking::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(232, 200, 122, 0.6) 0%, transparent 70%);
  animation: glow-wave 800ms ease-out forwards;
  pointer-events: none;
  z-index: 6;
}
.wheel-container-locked.unlocking .lock-icon-wrap {
  animation: lock-open 800ms ease-in-out 300ms forwards;
}
.wheel-container-locked.unlocking .lock-text-stack {
  animation: fade-out 400ms ease 300ms forwards;
}
@keyframes fade-out { 0% { opacity: 1; } 100% { opacity: 0; } }
.wheel-container-locked.unlocking .lock-overlay {
  pointer-events: none;
}
.wheel-container-locked.unlocking .tier-badge {
  animation: tier-reveal 600ms cubic-bezier(0.34, 1.56, 0.64, 1) 1200ms both,
             fade-out 400ms ease 2200ms forwards;
}
.wheel-container-locked.unlocking .wheel-disc-locked {
  animation: wheel-pulse 400ms ease-out 1800ms forwards;
}

/* Post-unlock: spin button revealed */
.wheel-container-locked.unlocked .lock-overlay { display: none; }
.wheel-container-locked.unlocked .wheel-disc-locked {
  opacity: 1;
  filter: none;
}
.wheel-container-locked.unlocked .spin-button[hidden] {
  display: flex !important;
  animation: button-fade-in 400ms ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  .wheel-container-locked.unlocking * {
    animation-duration: 200ms !important;
    animation-delay: 0ms !important;
  }
}

/* Spin-Button (center of wheel) */
.spin-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  z-index: 3;
  transition: transform 200ms ease, filter 200ms ease;
  background: linear-gradient(180deg, var(--vip-gold-bright) 0%, var(--vip-gold) 100%);
  color: var(--vip-black);
  border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 0 0 1px var(--vip-black-deep),
    0 0 30px rgba(201, 165, 72, 0.4),
    0 4px 0 var(--vip-gold-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.spin-button[hidden] { display: none; }
.spin-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.spin-button:focus-visible {
  outline: 3px solid var(--vip-cream-bright);
  outline-offset: 4px;
}
.spin-button:disabled {
  cursor: default;
  filter: brightness(0.85) saturate(0.6);
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .wheel-section    { padding: 1.5rem 3rem 3.5rem; }
  .wheel-subline    { font-size: 1rem; }
  .wheel-container  { max-width: 460px; margin-bottom: 2rem; }
  .atmo             { font-size: 1.875rem; }
  .atmo-1           { font-size: 2.25rem; }
  .spin-button      { width: 7rem; height: 7rem; font-size: 0.875rem; }
  .lock-text-main   { font-size: 0.6875rem; }
  .lock-text-sub    { font-size: 0.5625rem; }
  .lock-icon-wrap   { width: 3.5rem; height: 3.5rem; }
  .tier-badge-main  { font-size: 1.375rem; }
}

/* ---------- 8. Activity-Ticker ---------- */
.activity-ticker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 165, 72, 0.35);
  background: linear-gradient(135deg, rgba(28, 24, 21, 0.9), rgba(11, 13, 46, 0.85));
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  color: rgba(244, 237, 224, 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4caf50;
  animation: ticker-pulse 2s ease-in-out infinite;
}

.activity-text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.activity-highlight {
  color: var(--vip-gold-bright);
  font-weight: 700;
}

/* ---------- 9. Recent-Winners ---------- */
.recent-winners-section {
  padding: 2.5rem 1.5rem;
  max-width: 1024px;
  margin-inline: auto;
}

.winners-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.winners-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(201, 165, 72, 0.2);
  background: linear-gradient(135deg, rgba(28, 24, 21, 0.85), rgba(11, 13, 46, 0.7));
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.winners-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vip-gold) 0%, var(--vip-gold-deep) 100%);
  color: var(--vip-black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
}

.winners-info {
  flex: 1;
  min-width: 0;
}

.winners-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--vip-cream-bright);
}

.winners-meta {
  font-size: 0.6875rem;
  color: rgba(244, 237, 224, 0.5);
}

.winners-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.125rem;
  color: var(--vip-gold-bright);
  text-shadow: 0 2px 8px rgba(232, 200, 122, 0.3);
}

.winners-footnote {
  font-size: 0.6875rem;
  color: rgba(244, 237, 224, 0.4);
  text-align: center;
}

@media (min-width: 768px) {
  .winners-grid {
    flex-direction: row;
  }
  .winners-card {
    flex: 1;
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
  }
  .winners-avatar {
    width: 3rem;
    height: 3rem;
    font-size: 0.875rem;
  }
  .winners-amount {
    font-size: 1.375rem;
  }
}

/* ---------- 10. Sticker-Strip ---------- */
.sticker-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  max-width: 32rem;
  margin: 2.5rem auto 0;
  padding: 0 1.5rem;
}

.sticker {
  padding: 0.5rem 0.875rem;
  border: 1px solid rgba(201, 165, 72, 0.4);
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(28, 24, 21, 0.8), rgba(11, 13, 46, 0.65));
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  color: var(--vip-cream);
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 768px) {
  .sticker-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 60rem;
  }
  .sticker { font-size: 0.875rem; padding: 0.5625rem 1.125rem; }
}

/* ---------- 11. Trust-Badges ---------- */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 40rem;
  margin: 1.25rem auto 0;
  padding: 0 1.5rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201, 165, 72, 0.2);
  background: rgba(28, 24, 21, 0.6);
  color: rgba(244, 237, 224, 0.7);
  font-size: 0.6875rem;
  font-weight: 500;
}

/* ---------- 12. Slot-Mosaik ---------- */
.slot-mosaik-section {
  padding: 3rem 1.5rem;
  max-width: 1024px;
  margin-inline: auto;
}

.slot-mosaik-headline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--vip-cream-bright);
  text-align: center;
  margin-bottom: 0.5rem;
}

.slot-mosaik-sub {
  color: rgba(244, 237, 224, 0.6);
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.slot-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.slot-tile {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 2px solid var(--vip-gold);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--vip-marble-light) 0%, var(--vip-marble) 100%);
  box-shadow:
    0 0 0 1px var(--vip-black),
    0 4px 12px rgba(0, 0, 0, 0.4);
}

@media (min-width: 768px) {
  .slot-mosaik-headline { font-size: 1.5rem; }
  .slot-tile-grid { grid-template-columns: repeat(8, 1fr); }
  .slot-tile { font-size: 1.875rem; }
}

/* ---------- 13. Content-Section Shared ---------- */
.content-section {
  padding: 2.5rem 1.5rem;
  max-width: 1024px;
  margin-inline: auto;
}

.section-pre-header {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--vip-gold);
  text-align: center;
  margin-bottom: 0.375rem;
}

.section-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--vip-cream-bright);
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .content-section   { padding: 3.5rem 3rem; }
  .section-headline  { font-size: 1.875rem; }
}

/* ---------- 14. Whale-Benefits ---------- */
.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(201, 165, 72, 0.2);
  background: linear-gradient(135deg, rgba(28, 24, 21, 0.85), rgba(11, 13, 46, 0.7));
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.benefit-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: rgba(201, 165, 72, 0.12);
  border: 1px solid rgba(201, 165, 72, 0.25);
  font-size: 1.125rem;
}

.benefit-title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--vip-cream-bright);
  margin-bottom: 0.25rem;
}

.benefit-body {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(244, 237, 224, 0.7);
}

@media (min-width: 768px) {
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .benefit-card { padding: 1.25rem 1.5rem; }
}

/* ---------- 15. Compare-Table ---------- */
.compare-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compare-col {
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(244, 237, 224, 0.1);
  background: linear-gradient(135deg, rgba(28, 24, 21, 0.7), rgba(11, 13, 46, 0.55));
}

.compare-col-whale {
  border-color: var(--vip-gold);
  background: linear-gradient(135deg, rgba(28, 24, 21, 0.9), rgba(11, 13, 46, 0.75));
  box-shadow: 0 0 24px rgba(201, 165, 72, 0.15);
  position: relative;
}

.compare-h {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--vip-cream-bright);
  margin-bottom: 0.75rem;
}
.compare-col-whale .compare-h {
  color: var(--vip-gold-bright);
}

.compare-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--vip-gold-bright) 0%, var(--vip-gold) 100%);
  color: var(--vip-black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.compare-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.8125rem;
  color: rgba(244, 237, 224, 0.8);
  line-height: 1.4;
}
.compare-row + .compare-row {
  border-top: 1px solid rgba(244, 237, 224, 0.06);
}
.compare-col-whale .compare-row {
  color: var(--vip-cream);
}

.compare-icon {
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
}

.compare-footnote {
  font-size: 0.75rem;
  color: rgba(244, 237, 224, 0.45);
  text-align: center;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .compare-grid {
    flex-direction: row;
    gap: 1rem;
  }
  .compare-col { flex: 1; padding: 1.5rem 1.25rem; }
}

/* ---------- 16. VIP-Manager ---------- */
.vip-manager-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(201, 165, 72, 0.3);
  background: linear-gradient(135deg, rgba(28, 24, 21, 0.85), rgba(11, 13, 46, 0.7));
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}

.vip-manager-avatar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vip-gold-bright) 0%, var(--vip-gold) 100%);
  color: var(--vip-black);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.vip-manager-info {
  flex: 1;
  min-width: 0;
}

.vip-manager-role {
  display: block;
  font-family: var(--font-display);
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--vip-gold);
  margin-bottom: 0.125rem;
}

.vip-manager-name {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--vip-cream-bright);
  margin-bottom: 0.375rem;
}

.vip-manager-quote {
  font-size: 0.8125rem;
  font-style: italic;
  line-height: 1.5;
  color: rgba(244, 237, 224, 0.7);
  margin: 0 0 0.625rem;
}

.vip-manager-online {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4caf50;
}

.vip-manager-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4caf50;
  animation: ticker-pulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .vip-manager-card { padding: 1.5rem 1.75rem; gap: 1.25rem; }
  .vip-manager-avatar { width: 4rem; height: 4rem; font-size: 1.125rem; }
}

/* ---------- 17. FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 40rem;
  margin: 0 auto;
}

.faq-item {
  padding: 1rem 1.125rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(201, 165, 72, 0.15);
  background: linear-gradient(135deg, rgba(28, 24, 21, 0.8), rgba(11, 13, 46, 0.6));
}

.faq-q {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--vip-cream-bright);
  margin-bottom: 0.375rem;
}

.faq-a {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.7);
}

/* ---------- 18. Quiz-Modal ---------- */
.quiz-backdrop {
  position: absolute;
  inset: 0;
}

.quiz-modal-frame {
  position: relative;
  max-width: 28rem;
  width: 100%;
  margin: 0 auto;
  padding: 4px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--vip-gold) 0%, var(--vip-marble-edge) 50%, var(--vip-gold-bright) 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  animation: modal-frame-in 380ms cubic-bezier(0.34, 1.4, 0.6, 1);
}

.quiz-modal-inner {
  padding: 2rem 1.75rem 2.25rem;
  border-radius: calc(var(--radius-lg) - 4px);
  background: var(--vip-black);
  text-align: center;
}

.quiz-progress {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--vip-gold);
  margin-bottom: 1.5rem;
}

.quiz-question[hidden] { display: none; }

.quiz-question-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.375rem;
  line-height: 1.2;
  color: var(--vip-cream-bright);
  margin-bottom: 1.5rem;
}

.quiz-answer-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.quiz-answer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border: 1.5px solid rgba(201, 165, 72, 0.25);
  background: linear-gradient(135deg, rgba(28, 24, 21, 0.85), rgba(11, 13, 46, 0.7));
  color: var(--vip-cream);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 120ms ease;
}
.quiz-answer:hover {
  border-color: var(--vip-gold);
  background: linear-gradient(135deg, rgba(42, 37, 32, 0.9), rgba(28, 24, 21, 0.8));
  transform: scale(1.01);
}
.quiz-answer:active {
  transform: scale(0.985);
}

.quiz-answer-selected {
  border-color: var(--vip-gold-bright) !important;
  background: linear-gradient(135deg, rgba(201, 165, 72, 0.15), rgba(28, 24, 21, 0.85)) !important;
  box-shadow: 0 0 16px rgba(201, 165, 72, 0.2);
}

.quiz-answer-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
}

.quiz-answer-text {
  font-weight: 600;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .quiz-modal-inner   { padding: 2.5rem 2.5rem 3rem; }
  .quiz-question-text { font-size: 1.625rem; }
  .quiz-answer        { padding: 1rem 1.25rem; }
}

/* ---------- 19. Modals — Intermediate + Final ---------- */
.modal-frame {
  max-width: 28rem;
  margin: 0 auto;
  padding: 4px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--vip-gold) 0%, var(--vip-marble-edge) 50%, var(--vip-gold-bright) 100%);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
}

.modal-inner {
  padding: 2rem 2rem 2.25rem;
  border-radius: calc(var(--radius-lg) - 4px);
  background: var(--vip-black);
  text-align: center;
}

.modal-top-marker {
  display: block;
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--vip-gold);
  margin-bottom: 0.5rem;
}

.modal-top-emoji {
  display: block;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.modal-top-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--vip-cream-bright);
  margin-bottom: 0.5rem;
}

.modal-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--vip-gold-bright);
  text-shadow: 0 4px 24px rgba(232, 200, 122, 0.45);
  margin-bottom: 0.75rem;
}

.modal-body-text {
  font-family: var(--font-body);
  color: rgba(244, 237, 224, 0.85);
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* CTA-Green (shared) */
.cta-green {
  background: linear-gradient(180deg, #FF83DD 0%, #A62A84 100%);
  color: var(--vip-cream-bright);
  border: 3px solid var(--vip-gold);
  box-shadow:
    0 0 0 1px var(--vip-black-deep),
    0 0 30px rgba(34, 229, 76, 0.4),
    0 4px 0 #A62A84,
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.cta-modal {
  display: block;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 1.0625rem;
  transition: transform 200ms ease, filter 200ms ease;
}
.cta-modal:hover {
  transform: scale(1.02);
}
.cta-modal:active {
  transform: scale(0.98);
}
.cta-modal:focus-visible {
  outline: 3px solid var(--vip-gold-bright);
  outline-offset: 4px;
}

@media (min-width: 768px) {
  .modal-inner { padding: 2.5rem 2.75rem 3rem; }
  .modal-top-emoji { font-size: 5rem; }
  .modal-top-text { font-size: 2rem; }
  .modal-number { font-size: 4rem; }
}

/* Final-Modal */
.modal-final-frame {
  max-width: 28rem;
  margin: 0 auto;
  padding: 6px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--vip-gold-bright) 0%, var(--vip-marble-edge) 50%, var(--vip-gold) 100%);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(232, 200, 122, 0.45);
}

.modal-final-inner {
  padding: 2rem 1.75rem 2.25rem;
  border-radius: calc(var(--radius-lg) - 6px);
  background: var(--vip-black);
  text-align: center;
}

.modal-final-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--vip-cream-bright);
  margin-bottom: 0.5rem;
}

.modal-final-sub {
  font-family: var(--font-body);
  color: rgba(244, 237, 224, 0.85);
  margin-bottom: 1rem;
}

.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(196, 24, 24, 0.5);
  background: rgba(196, 24, 24, 0.15);
  color: #ff6b6b;
  font-size: 0.75rem;
  font-weight: 600;
}

.urgency-dot {
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: #ff4444;
  animation: urgency-pulse 1.5s ease-in-out infinite;
}

.reveal-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.reveal-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  text-align: left;
  border: 1px solid rgba(201, 165, 72, 0.3);
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(28, 24, 21, 0.85), rgba(11, 13, 46, 0.7));
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.reveal-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(244, 237, 224, 0.7);
}

.reveal-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.875rem;
  line-height: 1;
  color: var(--vip-gold-bright);
  text-shadow: 0 2px 12px rgba(232, 200, 122, 0.35);
}

.cta-final {
  padding: 1.125rem 1.5rem;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  box-shadow:
    0 0 0 1px var(--vip-black-deep),
    0 0 40px rgba(34, 229, 76, 0.55),
    0 6px 0 #A62A84,
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.cta-final:hover {
  transform: scale(1.025);
}
.cta-final:active {
  transform: scale(0.985);
  box-shadow:
    0 0 0 1px var(--vip-black-deep),
    0 0 40px rgba(34, 229, 76, 0.55),
    0 2px 0 #A62A84,
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  .modal-final-inner { padding: 2.5rem 2.25rem 2.75rem; }
  .modal-final-headline { font-size: 2.5rem; }
  .reveal-card { padding: 1.125rem 1.5rem; }
  .reveal-value { font-size: 2.125rem; }
}

/* ---------- 20. CTA-VIP (Gold) ---------- */
.cta-vip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--vip-gold-bright) 0%, var(--vip-gold) 100%);
  color: var(--vip-black);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow:
    0 0 0 1px var(--vip-black-deep),
    0 0 40px rgba(201, 165, 72, 0.45),
    0 4px 0 var(--vip-gold-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform 200ms ease, filter 200ms ease;
  animation: vip-cta-pulse 2.5s ease-in-out infinite;
}
.cta-vip:hover {
  transform: scale(1.03);
}
.cta-vip:active {
  transform: scale(0.97);
}
.cta-vip:focus-visible {
  outline: 3px solid var(--vip-cream-bright);
  outline-offset: 4px;
}

.cta-unlock {
  font-size: 1.125rem;
  padding: 1.125rem 2.5rem;
}

/* ---------- 21. Compliance-Footer ---------- */
.compliance-footer {
  margin-top: 2rem;
  padding: 2.5rem 1.5rem;
  border-top: 2px solid var(--vip-gold-deep);
  background: #0d0a08;
}

.compliance-footer-inner {
  max-width: 1024px;
  margin-inline: auto;
}

.compliance-footer p {
  color: rgba(244, 237, 224, 0.6);
  font-size: 0.75rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.compliance-footer a {
  color: rgba(201, 165, 72, 0.8);
  text-decoration: underline;
}

.footer-disclosure {
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(201, 165, 72, 0.15);
}

.footer-links a {
  color: rgba(244, 237, 224, 0.6);
}

/* ---------- 22. Sticky-CTA-Bar ---------- */
.sticky-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  background: linear-gradient(180deg, rgba(28, 24, 21, 0.98) 0%, rgba(11, 13, 46, 0.98) 100%);
  border-top: 1px solid rgba(201, 165, 72, 0.4);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  animation: sticky-slide-up 500ms cubic-bezier(0.34, 1.4, 0.6, 1);
}

.sticky-cta-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.sticky-cta-label {
  font-family: var(--font-display);
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--vip-gold);
}

.sticky-cta-value {
  font-size: 0.875rem;
  color: var(--vip-cream);
}
.sticky-cta-value strong {
  color: var(--vip-gold-bright);
  font-weight: 700;
}

.sticky-cta-btn {
  flex-shrink: 0;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  animation: none;
}

@media (min-width: 768px) {
  .sticky-cta-bar  { padding: 0.75rem 1.5rem; }
  .sticky-cta-btn  { padding: 0.75rem 1.5rem; font-size: 1rem; }
  .sticky-cta-label { font-size: 0.625rem; }
}

/* ---------- 23. Progress-Banner (visual) ---------- */
.progress-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  max-width: calc(100vw - 2rem);
  border: 2px solid var(--vip-gold);
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, rgba(28, 24, 21, 0.95) 0%, rgba(11, 13, 46, 0.95) 100%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(201, 165, 72, 0.4);
  animation: progress-banner-in 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.progress-banner[hidden] { display: none; }

.progress-banner-icon {
  font-size: 1.05rem;
  line-height: 1;
}
.progress-banner-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(244, 237, 224, 0.7);
}
.progress-banner-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  white-space: nowrap;
  color: var(--vip-gold-bright);
  text-shadow: 0 1px 6px rgba(232, 200, 122, 0.4);
}

@media (min-width: 768px) {
  .progress-banner       { padding: 0.625rem 1.25rem; gap: 0.625rem; }
  .progress-banner-value { font-size: 1.0625rem; }
}

/* ---------- 24. Confetti ---------- */
.confetti {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 5;
  animation: confetti-burst forwards cubic-bezier(0.18, 0.7, 0.35, 1);
  will-change: transform, opacity;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ---------- 25. Sound-Toggle (visual) ---------- */
#sound-toggle {
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}
#sound-toggle:hover,
#sound-toggle:focus-visible {
  border-color: var(--vip-gold);
  background: rgba(11, 13, 46, 0.95);
  outline: none;
}
#sound-toggle:active {
  transform: scale(0.94);
}
#sound-toggle.sound-on {
  background: var(--vip-gold);
  border-color: var(--vip-gold);
  color: var(--vip-black);
}
#sound-toggle.sound-on svg line {
  display: none;
}

/* ---------- 26. Utilities ---------- */
[hidden] {
  display: none !important;
}
.hidden {
  display: none !important;
}

/* =========================================================
   KEYFRAMES-LIBRARY
   Alle Animationen werden in Sprints 01–10a auf konkrete
   Selektoren angewendet — hier nur die Definitionen.
   ========================================================= */

/* --- Lock-Icon Idle-Pulse (Sprint 02) --- */
@keyframes lock-pulse {
  0%, 100% { transform: scale(1.0); }
  50%      { transform: scale(1.05); }
}

/* --- Vault-Lock Pulse mit drop-shadow (Sprint 02, aus Mockup) --- */
@keyframes vault-pulse {
  0%, 100% { transform: scale(1.0); filter: drop-shadow(0 0 30px rgba(201, 165, 72, 0.4)); }
  50%      { transform: scale(1.04); filter: drop-shadow(0 0 50px rgba(232, 200, 122, 0.6)); }
}

/* --- CTA-Pulse (generisch, Sprint 01/02) --- */
@keyframes cta-pulse {
  0%, 100% { transform: scale(1.0); box-shadow: 0 0 24px rgba(201, 165, 72, 0.35); }
  50%      { transform: scale(1.03); box-shadow: 0 0 40px rgba(232, 200, 122, 0.55); }
}

/* --- VIP-CTA-Pulse (Gold-Filled-Button, aus Mockup) --- */
@keyframes vip-cta-pulse {
  0%, 100% { transform: scale(1.0); box-shadow: 0 0 0 1px var(--vip-black-deep), 0 0 40px rgba(201, 165, 72, 0.45), 0 4px 0 var(--vip-gold-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.4); }
  50%      { transform: scale(1.025); box-shadow: 0 0 0 1px var(--vip-black-deep), 0 0 60px rgba(232, 200, 122, 0.7), 0 4px 0 var(--vip-gold-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.5); }
}

/* --- Reciprocity-Banner Glow (Sprint 01) --- */
@keyframes reciprocity-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(232, 200, 122, 0.25), 0 4px 12px rgba(0, 0, 0, 0.5); }
  50%      { box-shadow: 0 0 36px rgba(232, 200, 122, 0.5),  0 4px 12px rgba(0, 0, 0, 0.5); }
}

/* --- Urgency-Pill Red-Dot (Sprint 06) --- */
@keyframes urgency-pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

/* --- Activity-Ticker Green-Dot (Sprint 02) --- */
@keyframes ticker-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

/* --- Sticky-CTA-Bar mount slide-up (Sprint 10a) --- */
@keyframes sticky-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* --- Highlight-Badge Pop (SHARED §3.2) --- */
@keyframes badge-pop {
  0%   { transform: scale(0.4); }
  60%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* --- Confetti-Burst Trajectory (SHARED §3.3) --- */
@keyframes confetti-burst {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
  55% {
    transform: translate(var(--tx), var(--ty)) rotate(calc(var(--r) * 0.5));
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx2), var(--ty2)) rotate(var(--r));
    opacity: 0;
  }
}

/* --- Tier-Unlock Glow-Wave (Sprint 04, components.md §S4) --- */
@keyframes glow-wave {
  0%   { box-shadow: 0 0 0 0 rgba(232, 200, 122, 0.6); opacity: 0.8; }
  50%  { box-shadow: 0 0 60px 20px rgba(232, 200, 122, 0.4); opacity: 1; }
  100% { box-shadow: 0 0 120px 40px rgba(232, 200, 122, 0); opacity: 0; }
}

/* --- Lock-Bügel fade-out (Sprint 04) --- */
@keyframes lock-open {
  0%   { opacity: 1; transform: translateY(0) rotate(0deg); }
  60%  { opacity: 0.6; transform: translateY(-4px) rotate(-12deg); }
  100% { opacity: 0; transform: translateY(-24px) rotate(-30deg); }
}

/* --- Tier-Badge Reveal (Scale-In Overshoot, Sprint 04) --- */
@keyframes tier-reveal {
  0%   { opacity: 0; transform: scale(0.6); }
  70%  { opacity: 1; transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}

/* --- Wheel Reveal-Pulse (Sprint 04, post-unlock) --- */
@keyframes wheel-pulse {
  0%   { opacity: 0.4; transform: scale(0.95); filter: brightness(0.7); }
  60%  { opacity: 1;   transform: scale(1.02); filter: brightness(1.1); }
  100% { opacity: 1;   transform: scale(1);    filter: brightness(1); }
}

/* --- Spin-Button Fade-In (Sprint 04, post-unlock) --- */
@keyframes button-fade-in {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.6); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* --- Modal Overlay Fade-In (SHARED §3.4) --- */
@keyframes modal-overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- Modal Frame Scale-In (SHARED §3.4) --- */
@keyframes modal-frame-in {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- Progress-Banner Mount (SHARED §3.5) --- */
@keyframes progress-banner-in {
  0%   { opacity: 0; transform: translateX(-50%) translateY(-32px) scale(0.85); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

/* =========================================================
   REDUCED-MOTION FALLBACK
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   CRO-Ergänzungen 2026-08 — Einzahlungs-Framing
   ============================================================ */

/* Bonus-Mechanik: macht aus "gewonnen" ein verstandenes Angebot */
.bonus-math {
  margin: 0 0 1.5rem;
  padding: 0.875rem 1rem;
  border: 1px dashed rgba(139, 95, 224, 0.5);
  border-radius: 10px;
  background: rgba(42, 43, 79, 0.45);
}
.bonus-math-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}
.bonus-math-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1rem;
}
.bonus-math-in    { color: rgba(255, 255, 255, 0.82); }
.bonus-math-arrow { color: rgba(255, 255, 255, 0.45); }
.bonus-math-out   { color: #22E54C; }

/* Vorframing direkt über dem CTA */
.next-step-hint {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(139, 95, 224, 0.14);
  border-left: 3px solid #8B5FE0;
  border-radius: 0 10px 10px 0;
  padding: 0.65rem 0.85rem;
  margin: 0 0 1.1rem;
  text-align: left;
}
.next-step-hint strong { color: #fff; }

/* Zahlungsmethoden */
.pay-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
}
.pay-chip {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.04);
}

.modal-fineprint {
  font-size: 0.65rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 1rem;
}

/* Exit-Intent-Modal */
.exit-close {
  position: absolute;
  top: 0.6rem;
  right: 0.75rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.25rem;
  cursor: pointer;
  z-index: 2;
}
.exit-stay-link {
  display: block;
  width: 100%;
  margin-top: 0.85rem;
  background: none;
  border: none;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  cursor: pointer;
}

/* Reviews */
.reviews-section {
  padding: 2rem 1.25rem 2.5rem;
  max-width: 560px;
  margin: 0 auto;
}
.reviews-headline {
  font-weight: 800;
  font-size: 1.15rem;
  text-align: center;
  color: #fff;
  margin-bottom: 1.1rem;
}
.review-card {
  display: flex;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(139, 95, 224, 0.28);
  border-radius: 10px;
  background: rgba(42, 43, 79, 0.55);
  text-align: left;
}
.review-avatar {
  flex: 0 0 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, #8B5FE0, #FF48CD);
}
.review-stars { color: #FFC53D; font-size: 0.7rem; letter-spacing: -0.04em; }
.review-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.1rem 0 0.3rem;
}
.review-text {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.6);
}
