/* ── Admin not-connected gate card ─────────────────────────────────────────── */

.gm-admin-gate-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 24px;
  box-sizing: border-box;
}

.gm-admin-gate-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .04), 0 16px 48px rgba(0, 0, 0, .12);
  max-width: 820px;
  width: 100%;
}

/* LEFT dark panel */
.gm-admin-gate-left {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, .18) 0%, transparent 65%);
    pointer-events: none;
  }

  &::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, .12) 0%, transparent 65%);
    pointer-events: none;
  }
}

.gm-admin-gate-left__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.gm-admin-gate-left__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;

  svg {
    width: 18px;
    height: 18px;
    color: #fff;
  }
}

.gm-admin-gate-left__logo-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  letter-spacing: .03em;
}

.gm-admin-gate-left__body {
  position: relative;
  z-index: 1;
  flex: 1;
}

.gm-admin-gate-left__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 102, 241, .18);
  border: 1px solid rgba(99, 102, 241, .3);
  color: #a5b4fc;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 18px;
}

.gm-admin-gate-left__eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #818cf8;
  animation: gm-admin-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes gm-admin-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.gm-admin-gate-left__title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.25;
  letter-spacing: -.5px;

  span {
    background: linear-gradient(90deg, #a5b4fc, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

.gm-admin-gate-left__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.7;
  margin: 0 0 36px;
}

.gm-admin-gate-left__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gm-admin-gate-feat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gm-admin-gate-feat__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(99, 102, 241, .2);
  border: 1px solid rgba(99, 102, 241, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  svg {
    width: 9px;
    height: 9px;
    color: #a5b4fc;
  }
}

.gm-admin-gate-feat__text {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
}

/* RIGHT white panel */
.gm-admin-gate-right {
  background: #fff;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gm-admin-gate-right__heading {
  font-size: 13px;
  font-weight: 700;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 8px;
}

.gm-admin-gate-right__title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
  line-height: 1.25;
  letter-spacing: -.4px;
}

.gm-admin-gate-right__sub {
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 32px;
  line-height: 1.6;
}

/* steps */
.gm-admin-gate-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 36px;
}

.gm-admin-gate-step-item {
  display: flex;
  gap: 16px;
  position: relative;

  &:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 34px;
    width: 2px;
    height: calc(100% - 10px);
    background: linear-gradient(to bottom, #e0e7ff, transparent);
  }
}

.gm-admin-gate-step-item__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.gm-admin-gate-step-item__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(99, 102, 241, .35);
}

.gm-admin-gate-step-item__right {
  padding: 4px 0 24px;
}

.gm-admin-gate-step-item__label {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px;
}

.gm-admin-gate-step-item__desc {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}

/* CTA */
.gm-admin-gate-cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gm-admin-gate-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow .2s ease, transform .15s ease;
  box-shadow: 0 4px 16px rgba(99, 102, 241, .4);
  letter-spacing: .01em;

  &:hover {
    box-shadow: 0 8px 28px rgba(99, 102, 241, .5);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
  }

  &:focus-visible {
    outline: 3px solid #818cf8;
    outline-offset: 3px;
  }

  svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
}

.gm-admin-gate-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: #cbd5e1;
  margin: 0;

  svg {
    width: 12px;
    height: 12px;
    color: #cbd5e1;
    flex-shrink: 0;
  }
}

/* Responsive */
@media (prefers-reduced-motion: reduce) {
  .gm-admin-gate-cta { transition: none; transform: none !important; }
  .gm-admin-gate-left__eyebrow-dot { animation: none; }
}

@media (max-width: 960px) {
  .gm-admin-gate-shell { grid-template-columns: 1fr; }
  .gm-admin-gate-left  { padding: 36px 28px; }
  .gm-admin-gate-left::after { display: none; }
}

@media (max-width: 640px) {
  .gm-admin-gate-right,
  .gm-admin-gate-left  { padding: 28px 24px; }
  .gm-admin-gate-left__title  { font-size: 22px; }
  .gm-admin-gate-right__title { font-size: 18px; }
}
