/* ============================================================
   GLOBE WELCOME OVERLAY
   ============================================================ */
.globe-welcome {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center; padding: 24px;
  background: rgba(9, 11, 14, .84);
  -webkit-backdrop-filter: blur(7px) saturate(.92);
  backdrop-filter: blur(7px) saturate(.92);
  opacity: 1;
  color: #eef0f1;
}
.globe-welcome.is-closing { animation: gwOut .45s var(--ease) forwards; pointer-events: none; }
@keyframes gwOut { to { opacity: 0; visibility: hidden; } }

.globe-welcome__close {
  position: absolute; top: clamp(16px, 3vw, 26px); right: clamp(16px, 3vw, 26px);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05);
  color: #fff; font-size: 19px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.globe-welcome__close:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.45); transform: rotate(90deg); }

.globe-welcome__inner { display: flex; flex-direction: column; align-items: center; gap: 6px; max-width: 580px; text-align: center; }

.globe-stage { position: relative; width: min(62vw, 384px); aspect-ratio: 1 / 1; margin-bottom: 10px; }
.globe-canvas {
  width: 100%; height: 100%; display: block; position: relative; z-index: 2;
}
.globe-glow {
  position: absolute; inset: -6%; border-radius: 50%; z-index: 1; pointer-events: none;
  background: radial-gradient(circle at 50% 46%, rgba(244,211,0,.10), transparent 62%);
  filter: blur(8px);
}
.globe-welcome.no-globe .globe-stage { display: none; }

.globe-welcome__ovl {
  font-family: var(--mono); font-size: 11.5px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 10px;
}
.globe-welcome__ovl::before, .globe-welcome__ovl::after { content: ""; width: 18px; height: 1px; background: rgba(244,211,0,.5); }
.globe-welcome__title {
  font-family: var(--serif); font-weight: 500; letter-spacing: -.025em;
  font-size: clamp(26px, 4vw, 40px); line-height: 1.06; margin: 12px 0 0; color: #fff; max-width: 16ch;
}
.globe-welcome__detect { color: #aeb2b8; font-size: 15.5px; line-height: 1.5; margin: 14px 0 0; max-width: 42ch; min-height: 23px; }
.globe-welcome__detect b { color: #fff; font-weight: 600; }
.globe-welcome__detect .acc { color: var(--accent); font-weight: 600; }

.globe-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin: 18px 0 4px; }
.globe-chips button {
  font-family: var(--sans); font-size: 13.5px; color: #cfd2d6;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 100px;
  padding: 9px 16px; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.globe-chips button:hover { border-color: rgba(255,255,255,.42); color: #fff; }
.globe-chips button.is-active { background: var(--accent); border-color: var(--accent); color: #161307; font-weight: 600; }
.globe-chips button .tag {
  font-family: var(--mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.16); color: #fff; padding: 3px 6px; border-radius: 100px;
}
.globe-chips button.is-active .tag { background: rgba(0,0,0,.16); color: #161307; }

.globe-welcome__actions { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 16px; }
.globe-welcome__note { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; color: #777b82; }

@media (prefers-reduced-motion: reduce) {
  .globe-welcome, .globe-canvas { animation: none !important; opacity: 1 !important; transform: none !important; }
}
@media (max-width: 540px) {
  .globe-stage { width: 70vw; }
  .globe-welcome__title { font-size: 24px; }
}
