.growth-toast {
  position: fixed;
  right: 16px;
  bottom: 24px;
  z-index: 2147483000;
  background: rgba(20, 20, 20, 0.96);
  color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  width: min(360px, calc(100vw - 32px));
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: auto;
}

.growth-toast.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}

.growth-toast .icon {
  font-size: 28px;
  line-height: 1;
}

.growth-toast .content {
  flex: 1;
}

.growth-toast .title {
  font-weight: 700;
  margin-bottom: 4px;
}

.growth-toast .meta {
  font-size: 12px;
  opacity: 0.85;
}

.growth-toast .cta {
  margin-left: 8px;
  background: #7c4dff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}

.growth-toast .close {
  background: transparent;
  color: #ccc;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .growth-toast.show { transition: none; }
}
