.support-page {
  padding: clamp(34px, 6vw, 76px) 24px clamp(44px, 7vw, 92px);
  background:
    radial-gradient(circle at 15% 15%, rgba(14, 180, 228, .22), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(88, 99, 255, .35), transparent 36%),
    var(--orbit-blue);
}

.support-hero {
  width: min(900px, 100%);
  margin: 0 auto;
}

.support-panel {
  padding: clamp(30px, 5vw, 44px);
  border: 1px solid #9ecff0;
  border-radius: 22px;
  background: var(--orbit-pale);
  box-shadow: 0 24px 60px rgba(2, 17, 108, .3);
  color: #1a2e4d;
  text-align: center;
}

.support-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid #9ecff0;
  border-radius: 999px;
  background: #fff;
  color: var(--orbit-blue);
  font-family: "Archivo", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.support-panel h1 {
  margin: 22px 0 4px;
  color: var(--orbit-blue);
  font-family: "Archivo", sans-serif;
  font-size: clamp(38px, 6vw, 48px);
  line-height: 1;
  letter-spacing: -.035em;
}

.support-panel > p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #2b456a;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
}

.support-status {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 26px 0;
}

.support-status i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orbit-blue);
  animation: support-pulse 1.1s ease-in-out infinite;
}

.support-status i:nth-child(2) { animation-delay: .14s; }
.support-status i:nth-child(3) { animation-delay: .28s; }

@keyframes support-pulse {
  0%, 60%, 100% { transform: translateY(0); opacity: .35; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.support-actions {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 13px;
}

.support-action {
  width: 100%;
  min-height: 82px;
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 15px;
  border: 1.5px solid #a9d2ee;
  border-radius: 16px;
  background: #fff;
  color: #0a2e63;
  font-family: "Roboto", sans-serif;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.support-action:hover,
.support-action:focus-visible {
  transform: translateY(-2px);
  border-color: var(--orbit-blue);
  box-shadow: 0 10px 24px rgba(14, 97, 162, .15);
  outline: 0;
}

.support-action--primary {
  border-color: #5065ff;
  background: #1b27f5;
  color: #fff;
  box-shadow: 0 8px 20px rgba(13, 39, 160, .24);
}

.support-action__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #e9f6ff;
  color: var(--orbit-blue);
  font-size: 22px;
}

.support-action--primary .support-action__icon {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.support-action strong,
.support-action small { display: block; }
.support-action strong { font-family: "Archivo", sans-serif; font-size: clamp(17px, 2vw, 21px); }
.support-action small { margin-top: 4px; color: #567091; font-size: 14px; }
.support-action--primary small { color: rgba(255, 255, 255, .82); }
.support-action__arrow { justify-self: end; }

@media (prefers-reduced-motion: reduce) {
  .support-status i { animation: none; opacity: .7; }
  .support-action { transition: none; }
}

@media (max-width: 767px) {
  .support-page { padding: 22px 14px 48px; }
  .support-panel { padding: 28px 16px; border-radius: 16px; }
  .support-panel h1 { margin-top: 18px; }
  .support-action { min-height: 76px; padding: 12px; grid-template-columns: 42px minmax(0, 1fr) 16px; gap: 11px; }
  .support-action__icon { width: 42px; height: 42px; font-size: 20px; }
  .support-action small { font-size: 12px; }
}
