:root {
  /* main.js ile gerçek navbar yüksekliği yazılır; hash/ snap hizası için */
  --nav-h: 4.5rem;
  --pitopi-bg: #de72f4;
  --pitopi-accent: #d83bf8;
  --pitopi-deep: #9b1fc4;
  --pitopi-ink: #11181c;
  --pitopi-muted: rgba(17, 24, 28, 0.72);
  --pitopi-white: #ffffff;
  /* Siyah yerine derin mor (marka ile uyumlu) */
  --pitopi-dark: #3a1d58;
  --pitopi-night-top: #4d2a72;
  --pitopi-night-mid: #3a1d58;
  --pitopi-night-deep: #2f1848;
  --pitopi-card: rgba(255, 255, 255, 0.12);
  --pitopi-card-border: rgba(255, 255, 255, 0.22);
  --font: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-padding-top: var(--nav-h);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--pitopi-ink);
  background: var(--pitopi-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Film grain overlay */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: blob-float 18s var(--ease-out) infinite;
}

.blob--a {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  background: var(--pitopi-accent);
  top: -8%;
  right: -10%;
  animation-delay: 0s;
}

.blob--b {
  width: min(45vw, 360px);
  height: min(45vw, 360px);
  background: var(--pitopi-white);
  bottom: 10%;
  left: -12%;
  opacity: 0.25;
  animation-delay: -6s;
  animation-duration: 22s;
}

.blob--c {
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  background: var(--pitopi-deep);
  bottom: -5%;
  right: 15%;
  opacity: 0.35;
  animation-delay: -12s;
  animation-duration: 20s;
}

@keyframes blob-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, 6%) scale(1.05);
  }
  66% {
    transform: translate(-3%, -4%) scale(0.96);
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  max-width: none;
  margin: 0;
  padding: 1rem 1.5rem;
  padding-top: max(1rem, env(safe-area-inset-top, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  background: rgba(222, 114, 244, 0.42);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

/* pipitoAdmin `AppIcon`: Playwrite + glow */
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.logo__mark {
  font-family: "Playwrite DE SAS", "PlaywriteDESAS", cursive;
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 400;
  color: #999;
  text-shadow: 0 0 20px rgba(224, 220, 197, 0.9);
  white-space: nowrap;
  animation: logo-glow 2s ease-in-out infinite;
}

.logo__mark--orbit {
  font-size: clamp(0.95rem, 3.2vw, 1.2rem);
}

@keyframes logo-glow {
  0%,
  100% {
    color: #999;
  }
  50% {
    color: #f2f2f2;
  }
}

.nav__links {
  display: flex;
  gap: 1.75rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s, transform 0.2s var(--ease-out);
}

.nav__links a:hover {
  color: var(--pitopi-white);
  transform: translateY(-1px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s,
    background 0.2s, border-color 0.2s;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.18);
  color: var(--pitopi-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(216, 59, 248, 0.35);
}

.btn--solid {
  background: var(--pitopi-white);
  color: var(--pitopi-accent);
  border: none;
  box-shadow: 0 8px 32px rgba(74, 28, 108, 0.18);
}

.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(74, 28, 108, 0.22);
}

.btn--outline {
  background: transparent;
  color: var(--pitopi-white);
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

main {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

/* Tam ekran bölümler + dikey scroll-snap */
main > section {
  min-height: 100vh;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
  padding: 1.25rem 1.5rem 2.5rem;
  padding-top: max(1rem, env(safe-area-inset-top, 0px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: safe center;
  gap: 0;
}

/*
 * Hero: section = flex ile viewport’ta dikey ortala (özel pencerede de tutarlı).
 * Grid sadece .hero__shell içinde — aksi halde .hero { display:grid } section’ı
 * flex’ten ezer, min-height ile içerik yüksekliği eşitlenince ortalama bozulur.
 */
main > section.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: calc(var(--nav-h, 4.5rem) + 1rem);
  box-sizing: border-box;
}

.hero__shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 2rem 3rem;
  align-items: center;
  align-content: start;
  justify-content: center;
}

@media (min-width: 900px) {
  .hero__shell {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .hero__inner {
    grid-column: 1;
    grid-row: 1;
  }

  .hero__visual {
    grid-column: 2;
    grid-row: 1;
  }

  .hero__stats--band {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

.hero__inner {
  color: var(--pitopi-white);
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.95;
  margin: 0 0 1rem;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero__line {
  display: block;
  animation: title-in 0.9s var(--ease-out) both;
}

.hero__line:nth-child(2) {
  animation-delay: 0.08s;
}

.hero__line:nth-child(3) {
  animation-delay: 0.16s;
}

.hero__line--accent {
  background: linear-gradient(
    135deg,
    var(--pitopi-white) 0%,
    rgba(255, 255, 255, 0.85) 50%,
    #f0e6ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(216, 59, 248, 0.5));
}

@keyframes title-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__lead {
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 32rem;
  opacity: 0.94;
  margin: 0 0 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
}

.hero__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 36rem;
}

.hero__stats--band {
  width: 100%;
  max-width: none;
  margin-top: 200px;
  padding: clamp(1.1rem, 2.5vw, 1.65rem);
  gap: clamp(0.75rem, 2vw, 1.35rem);
  border-radius: clamp(18px, 2.5vw, 26px);
  color: var(--pitopi-white);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 56px rgba(74, 28, 108, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem 0.55rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
}

/*
 * Dururken: arka plan + parıltı ::before’da (z-index: -1), li şeffaf — böylece
 * opak arka plan üstüne çizilmez; nabız görünür. li’de hâlâ animation yok.
 */
@keyframes stat-box-idle-shine {
  0%,
  100% {
    opacity: 0.72;
    filter: brightness(1) saturate(1);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.2) saturate(1.25);
    transform: scale(1.045);
  }
}

@keyframes stat-box-idle-aura {
  0%,
  100% {
    opacity: 0.35;
    box-shadow: 0 0 0 0 rgba(216, 59, 248, 0);
  }
  50% {
    opacity: 0.95;
    box-shadow: 0 0 36px 10px rgba(216, 59, 248, 0.42);
  }
}

.hero__stats--band li {
  position: relative;
  isolation: isolate;
  padding: clamp(1rem, 2.5vw, 1.45rem) clamp(0.65rem, 2vw, 1.1rem);
  border-radius: clamp(14px, 2vw, 18px);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--pitopi-white);
  opacity: 0;
  transform: translateY(22px) scale(0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity 0.72s var(--ease-spring), transform 0.72s var(--ease-spring),
    box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out),
    filter 0.4s var(--ease-out);
}

.hero__stats--band li::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(
      92% 120% at 50% 108%,
      rgba(216, 59, 248, 0.62),
      transparent 55%
    ),
    linear-gradient(165deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.46));
  opacity: 0.78;
}

.hero__stats--band li::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  pointer-events: none;
  z-index: -2;
  opacity: 0.5;
}

.hero__stats--band li strong,
.hero__stats--band li span {
  position: relative;
  z-index: 1;
}

.hero__stats--band[data-reveal].is-visible li:nth-child(1) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.08s, 0.08s, 0s, 0s, 0s, 0s;
}

.hero__stats--band[data-reveal].is-visible li:nth-child(2) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.22s, 0.22s, 0s, 0s, 0s, 0s;
}

.hero__stats--band[data-reveal].is-visible li:nth-child(3) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.36s, 0.36s, 0s, 0s, 0s, 0s;
}

.hero__stats--band[data-reveal].is-visible li:nth-child(1)::before {
  animation: stat-box-idle-shine 3.4s ease-in-out 0.9s infinite;
}

.hero__stats--band[data-reveal].is-visible li:nth-child(2)::before {
  animation: stat-box-idle-shine 3.15s ease-in-out 1.05s infinite;
}

.hero__stats--band[data-reveal].is-visible li:nth-child(3)::before {
  animation: stat-box-idle-shine 3.55s ease-in-out 1.15s infinite;
}

.hero__stats--band[data-reveal].is-visible li:nth-child(1)::after {
  animation: stat-box-idle-aura 3.2s ease-in-out 0.85s infinite;
}

.hero__stats--band[data-reveal].is-visible li:nth-child(2)::after {
  animation: stat-box-idle-aura 2.95s ease-in-out 1s infinite;
}

.hero__stats--band[data-reveal].is-visible li:nth-child(3)::after {
  animation: stat-box-idle-aura 3.35s ease-in-out 1.1s infinite;
}

.hero__stats--band[data-reveal].is-visible li:hover {
  transform: translateY(-8px) scale(1.05);
  filter: brightness(1.14);
  box-shadow: 0 22px 52px rgba(216, 59, 248, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.48);
  z-index: 2;
}

.hero__stats strong {
  font-size: clamp(1.2rem, 3.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

.hero__stats--band strong {
  font-size: clamp(1.85rem, 6.5vw, 3.35rem);
  line-height: 1;
  color: var(--pitopi-white);
}

.hero__stats span {
  font-size: clamp(0.68rem, 1.8vw, 0.8rem);
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.25;
}

.hero__stats--band span {
  font-size: clamp(0.78rem, 2vw, 0.95rem);
  font-weight: 600;
  color: var(--pitopi-white);
  opacity: 1;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.orbit {
  position: relative;
  width: min(72vw, 320px);
  height: min(72vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit__ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.orbit__ring--outer {
  inset: 0;
  animation: spin-slow 28s linear infinite;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.45);
}

.orbit__ring--inner {
  inset: 18%;
  animation: spin-slow 18s linear infinite reverse;
  border-color: rgba(255, 255, 255, 0.25);
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.orbit__core {
  width: auto;
  min-width: 46%;
  max-width: 78%;
  height: auto;
  padding: 0.55rem 0.95rem;
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.65)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(155, 31, 196, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation: pulse-core 3.5s ease-in-out infinite;
}

@keyframes pulse-core {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 24px 60px rgba(155, 31, 196, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 32px 72px rgba(216, 59, 248, 0.55),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}

.section {
  position: relative;
  padding: 4rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

@keyframes bridge-shine {
  to {
    background-position: 220% 0;
  }
}

.section--dark {
  color: var(--pitopi-white);
  max-width: none;
  border-radius: 0;
  margin-top: 0;
  box-shadow: 0 -20px 64px rgba(74, 28, 108, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
  background: radial-gradient(
      ellipse 95% 60% at 78% -5%,
      rgba(216, 59, 248, 0.32) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 70% 50% at 12% 25%,
      rgba(155, 31, 196, 0.22) 0%,
      transparent 50%
    ),
    linear-gradient(
      180deg,
      var(--pitopi-night-top) 0%,
      var(--pitopi-night-mid) 48%,
      var(--pitopi-night-deep) 100%
    );
}

.section--dark::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    rgba(222, 114, 244, 0.55),
    rgba(255, 255, 255, 0.25),
    rgba(216, 59, 248, 0.45),
    transparent
  );
  opacity: 0.75;
  animation: bridge-shine 5s linear infinite reverse;
  background-size: 220% 100%;
  background-position: 0 0;
  pointer-events: none;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 2.5rem;
  text-align: center;
}

.section__title--flush {
  margin-bottom: 0.65rem;
}

.section__head {
  text-align: center;
  max-width: 34rem;
  margin: 0 auto 2.75rem;
}

.section__head .section__title {
  margin-bottom: 0.65rem;
}

.section__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
}

.section--steps {
  padding-bottom: 0;
  gap: 2rem;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
}

.step {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  column-gap: 0.35rem;
  align-items: stretch;
}

.step__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.4rem;
  min-height: 100%;
}

.step__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--pitopi-bg), var(--pitopi-accent));
  box-shadow: 0 0 0 5px rgba(222, 114, 244, 0.18),
    0 0 22px rgba(216, 59, 248, 0.35);
}

.step__stem {
  flex: 1;
  width: 2px;
  margin-top: 0.45rem;
  min-height: 1.25rem;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(222, 114, 244, 0.9) 0%,
    rgba(216, 59, 248, 0.12) 100%
  );
}

.step__rail--end .step__stem {
  display: none;
}

.step:last-child .step__card {
  margin-bottom: 0;
}

.step__card {
  position: relative;
  margin-bottom: 0.35rem;
  padding: 1.2rem 1.25rem 1.3rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(42, 18, 72, 0.28);
  transition: transform 0.35s var(--ease-out), border-color 0.35s,
    box-shadow 0.35s;
  overflow: hidden;
}

.step__card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pitopi-bg), var(--pitopi-accent));
  opacity: 0.9;
}

.step:hover .step__card {
  transform: translateY(-4px);
  border-color: rgba(222, 114, 244, 0.42);
  box-shadow: 0 18px 48px rgba(42, 18, 72, 0.36);
}

.step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 12px;
  background: rgba(222, 114, 244, 0.14);
  color: #e8aef7;
}

.step__icon svg {
  display: block;
}

.step__num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.38);
}

.step__title {
  margin: 0 0 0.45rem;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.step__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.76);
}

@media (min-width: 900px) {
  .steps {
    max-width: 1020px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .step__rail {
    display: none;
  }

  .step__card {
    margin-bottom: 0;
    min-height: 100%;
    padding: 1.35rem 1.4rem 1.45rem;
  }

  .section--steps .section__head {
    margin-bottom: 3rem;
  }
}

.cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

section.section--features {
  gap: 1.75rem;
}

section.section--features > .section__title {
  color: var(--pitopi-white);
}

.cards--features {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cards--features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 700px) {
  .cards:not(.cards--features) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.75rem;
  border-radius: 20px;
  background: var(--pitopi-card);
  border: 1px solid var(--pitopi-card-border);
  color: var(--pitopi-white);
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(155, 31, 196, 0.35);
}

.card__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.88;
  line-height: 1.5;
}

/* Kullanıcı yorumları alanı (örnek veri) */
.section--voices {
  gap: 1.75rem;
}

.voices__grid {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 760px) {
  .voices__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .voices__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.voice-card {
  border-radius: 18px;
  padding: 1rem 1.05rem 1.1rem;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 32px rgba(22, 10, 42, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}

.voice-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 40px rgba(216, 59, 248, 0.26);
}

.voice-card__stars {
  margin: 0 0 0.55rem;
  color: #ffd45a;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}

.voice-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1.55;
}

.voice-card__meta {
  margin: 0.8rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
}

.voices__stats {
  width: 100%;
  max-width: 760px;
  margin: 0.25rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.voices-stat {
  border-radius: 14px;
  padding: 0.85rem 0.7rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.voices-stat strong {
  display: block;
  margin: 0 0 0.2rem;
  font-size: clamp(1.2rem, 3.2vw, 1.55rem);
  color: var(--pitopi-white);
  letter-spacing: -0.02em;
}

.voices-stat span {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.74);
}

/* En yakın Pitopi listesi (mobil uygulama verisi) */
.near-pitopi {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

.near-pitopi__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.near-pitopi__refresh {
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
}

.near-pitopi__hint {
  margin: 0 0 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.near-pitopi__state {
  border-radius: 18px;
  padding: 1.35rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--pitopi-white);
  text-align: center;
}

.near-pitopi__state--loading {
  min-height: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.near-pitopi__spinner {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--pitopi-white);
  animation: near-spin 0.75s linear infinite;
}

@keyframes near-spin {
  to {
    transform: rotate(360deg);
  }
}

.near-pitopi__state p {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.92;
}

.near-pitopi__state .btn {
  margin-top: 0.25rem;
}

.near-pitopi__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.near-pitopi__item {
  text-align: left;
  border-radius: 16px;
  padding: 1.1rem 1.15rem 1.15rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--pitopi-ink);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 32px rgba(42, 18, 72, 0.18);
}

.near-pitopi__item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.near-pitopi__item-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.near-pitopi__type-icon {
  font-size: 1.45rem;
  line-height: 1;
  flex-shrink: 0;
}

.near-pitopi__item-name {
  margin: 0 0 0.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.near-pitopi__item-type {
  margin: 0;
  font-size: 0.82rem;
  color: var(--pitopi-muted);
}

.near-pitopi__badge {
  flex-shrink: 0;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.near-pitopi__badge--ok {
  background: #e8f5e8;
  color: #1a7f3c;
}

.near-pitopi__badge--no {
  background: #ffe8e8;
  color: #c41c14;
}

.near-pitopi__addr {
  margin: 0 0 0.65rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--pitopi-muted);
}

.near-pitopi__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.near-pitopi__hours {
  margin: 0;
  font-size: 0.82rem;
  color: var(--pitopi-muted);
}

.near-pitopi__nav {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  background: var(--pitopi-bg);
  color: var(--pitopi-white);
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.near-pitopi__nav:hover {
  filter: brightness(1.05);
}

.near-pitopi__dist {
  margin: 0;
  text-align: right;
  font-size: 0.88rem;
  font-weight: 600;
  color: #6b5a78;
}

.near-pitopi__pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin-top: 1rem;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

.near-pitopi__pageinfo {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  min-width: min(100%, 12rem);
}

.near-pitopi__page-btn {
  font-size: 0.85rem;
  padding: 0.45rem 0.95rem;
}

.near-pitopi__page-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .near-pitopi__spinner {
    animation: none;
    border-color: rgba(255, 255, 255, 0.45);
  }
}

.cta-band {
  position: relative;
  padding: 0;
}

.cta-band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(90%, 520px);
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.55),
    transparent
  );
  background-size: 220% 100%;
  background-position: 0 0;
  animation: bridge-shine 2.8s linear infinite;
  opacity: 0.9;
  pointer-events: none;
}

.cta-band__wrap {
  position: relative;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  flex: 0 1 auto;
}

.cta-band__glow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  width: min(120%, 52rem);
  height: min(70vw, 22rem);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(216, 59, 248, 0.35) 38%,
    transparent 70%
  );
  filter: blur(48px);
  opacity: 0.85;
  pointer-events: none;
  animation: cta-glow 10s var(--ease-out) infinite alternate;
}

@keyframes cta-glow {
  0% {
    transform: translate(-50%, -52%) scale(0.92);
    opacity: 0.75;
  }
  100% {
    transform: translate(-50%, -48%) scale(1.05);
    opacity: 0.95;
  }
}

.cta-band__card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
  padding: clamp(2.25rem, 5.5vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  color: var(--pitopi-white);
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0.1) 42%,
    rgba(255, 255, 255, 0.06) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.12) inset,
    0 32px 96px rgba(74, 28, 108, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.55) inset;
}

.cta-band__defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-band__sheen {
  position: absolute;
  inset: -40% -30%;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.14) 48%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.12) 52%,
    transparent 65%
  );
  transform: translateX(-20%) rotate(12deg);
  animation: cta-sheen 7s var(--ease-out) infinite;
  pointer-events: none;
}

@keyframes cta-sheen {
  0%,
  100% {
    transform: translateX(-35%) rotate(12deg);
  }
  50% {
    transform: translateX(25%) rotate(12deg);
  }
}

.cta-band__eyebrow {
  position: relative;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band__title {
  position: relative;
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5.5vw, 3.15rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.cta-band__lead {
  position: relative;
  margin: 0 auto 1.75rem;
  max-width: 28rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.cta-band__bullets {
  position: relative;
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  max-width: 26rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.cta-band__bullets li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.85rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-band__bullet-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
}

.cta-band__stores {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 36rem;
  margin: 0 auto 1.25rem;
}

@media (min-width: 520px) {
  .cta-band__stores {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.store-badge {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 4.25rem;
  padding: 0.95rem 1.25rem;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s,
    filter 0.28s;
}

.store-badge:focus-visible {
  outline: 2px solid var(--pitopi-white);
  outline-offset: 3px;
}

.store-badge--apple {
  background: #0a0a0c;
  color: #f5f5f7;
  box-shadow: 0 4px 0 rgba(255, 255, 255, 0.1) inset,
    0 18px 40px rgba(0, 0, 0, 0.35);
}

.store-badge--google {
  background: #fff;
  color: #1a1a1e;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.06) inset,
    0 18px 40px rgba(74, 28, 108, 0.18);
}

.store-badge:hover {
  transform: translateY(-4px) scale(1.01);
  filter: brightness(1.04);
}

.store-badge--apple:hover {
  box-shadow: 0 4px 0 rgba(255, 255, 255, 0.12) inset,
    0 24px 52px rgba(0, 0, 0, 0.45);
}

.store-badge--google:hover {
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.05) inset,
    0 24px 52px rgba(74, 28, 108, 0.25);
}

.store-badge__mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-badge--google .store-badge__mark {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.08));
}

.store-badge__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  line-height: 1.15;
  text-align: left;
}

.store-badge__line--small {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.88;
}

.store-badge--google .store-badge__line--small {
  color: #5f6368;
}

.store-badge__line--big {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta-band__footnote {
  position: relative;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
}

.footer {
  position: relative;
  z-index: 2;
  scroll-snap-align: start;
  max-width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 1.25rem;
  padding: 1.5rem 1.25rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(7, 14, 48, 0.94),
    rgba(4, 10, 34, 0.96)
  );
  box-shadow: 0 22px 54px rgba(4, 8, 24, 0.52);
  color: rgba(255, 255, 255, 0.82);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 1.5rem 2rem;
  align-items: start;
}

.footer__brand {
  max-width: 27rem;
}

.footer__logo {
  margin-bottom: 0.65rem;
}

.footer__desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
}

.footer__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.footer__social-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 0.22s var(--ease-out), background 0.22s;
}

.footer__social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.footer__col h3 {
  margin: 0 0 0.55rem;
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.footer__col a {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer__col a:last-child {
  margin-bottom: 0;
}

.footer__col a:hover {
  color: var(--pitopi-white);
}

.footer__bottom {
  margin-top: 1.15rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer__legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.66);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 900px) {
  .footer {
    max-width: calc(100% - 1.25rem);
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .footer__cols {
    grid-template-columns: 1fr;
  }
}

/* Scroll reveal — daha hareketli giriş */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 36px, 0) scale(0.94);
  filter: blur(4px);
  transition: opacity 0.78s var(--ease-spring), transform 0.78s var(--ease-spring),
    filter 0.65s var(--ease-out);
  will-change: opacity, transform, filter;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.nav [data-reveal] {
  filter: none;
}

.steps .step[data-reveal]:nth-child(1) {
  transition-delay: 0.04s;
}

.steps .step[data-reveal]:nth-child(2) {
  transition-delay: 0.12s;
}

.steps .step[data-reveal]:nth-child(3) {
  transition-delay: 0.2s;
}

.cards .card[data-reveal]:nth-child(1) {
  transition-delay: 0.05s;
}

.cards .card[data-reveal]:nth-child(2) {
  transition-delay: 0.14s;
}

.cards .card[data-reveal]:nth-child(3) {
  transition-delay: 0.23s;
}

@media (min-width: 900px) {
  .steps .step[data-reveal]:nth-child(2) {
    transition-delay: 0.18s;
  }

  .steps .step[data-reveal]:nth-child(3) {
    transition-delay: 0.32s;
  }
}

.hero [data-reveal]:not(.hero__visual) {
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.97);
  filter: blur(3px);
}

.hero [data-reveal].is-visible:not(.hero__visual) {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/*
 * İstatistik bandını 20px yukarı: genel .hero [data-reveal].is-visible kuralı
 * daha yüksek özgüllükte olduğu için burada child + tip ile eziyoruz.
 */
main > section.hero .hero__shell > ul.hero__stats.hero__stats--band[data-reveal].is-visible {
  transform: translate3d(0, -20px, 0) scale(1);
}

.hero__visual[data-reveal] {
  opacity: 0;
  transform: scale(0.88) rotate(-2deg);
  filter: blur(6px);
  transition: opacity 0.95s var(--ease-spring) 0.15s,
    transform 0.95s var(--ease-spring) 0.15s, filter 0.75s var(--ease-out) 0.15s;
}

.hero__visual[data-reveal].is-visible {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: blur(0);
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
  }

  .hero__stats {
    gap: 0.5rem;
    max-width: none;
  }

  .hero__stats li {
    padding: 0.65rem 0.35rem;
  }

  .hero__stats--band {
    padding: 0.85rem 0.5rem;
    gap: 0.45rem;
  }

  .hero__stats--band li {
    padding: 0.75rem 0.35rem;
  }

  .hero__stats--band strong {
    font-size: clamp(1.45rem, 7vw, 2.35rem);
  }

  .hero__stats--band span {
    font-size: 0.72rem;
    line-height: 1.2;
    color: var(--pitopi-white);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
    scroll-snap-type: none;
    scroll-padding-top: var(--nav-h, 4.5rem);
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  main > section.hero .hero__shell > ul.hero__stats.hero__stats--band[data-reveal] {
    transform: translateY(-20px);
  }

  .logo__mark {
    animation: none;
    color: #f2f2f2;
  }

  .section--dark::before,
  .cta-band::before {
    animation: none !important;
  }

  .cta-band__glow,
  .cta-band__sheen {
    animation: none !important;
  }

  .hero__stats--band li {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__stats--band li::before,
  .hero__stats--band li::after {
    animation: none !important;
  }

  .hero__stats--band li::before {
    opacity: 0.85;
  }

  .hero__stats--band li::after {
    opacity: 0;
    box-shadow: none;
  }
}
