.academy-push-prompt {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 9999;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  width: min(430px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid rgba(22, 67, 96, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  color: #18384d;
  box-shadow: 0 20px 60px rgba(8, 31, 47, 0.22);
  backdrop-filter: blur(18px);
}

.academy-push-prompt[hidden] { display: none !important; }

.academy-push-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(31, 92, 127, 0.1);
  font-size: 22px;
}

.academy-push-copy { min-width: 0; }
.academy-push-copy strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
}
.academy-push-copy p {
  margin: 5px 0 0;
  color: #5d7180;
  font-size: 12px;
  line-height: 1.45;
}

.academy-push-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.academy-push-actions button {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.academy-push-primary {
  border: 1px solid #1f5c7f;
  background: #1f5c7f;
  color: #fff;
}
.academy-push-primary:disabled { opacity: 0.6; cursor: wait; }
.academy-push-secondary {
  border: 1px solid rgba(31, 92, 127, 0.18);
  background: #fff;
  color: #31546b;
}

@media (max-width: 620px) {
  .academy-push-prompt {
    right: 10px;
    bottom: calc(84px + env(safe-area-inset-bottom));
    width: calc(100vw - 20px);
    padding: 14px;
    border-radius: 16px;
  }

  .academy-push-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .academy-push-actions button { min-height: 48px; }
}

@media (max-width: 380px) {
  .academy-push-actions { grid-template-columns: 1fr; }
}
