.hero{
  padding: 80px 0 64px;
}

.container{
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: center;
}

.hero-left h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.02em;

  /* hafif gradient text */
  background: linear-gradient(90deg, #ffffff, rgba(72,170,255,0.95));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p{
  margin: 0 0 18px;
  opacity: 0.92;
  line-height: 1.6;
  max-width: 62ch;
}

.pill{
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(72,170,255,0.28);
  background: rgba(255,255,255,0.06);
  color: rgba(234,240,255,0.95);
  font-size: 13px;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn{
  text-decoration: none;
  color: inherit;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary{ background: rgba(255,255,255,0.12); }
.btn.ghost{ background: transparent; }

/* ===== SAĞ KARAKTER ===== */
.hero-right{
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.robot{
  width: min(520px, 100%);
  height: auto;
  display: block;

  animation: robotFloat 6s ease-in-out infinite, robotGlow 4s ease-in-out infinite;
  transform: translate(var(--rx, 0), var(--ry, 0));
  will-change: transform, filter;
}

.robot-glow{
  position: absolute;
  inset: auto;
  width: min(540px, 92%);
  height: min(540px, 92%);
  border-radius: 999px;
  background:
    radial-gradient(circle at 40% 35%, rgba(72,170,255,0.18), transparent 62%),
    radial-gradient(circle at 60% 60%, rgba(60,255,180,0.14), transparent 62%);
  filter: blur(26px);
  opacity: 0.9;
  z-index: -1;
  animation: glowPulse 5s ease-in-out infinite;
}

@keyframes robotFloat{
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}


@keyframes robotGlow{
  0%, 100% {
    filter: drop-shadow(0 0 18px rgba(72,170,255,0.30))
            drop-shadow(0 0 42px rgba(60,255,180,0.16));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(72,170,255,0.55))
            drop-shadow(0 0 70px rgba(60,255,180,0.26));
  }
}

@keyframes glowPulse{
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}

.reveal{
  opacity: 0;
  transform: translateY(10px);
  filter: blur(6px);
  animation: revealIn 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0ms);
}

@keyframes revealIn{
  to{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* 🚀 Rocket Trails – DİKEY & GENİŞ */
.rocket-trails {
  position: absolute;
  left: 15%;     
  top: -10%;
  width: 80%;          
  height: 120%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Dikey enerji çizgileri */
.rocket-trails span {
  position: absolute;
  bottom: -20%;
  width: 3px;
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(72,170,255,0),
    rgba(72,170,255,0.9),
    rgba(60,255,180,0.9),
    rgba(72,170,255,0)
  );
  filter: blur(2px);
  opacity: 0;
  animation: rocketVertical 3.2s linear infinite;
}

/* Genişlik hissi için dağıtım */
.rocket-trails span:nth-child(1) { left: 10%; animation-delay: 0s; }
.rocket-trails span:nth-child(2) { left: 25%; animation-delay: .6s; }
.rocket-trails span:nth-child(3) { left: 40%; animation-delay: 1.2s; }
.rocket-trails span:nth-child(4) { left: 55%; animation-delay: 1.8s; }
.rocket-trails span:nth-child(5) { left: 70%; animation-delay: 2.4s; }

@keyframes rocketVertical {
  0% {
    transform: translateY(0) scaleY(0.6);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  100% {
    transform: translateY(-520px) scaleY(1.3);
    opacity: 0;
  }
}

/* Katman sırası */
.robot {
  position: relative;
  z-index: 2;
}

.robot-glow {
  z-index: 1;
}

