.insight-feedback {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(9, 9, 11, 0);
  opacity: 0;
  pointer-events: none;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.insight-feedback.is-visible {
  background: rgba(9, 9, 11, 0.68);
  opacity: 1;
  pointer-events: auto;
}

.insight-feedback__card {
  background: #09090B;
  color: #EDEDEA;
  border: 1px solid #1C1C1F;
  border-top: 2px solid #10B981;
  border-radius: 8px;
  width: min(520px, calc(100vw - 32px));
  padding: 26px 26px 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  transform: translateY(14px) scale(0.96);
  transition: transform 0.3s ease;
}

.insight-feedback.is-visible .insight-feedback__card {
  transform: translateY(0) scale(1);
}

.insight-feedback__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.insight-feedback__kicker {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #10B981;
  font-weight: 600;
  margin-bottom: 6px;
}

.insight-feedback__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  color: #EDEDEA;
}

.insight-feedback__sub {
  font-size: 13px;
  color: #71717A;
  margin-top: 8px;
  line-height: 1.5;
}

.insight-feedback__close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #EDEDEA;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1;
}

.insight-feedback__close:hover {
  background: #10B981;
  border-color: #10B981;
  color: #09090B;
}

.insight-feedback__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.insight-feedback__option {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #EDEDEA;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 13px 14px;
  border-radius: 3px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.insight-feedback__option:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.45);
}

.insight-feedback__option:disabled {
  opacity: 0.5;
  cursor: wait;
}

.insight-feedback__thanks {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  color: #10B981;
  padding: 8px 0 4px;
}

.insight-feedback__error {
  font-size: 11px;
  color: #F87171;
  margin-top: 10px;
  line-height: 1.4;
}

@media (max-width: 520px) {
  .insight-feedback__options {
    grid-template-columns: 1fr;
  }
}
