.plot-initial-placeholder {
  position: absolute;
  inset: 10px;
  z-index: 12;
  display: grid;
  place-items: center;
  pointer-events: none;
  border-radius: 16px;
  background: radial-gradient(circle at 20% 10%, rgba(59, 130, 246, 0.16), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.14), transparent 50%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.88), rgba(15, 23, 42, 0.88));
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.35);
}

html[data-theme="light"] .plot-initial-placeholder {
  background: radial-gradient(circle at 20% 10%, rgba(59, 130, 246, 0.14), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(226, 232, 240, 0.92));
  border-color: rgba(51, 65, 85, 0.14);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
}

.plot-initial-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 18px 22px;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.14);
  backdrop-filter: blur(10px);
}

html[data-theme="light"] .plot-initial-placeholder__inner {
  background: rgba(255, 255, 255, 0.55);
}

.plot-initial-placeholder__headline {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plot-initial-placeholder__title {
  font-size: 1.05rem;
  color: var(--text-color-white);
}

html[data-theme="light"] .plot-initial-placeholder__title {
  color: var(--text-contrast);
}

.plot-initial-placeholder__dots {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--brand-orange);
  font-size: 1.35rem;
  line-height: 1;
}

.plot-initial-placeholder__dot {
  opacity: 0.15;
  animation: bitlabDots 1.2s infinite ease-in-out;
}

.plot-initial-placeholder__dot:nth-child(2) {
  animation-delay: 0.15s;
}

.plot-initial-placeholder__dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes bitlabDots {
  0%,
  100% {
    opacity: 0.15;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

.plot-slow-placeholder {
  position: absolute;
  inset: 10px;
  z-index: 11;
  display: grid;
  place-items: center;
  pointer-events: none;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

html[data-theme="light"] .plot-slow-placeholder {
  background: rgba(248, 250, 252, 0.72);
  border-color: rgba(51, 65, 85, 0.14);
}

.plot-slow-placeholder__inner {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.20);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.35);
}

html[data-theme="light"] .plot-slow-placeholder__inner {
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
}

.plot-slow-placeholder__headline {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.plot-slow-placeholder__title {
  font-size: 0.98rem;
  color: var(--text-color-white);
}

html[data-theme="light"] .plot-slow-placeholder__title {
  color: var(--text-contrast);
}

.plot-slow-placeholder__dots {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--brand-orange);
  font-size: 1.2rem;
  line-height: 1;
}

.plot-slow-placeholder__dot {
  opacity: 0.15;
  animation: bitlabDots 1.2s infinite ease-in-out;
}

.plot-slow-placeholder__dot:nth-child(2) {
  animation-delay: 0.15s;
}

.plot-slow-placeholder__dot:nth-child(3) {
  animation-delay: 0.3s;
}
