/*
  Lunno ana sayfa hero son düzeltmesi
  - Karakter grubu solda, metin sağda ve aynı hizada
  - Şeffaf boşluğu kırpılmış karakter görseli
  - Hafif karakter süzülmesi
  - Mouse hareketini izleyen görünür ama sakin renk akışı
*/
body[data-page="home"] .hero.hero-final {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 78px);
  display: grid !important;
  grid-template-columns: minmax(430px, 1.02fr) minmax(500px, .98fr) !important;
  grid-template-areas: "art copy" !important;
  align-items: center !important;
  column-gap: clamp(44px, 6vw, 108px);
  padding: clamp(54px, 7vh, 92px) max(28px, calc((100vw - 1240px) / 2)) 128px !important;
  overflow: hidden;
  background: linear-gradient(112deg, #e5faf6 0%, #fffaf4 52%, #e8f5ff 100%) !important;
}

body[data-page="home"] .hero.hero-final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 19% 44%, rgba(255,255,255,.82), transparent 34%),
    radial-gradient(circle at 82% 24%, rgba(255,255,255,.78), transparent 31%),
    linear-gradient(90deg, rgba(225,250,245,.28), rgba(255,250,244,.12), rgba(227,244,255,.30)) !important;
}

body[data-page="home"] .hero.hero-final .hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 3;
  width: min(100%, 620px);
  justify-self: start;
  align-self: center;
  text-align: left;
}

body[data-page="home"] .hero.hero-final .hero-copy > p {
  max-width: 600px;
}

body[data-page="home"] .hero.hero-final h1 {
  max-width: 650px;
  margin: 17px 0 22px;
  font-size: clamp(4rem, 6.15vw, 6.65rem);
  line-height: .96;
}

body[data-page="home"] .hero.hero-final .hero-art {
  grid-area: art;
  position: relative;
  z-index: 3;
  width: min(100%, 630px);
  min-width: 0;
  justify-self: end;
  align-self: center;
  display: grid;
  place-items: center;
  text-align: center;
  animation: none !important;
  transform: translate3d(var(--hero-art-x, 0px), var(--hero-art-y, 0px), 0);
  transition: transform .22s cubic-bezier(.2,.75,.35,1);
  will-change: transform;
}

body[data-page="home"] .hero.hero-final .hero-art::before {
  content: "";
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.8), rgba(255,255,255,.18) 55%, transparent 72%);
  filter: blur(8px);
  z-index: -1;
}

body[data-page="home"] .hero.hero-final .hero-art img {
  display: block;
  width: min(620px, 46vw) !important;
  max-width: 100%;
  height: auto;
  margin: 0;
  transform: none;
  animation: lunnoHeroFloat 5.2s ease-in-out infinite !important;
  filter: drop-shadow(0 30px 30px rgba(39,52,90,.20)) !important;
  transform-origin: 50% 70%;
  will-change: transform, filter;
}

@keyframes lunnoHeroFloat {
  0%, 100% { transform: translate3d(0, 7px, 0) rotate(-.65deg); filter: drop-shadow(0 28px 27px rgba(39,52,90,.16)); }
  50% { transform: translate3d(0, -13px, 0) rotate(.65deg); filter: drop-shadow(0 39px 34px rgba(39,52,90,.23)); }
}

/* Mouse ile hareket eden renk akışı */
body[data-page="home"] .hero.hero-final > .hero-fluid-final {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  opacity: .72 !important;
  filter: blur(7px) saturate(1.05) !important;
  mix-blend-mode: multiply !important;
}

body[data-page="home"] .hero.hero-final .hero-ambient-motion {
  z-index: 0;
  opacity: .30;
}

body[data-page="home"] .hero.hero-final > :not(.hero-fluid-final):not(.hero-ambient-motion) {
  position: relative;
  z-index: 3;
}

@media (max-width: 1100px) {
  body[data-page="home"] .hero.hero-final {
    grid-template-columns: minmax(350px, .9fr) minmax(430px, 1.1fr) !important;
    column-gap: 36px;
  }
  body[data-page="home"] .hero.hero-final .hero-art img {
    width: min(520px, 44vw) !important;
  }
  body[data-page="home"] .hero.hero-final h1 {
    font-size: clamp(3.8rem, 6.5vw, 5.8rem);
  }
}

@media (max-width: 850px) {
  body[data-page="home"] .hero.hero-final {
    min-height: auto;
    grid-template-columns: 1fr !important;
    grid-template-areas: "art" "copy" !important;
    row-gap: 20px;
    padding: 48px 22px 64px !important;
  }
  body[data-page="home"] .hero.hero-final .hero-art,
  body[data-page="home"] .hero.hero-final .hero-copy {
    justify-self: center;
    text-align: center;
  }
  body[data-page="home"] .hero.hero-final .hero-art {
    width: min(520px, 94vw);
  }
  body[data-page="home"] .hero.hero-final .hero-art img {
    width: min(500px, 90vw) !important;
  }
  body[data-page="home"] .hero.hero-final .hero-copy > p {
    margin-inline: auto;
  }
  body[data-page="home"] .hero.hero-final .hero-actions,
  body[data-page="home"] .hero.hero-final .trust-row {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  body[data-page="home"] .hero.hero-final h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }
  body[data-page="home"] .hero.hero-final .hero-art img {
    width: min(420px, 92vw) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .hero.hero-final .hero-art,
  body[data-page="home"] .hero.hero-final .hero-art img {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
  body[data-page="home"] .hero.hero-final > .hero-fluid-final {
    display: none !important;
  }
}

html.reduce-motion body[data-page="home"] .hero.hero-final .hero-art,
html.reduce-motion body[data-page="home"] .hero.hero-final .hero-art img {
  animation: none !important;
  transform: none !important;
  transition: none !important;
}
html.reduce-motion body[data-page="home"] .hero.hero-final > .hero-fluid-final {
  display: none !important;
}
