.ib-access-gate {
  display: grid;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(241, 245, 249, 0.14);
  background:
    radial-gradient(circle at top right, rgba(236, 72, 153, 0.16), transparent 42%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.94));
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.28);
}

.ib-access-gate--compact {
  padding: 18px 18px;
}

.ib-access-gate__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: #f8fafc;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ib-access-gate__eyebrow.is-danger {
  background: rgba(248, 113, 113, 0.12);
  color: #fecaca;
}

.ib-access-gate__eyebrow.is-warning {
  background: rgba(250, 204, 21, 0.12);
  color: #fde68a;
}

.ib-access-gate__title {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.15;
}

.ib-access-gate__text,
.ib-access-gate__note {
  margin: 0;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.65;
}

.ib-access-gate__note {
  color: rgba(251, 191, 36, 0.9);
  font-size: 0.95rem;
}

.ib-access-gate__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ib-access-gate__actions .ib-btn {
  min-width: 180px;
  text-align: center;
}

@media (max-width: 640px) {
  .ib-access-gate {
    padding: 18px 16px;
  }

  .ib-access-gate__actions {
    flex-direction: column;
  }

  .ib-access-gate__actions .ib-btn {
    width: 100%;
    min-width: 0;
  }
}
