/* ============================================================================
   Suite Progress-Indicator — Welle 5.9.4
   ----------------------------------------------------------------------------
   Vertikaler Dot-Indicator am rechten Rand der Suite-Section.
   Zeigt 6 Dots, einer pro Tile. Aktiv = leuchtet auf basierend auf
   Scroll-Position (mittlerer Tile in Viewport).
   Nur Desktop ≥1024px (auf Mobile wäre er Pflanzenkrampf).
   ============================================================================ */

.suite-bento {
  position: relative; /* Anchor für absolute Indicator */
}

.suite-progress-indicator {
  position: fixed;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  z-index: 50;

  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem 0.5rem;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s var(--ease-stripe-enter, cubic-bezier(0.16, 1, 0.3, 1)),
              visibility 0.45s,
              transform 0.6s var(--ease-stripe-enter, cubic-bezier(0.16, 1, 0.3, 1));
  transform: translateY(-50%) translateX(8px);
}

.suite-progress-indicator.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.suite-progress-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(26, 37, 64, 0.28); /* brand-dark @ 28% */
  background: rgba(255, 255, 255, 0.5);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.suite-progress-dot::before {
  /* Inner-Filling für active state */
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--color-brand-primary, #2d4a8a);
  transform: scale(0);
  transition: transform 0.35s var(--ease-stripe-enter, cubic-bezier(0.16, 1, 0.3, 1));
}

.suite-progress-dot:hover {
  border-color: var(--color-brand-primary, #2d4a8a);
  transform: scale(1.15);
}

.suite-progress-dot.is-active {
  border-color: var(--color-brand-primary, #2d4a8a);
  background: rgba(45, 74, 138, 0.08);
  box-shadow: 0 0 0 4px rgba(45, 74, 138, 0.1);
}

.suite-progress-dot.is-active::before {
  transform: scale(1);
}

/* Focus für Tastatur-User (a11y) */
.suite-progress-dot:focus-visible {
  outline: 2px solid var(--color-brand-accent, #d4a14e);
  outline-offset: 3px;
}

/* Tooltip-Label on hover (subtle) */
.suite-progress-dot::after {
  content: attr(data-tile-label);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-brand-primary, #2d4a8a);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(26, 37, 64, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.suite-progress-dot:hover::after,
.suite-progress-dot:focus-visible::after {
  opacity: 1;
}

/* Hide on Mobile + Reduced-Motion */
@media (max-width: 1023px) {
  .suite-progress-indicator { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .suite-progress-indicator { display: none; }
  .suite-progress-dot { transition: none; }
}

