/* Product Spotlight — navy rounded panel with glow blobs */
.ddb-spotlight {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ddb-navy);
  color: #fff;
}
.ddb-spotlight__blob {
  position: absolute;
  height: 420px;
  width: 420px;
  border-radius: 9999px;
  filter: blur(64px);
}
.ddb-spotlight__blob--red {
  right: -8rem;
  top: -8rem;
  background: oklch(0.68 0.16 225 / 0.4);
}
.ddb-spotlight__blob--blue {
  bottom: -10rem;
  left: -5rem;
  background: oklch(0.55 0.19 255 / 0.4);
}
.ddb-spotlight__grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 3rem;
  padding: 2rem;
}
@media (min-width: 640px) {
  .ddb-spotlight__grid {
    padding: 3rem;
  }
}
@media (min-width: 1024px) {
  .ddb-spotlight__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 4rem;
  }
}
.ddb-spotlight__eyebrow {
  margin-bottom: 1rem;
}
.ddb-spotlight__title {
  font-size: 2.25rem;
  line-height: 1.05;
  color: #fff;
}
@media (min-width: 768px) {
  .ddb-spotlight__title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .ddb-spotlight__title {
    font-size: 3.5rem;
  }
}
.ddb-spotlight__title em {
  font-style: italic;
  color: var(--ddb-brand-red);
}
.ddb-spotlight__subtitle {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.85);
}
.ddb-spotlight__text {
  margin-top: 1.25rem;
  max-width: 32rem;
  color: rgb(255 255 255 / 0.75);
}
@media (min-width: 768px) {
  .ddb-spotlight__text {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.ddb-spotlight__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .ddb-spotlight__actions {
    flex-direction: row;
  }
}

/* Visual — orbit + task cards */
.ddb-spotlight__visual {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 28rem;
  justify-self: center;
}
@media (min-width: 1024px) {
  .ddb-spotlight__visual {
    justify-self: end;
  }
}
.ddb-spotlight__ring {
  position: absolute;
  inset: 2rem;
  display: grid;
  place-items: center;
  border-radius: 9999px;
  border: 1px solid rgb(255 255 255 / 0.1);
}
.ddb-spotlight__center {
  display: grid;
  place-items: center;
  height: 7rem;
  width: 7rem;
  border-radius: 1.5rem;
  background: linear-gradient(to bottom right, var(--ddb-brand-red), var(--ddb-brand-blue));
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}
.ddb-spotlight__center-icon {
  width: 3rem;
  height: 3rem;
  color: #fff;
}
.ddb-spotlight__task {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.75rem;
  background: rgb(255 255 255 / 0.1);
  padding: 0.625rem 0.75rem;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.15);
}
.ddb-spotlight__task--tl { left: 0; top: 1rem; }
.ddb-spotlight__task--tr { right: 0; top: 6rem; }
.ddb-spotlight__task--bl { bottom: 1.5rem; left: 0.5rem; }
.ddb-spotlight__task-tile {
  display: grid;
  place-items: center;
  height: 2rem;
  width: 2rem;
  border-radius: 0.5rem;
  background: rgb(255 255 255 / 0.15);
  color: #fff;
}
.ddb-spotlight__task-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
}
.ddb-spotlight__task-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 10px;
  color: rgb(255 255 255 / 0.7);
}
.ddb-spotlight__task-dot {
  height: 0.375rem;
  width: 0.375rem;
  border-radius: 9999px;
}
.ddb-spotlight__orbits {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
}
