.ai-models {
  padding-block: 1vi 6vi;
  background: var(--color-white);
  overflow: hidden;
}

.ai-models__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.ai-models__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1600 / 839;
  overflow: hidden;
}

/* Dashed orbital arcs — concentric SVG circles */
.ai-models__orbit {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1;
}

.ai-models__orbit--outer {
  width: 88%;
  top: 11.1%;
}

.ai-models__orbit--middle {
  width: 66%;
  top: 32.1%;
}

.ai-models__orbit--inner {
  width: 46%;
  top: 51.2%;
}

/* Warm gradient glow — vibrant amber/gold */
.ai-models__glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 90%;
  background: radial-gradient(ellipse at center 60%, rgba(255, 160, 0, 0.55) 0%, rgba(255, 180, 20, 0.35) 15%, rgba(255, 195, 40, 0.22) 30%, rgba(255, 210, 60, 0.1) 50%, transparent 70%);
  pointer-events: none;
}

/* White fade — bridges the visual and text areas so the glow blends smoothly */
.ai-models__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, transparent 0%, var(--color-white) 80%);
  pointer-events: none;
  z-index: 2;
}

/* Logo icons — white circle containers (dynamically positioned by JS) */
.ai-models__icon {
  position: absolute;
  width: 7.5%;
  aspect-ratio: 1;
  background: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 1px 50px rgba(26, 26, 26, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  will-change: transform, opacity;
}

.ai-models__icon img {
  width: 55%;
  height: 55%;
  object-fit: contain;
}

/* Text content */
.ai-models__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-inline-size: 800px;
  margin-block-start: -180px;
  position: relative;
  z-index: 3;
}

.ai-models__heading {
  font-weight: 500;
  font-size: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.ai-models__subtitle {
  font-size: clamp(0.875rem, 0.6rem + 0.7vw, 1.25rem);
  line-height: 1.2;
  color: var(--color-text);
  opacity: 0.6;
}

@media (max-width: 768px) {
  .ai-models__text {
    margin-block-start: -80px;
  }

  .ai-models__glow {
    width: 100%;
  }
}
