.orion-service-gate-host {
  position: relative;
  min-height: 420px;
  overflow: clip;
  isolation: isolate;
}

.orion-service-gate-host.is-access-locked > :not(.orion-service-gate),
.orion-service-gate-host.is-access-checking > :not(.orion-service-gate) {
  filter: blur(7px);
  pointer-events: none;
  user-select: none;
}

.orion-service-gate {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: start center;
  min-height: 420px;
  padding: clamp(72px, 8vw, 100px) clamp(16px, 4vw, 42px) 40px;
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(4px);
}

.orion-service-gate__preview {
  position: absolute;
  inset: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  opacity: .3;
  filter: blur(3px);
  pointer-events: none;
}

.orion-service-gate__preview-block {
  min-height: 110px;
  padding: 18px;
  border: 1px solid #000000;
  border-radius: 18px;
  background: var(--bg-glass);
}

.orion-service-gate__preview-title,
.orion-service-gate__preview-line {
  display: block;
  height: 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #000000;
}

.orion-service-gate__preview-title {
  width: 44%;
  height: 18px;
  background: #000000;
}

.orion-service-gate__preview-line.is-short { width: 70%; }

.orion-service-gate__card {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  padding: clamp(24px, 5vw, 40px);
  border: 1px solid #000000;
  border-radius: 24px;
  background: var(--bg-glass);
  box-shadow: 0 28px 70px #000000;
  color: var(--text-primary);
  text-align: center;
}

.orion-service-gate__card:focus { outline: 3px solid #000000; outline-offset: 4px; }
.orion-service-gate__eyebrow { margin: 0 0 10px; color: var(--text-primary); font-size: .75rem; font-weight: 800; letter-spacing: .14em; }
.orion-service-gate__card h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.55rem, 5vw, 2.2rem); line-height: 1.12; }
.orion-service-gate__message { margin: 14px auto 0; max-width: 46ch; color: var(--text-primary); line-height: 1.65; }
.orion-service-gate__current { display: inline-block; margin: 16px 0 0; padding: 7px 12px; border-radius: 999px; background: var(--bg-status-warning); color: #000000; font-size: .86rem; font-weight: 750; }

.orion-service-gate__benefits {
  display: grid;
  gap: 8px;
  margin: 20px auto 0;
  padding: 0;
  max-width: 390px;
  list-style: none;
  text-align: left;
}

.orion-service-gate__benefits li { position: relative; padding-left: 25px; color: var(--text-secondary); }
.orion-service-gate__benefits li::before { content: "✓"; position: absolute; left: 0; color: var(--text-secondary); font-weight: 900; }
.orion-service-gate__price { margin: 16px 0 0; color: var(--text-primary); font-weight: 750; }
.orion-service-gate__support { margin: 16px 0 0; color: var(--text-primary); font-size: .86rem; }
.orion-service-gate__support a { color: var(--text-primary); font-weight: 750; }

.orion-service-gate__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.orion-service-gate__actions .button { min-height: 46px; }
.orion-service-gate__spinner {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
  border: 3px solid #000000;
  border-top-color: #000000;
  border-radius: 50%;
  animation: orion-gate-spin .8s linear infinite;
}

@keyframes orion-gate-spin { to { transform: rotate(360deg); } }

@media (max-width: 480px) {
  .orion-service-gate-host,
  .orion-service-gate { min-height: 500px; }
  .orion-service-gate { padding: 52px 12px 24px; }
  .orion-service-gate__preview { inset: 10px; grid-template-columns: 1fr; }
  .orion-service-gate__card { padding: 24px 16px; border-radius: 18px; }
  .orion-service-gate__actions { display: grid; grid-template-columns: 1fr; }
  .orion-service-gate__actions .button { width: 100%; white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  .orion-service-gate__spinner { animation-duration: 1.8s; }
}
