/* Soft-launch: beta banner, risk disclaimer, onboarding tour */
.dp-beta-banner {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 7px 40px 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.22), rgba(6, 182, 212, 0.14));
  border-bottom: 1px solid rgba(139, 92, 246, 0.25);
  text-align: center;
  box-sizing: border-box;
}
body.has-ticker.has-beta-banner { padding-top: 70px; }
body.has-ticker.has-beta-banner .sidebar { top: 70px; height: calc(100vh - 70px); }
.dp-beta-banner__tag {
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.35);
  color: #c4b5fd;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.dp-beta-banner__text { flex: 0 1 auto; }
.dp-beta-banner a {
  color: #06b6d4;
  text-decoration: none;
  white-space: nowrap;
}
.dp-beta-banner a:hover { text-decoration: underline; }
.dp-beta-banner__close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  color: #94a3b8;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
}
.dp-beta-banner__close:hover { color: #fff; background: rgba(255,255,255,0.08); }
@media (max-width: 768px) {
  .dp-beta-banner { font-size: 11px; padding-right: 36px; }
  .dp-beta-banner__text { display: none; }
  body.has-ticker.has-beta-banner { padding-top: 66px; }
  body.has-ticker.has-beta-banner .sidebar { top: 66px; height: calc(100vh - 66px); }
}

.dp-risk-bar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  margin: 0 0 12px;
  font-size: 11px;
  line-height: 1.5;
  color: #94a3b8;
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 10px;
}
.dp-risk-bar strong { color: #fbbf24; font-weight: 700; }
.dp-risk-bar__icon { flex-shrink: 0; font-size: 14px; line-height: 1.2; }

.dp-onboard-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(4, 6, 14, 0.72);
  backdrop-filter: blur(2px);
}
.dp-onboard-spotlight {
  position: fixed;
  z-index: 100001;
  border-radius: 12px;
  box-shadow: 0 0 0 9999px rgba(4, 6, 14, 0.72), 0 0 0 2px rgba(6, 182, 212, 0.8);
  pointer-events: none;
  transition: all 0.25s ease;
}
.dp-onboard-card {
  position: fixed;
  z-index: 100002;
  max-width: 360px;
  padding: 20px 22px;
  background: #111827;
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.55;
}
.dp-onboard-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}
.dp-onboard-card p { margin: 0 0 16px; color: #94a3b8; font-size: 13px; }
.dp-onboard-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
}
.dp-onboard-actions button {
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid transparent;
}
.dp-onboard-skip {
  background: transparent;
  color: #64748b;
  border-color: rgba(100, 116, 139, 0.35) !important;
}
.dp-onboard-next {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #04121b;
}
.dp-onboard-step {
  font-size: 11px;
  color: #64748b;
  margin-right: auto;
}

.dp-billing-beta {
  padding: 14px 18px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.55;
}
.dp-billing-beta strong { color: #c4b5fd; }
