/* Getting Started hero banner — keeps the welcome-robot (intro) arm, full-width title strip */

.gs-hero {
  position: relative;
  display: block;
  min-height: 0;
  margin: 18px 0 22px;
  padding: 0 !important;
  opacity: 1;
  transform: none;
}

.gs-hero-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.9fr);
  align-items: center;
  gap: clamp(12px, 2.5vw, 28px);
  width: 100%;
  min-height: 248px;
  padding: clamp(26px, 3.4vw, 38px) clamp(26px, 3.8vw, 44px);
  overflow: visible;
  border: 1px solid rgba(88, 166, 255, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 0%, rgba(88, 166, 255, 0.2), transparent 44%),
    radial-gradient(circle at 88% 40%, rgba(249, 115, 22, 0.28), transparent 42%),
    linear-gradient(120deg, rgba(14, 20, 28, 0.98), rgba(8, 12, 20, 0.98) 55%, rgba(18, 12, 8, 0.96));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.gs-hero-copy {
  position: relative;
  z-index: 2;
  max-width: none !important;
}

.gs-hero-title {
  margin: 0 0 14px;
  font-family: var(--gs-display);
  font-size: clamp(2.6rem, 5.8vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.92;
  color: #f0f3f6;
}

.gs-hero-lead {
  margin: 0 0 20px;
  max-width: 52ch;
  font-size: 1.08rem;
  line-height: 1.55;
  color: #9da7b3;
}

.gs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gs-hero-tabs {
  margin: 14px 0 0;
}

.gs-hero-visual {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  width: 100% !important;
  min-height: 210px !important;
  height: 210px !important;
  border: 0;
  overflow: visible !important;
  border-radius: 0;
  background: transparent !important;
  isolation: isolate;
  z-index: 1;
  pointer-events: none;
  mask-image: none !important;
}

.gs-hero-robot-wrap {
  position: absolute;
  left: 52%;
  bottom: 4px;
  width: 340px;
  height: 210px;
  transform: translateX(-50%);
  pointer-events: none;
  filter: drop-shadow(0 12px 28px rgba(249, 115, 22, 0.35));
}

.gs-hero-robot.welcome-robot {
  left: 10px;
  bottom: 12px;
  width: 320px;
  height: 168px;
  transform: none;
  transform-origin: left bottom;
}

.gs-hero-frame,
.gs-hero-gif,
.gs-hero-visual-fade {
  display: none !important;
}

@media (max-width: 860px) {
  .gs-hero {
    margin: 12px 0 18px;
    padding: 0 !important;
  }

  .gs-hero-banner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 20px 18px 12px;
  }

  .gs-hero-visual {
    min-height: 170px !important;
    height: 170px !important;
    margin: 0;
  }

  .gs-hero-robot-wrap {
    left: 50%;
    width: 280px;
    height: 170px;
    transform: translateX(-50%) scale(0.92);
  }

  .gs-hero-robot.welcome-robot {
    left: 0;
    bottom: 4px;
    width: 280px;
    height: 170px;
  }
}
