@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');

/* ===== HERO BASE ===== */
.aidnetx-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b4b94 0%, #1759ff 100%);
  padding: 2rem;
  overflow: hidden;
}

.aidnetx-hero-inner {
  text-align: center;
  position: relative;
}

/* ===== LOGO WRAPPER ===== */
.logo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

/* ===== CHIP SVG WATERMARK ===== */
.ai-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280px;
  height: 280px;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  animation: rotate 20s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.chip-rect,
.chip-line {
  stroke: #ffffff;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
}

.chip-circle {
  fill: #ffffff;
}

/* ===== TEXTO PRINCIPAL ===== */
.main-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(4rem, 10vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -3px;
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.sub-text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 16px;
  color: #ffffff;
  margin-top: 0.5rem;
  position: relative;
  z-index: 2;
}

/* ===== MENSAJE ===== */
.hero-message {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 600;
  color: #ffffff;
  opacity: 0.95;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ai-chip {
    width: 180px;
    height: 180px;
  }

  .sub-text {
    letter-spacing: 10px;
  }
}