.globe-loader-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #e8f1fb 0%, #f5f9ff 100%);
  z-index: 9999;
  opacity: 1;
}
.globe-loader-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.globe-loader-overlay.hidden {
  pointer-events: none;
}
.globe-loader {
  position: relative;
  width: 200px;
  height: 200px;
}
.globe-loader-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  perspective: 700px;
}
.globe-loader-brand--corner {
  position: absolute;
  top: 16px;
  left: max(16px, calc((100vw - 1280px) / 2 + 16px));
  margin-bottom: 0;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.globe-loader-brand--corner .gl-mark {
  width: 44px;
  height: 44px;
}
.globe-loader-brand--corner .gl-word {
  font-size: 22px;
}
.globe-loader-brand--corner .gl-tagline {
  display: none;
}
.globe-loader-brand--corner .gl-text-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .globe-loader-brand--corner {
    top: 18px;
  }
  .globe-loader-brand--corner .gl-mark {
    width: 48px;
    height: 48px;
  }
  .globe-loader-brand--corner .gl-word {
    font-size: 24px;
  }
  .globe-loader-brand--corner .gl-tagline {
    display: flex;
    font-size: 9px;
    letter-spacing: 0.32em;
    margin-top: 2px;
  }
  .globe-loader-brand--corner .gl-tagline .gl-bar {
    width: 10px;
  }
}
.globe-loader-brand .gl-mark {
  width: 78px;
  height: 78px;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 6px 16px rgba(10, 42, 94, 0.25));
}
.globe-loader-brand .gl-word {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.globe-loader-brand .gl-letter {
  display: inline-block;
  background: linear-gradient(135deg, #0a2a5e 0%, #1e40af 55%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(14px) rotateX(-45deg);
}
.globe-loader-brand .gl-ia {
  margin-left: 6px;
  background: linear-gradient(135deg, #22d3ee 0%, #10b981 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
.globe-loader-brand .gl-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(10, 42, 94, 0.55);
  opacity: 0;
}
.globe-loader-brand .gl-bar {
  display: inline-block;
  width: 14px;
  height: 1px;
  background: linear-gradient(to right, #22d3ee, transparent);
}
.globe-loader-brand .gl-tagline .gl-bar:last-child {
  background: linear-gradient(to left, #22d3ee, transparent);
}
.globe-loader-brand .gl-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(10, 42, 94, 0.08);
  box-shadow: 0 4px 14px rgba(10, 42, 94, 0.08);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(10, 42, 94, 0.78);
  opacity: 0;
}
.globe-loader-brand .gl-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55);
  animation: gl-pulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes gl-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.globe-loader-brand .gl-status-text {
  white-space: nowrap;
}
.globe-loader canvas,
.globe-loader svg {
  position: absolute;
  inset: 0;
  width: 200px;
  height: 200px;
}
.globe-loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: auto;
  max-height: 70px;
  transform: translate(-50%, -50%);
  z-index: 3;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(10, 42, 94, 0.18));
}
.whirl {
  animation: whirl-spin 4s linear infinite;
  transform-origin: 100px 100px;
}
.whirl-fast {
  animation: whirl-spin 2.2s linear infinite;
  transform-origin: 100px 100px;
}
.whirl-reverse {
  animation: whirl-spin-rev 9s linear infinite;
  transform-origin: 100px 100px;
}
@keyframes whirl-spin {
  to { transform: rotate(360deg); }
}
@keyframes whirl-spin-rev {
  to { transform: rotate(-360deg); }
}
