/* ============ GLOBE ============ */
.hero-two {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  align-items: center;
  position: relative;
}
.hero-left { min-width: 0; position: relative; z-index: 2; }
.hero-right {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

/* Globe sits oversize and bleeds off the right edge */
.globe-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 920px;         /* larger than container — right half clips off-screen */
  max-width: none;
  pointer-events: none; /* container doesn't block clicks; svg handles them */
  display: block;
}
.globe-svg {
  width: 100%;
  height: auto;
  display: block;
  cursor: grab;
  pointer-events: auto;
  filter: drop-shadow(0 40px 80px rgba(90,139,255,0.18));
}
.globe-svg:active { cursor: grabbing; }

/* Footer chip — keep inside hero-right, anchored bottom-left */
.globe-foot {
  position: absolute;
  bottom: 24px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 12px 16px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: rgba(10,20,48,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
  pointer-events: auto;
}
.globe-foot-l { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.globe-foot-n {
  font-family: 'Instrument Serif', serif;
  font-size: 30px; letter-spacing: -0.02em;
  color: var(--accent-2);
  line-height: 1;
}
.globe-foot-x {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; color: var(--ink-mute);
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap;
}
.globe-foot-r {
  display: flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; color: var(--ink-mute);
  letter-spacing: 0.12em;
}
.globe-dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4BD39A;
  box-shadow: 0 0 0 3px rgba(75,211,154,0.15);
  animation: globe-pulse 2s ease-in-out infinite;
}
@keyframes globe-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Ensure hero container permits overflow so globe can bleed */
.hero { overflow: hidden; }
.hero .container { overflow: visible; }

/* Keep side-by-side layout at preview widths; scale globe down gracefully */
@media (max-width: 1200px) {
  .globe-wrap { width: 780px; }
}
@media (max-width: 1024px) {
  .globe-wrap { width: 680px; }
  .hero-right { min-height: 540px; }
}
@media (max-width: 820px) {
  .hero-two { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { min-height: 420px; overflow: hidden; }
  .globe-wrap {
    position: relative;
    left: auto; top: auto; transform: none;
    width: 130%;
    margin-left: -15%;
  }
  .globe-foot { position: relative; bottom: auto; left: auto; margin: 0 24px; }
}
