/* ============================================================
   Kickly — yayın grafiği (broadcast) estetiği.
   Archivo (display, condensed/uppercase) + Manrope (metin).
   Koyu saha zemini, tek vurgu yeşili, canlı için kırmızı.
   Tüm hareket transform/opacity üzerinden; reduced-motion tam destekli.
   ============================================================ */

:root {
  /* Zemin — nötr siyah değil, hafif yeşile çalan mürekkep */
  --ink:        #050807;
  --ink-1:      #080C0A;
  --ink-2:      #0B110E;
  --surface:    #0D1512;
  --surface-2:  #121C17;

  --line:       rgba(255, 255, 255, 0.075);
  --line-2:     rgba(255, 255, 255, 0.14);

  --txt:        #F1F5F2;
  --txt-2:      #9CACA3;
  --txt-3:      #6E7C74;

  --green:      #00E27A;
  --green-2:    #0BB863;
  --green-3:    #05703E;
  --live:       #FF4438;
  --amber:      #FFC043;

  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --max: 1200px;
  --gut: 24px;

  --display: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in: cubic-bezier(0.6, 0, 0.9, 0.3);

  /* JS tarafından beslenir */
  --scroll: 0;
  --mx: 50%;
  --my: 30%;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--txt);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

::selection { background: var(--green); color: #04150C; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gut);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Klavye kullanıcıları için içeriğe atla */
.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 200;
  background: var(--green); color: #04150C;
  padding: 10px 18px; border-radius: var(--r-sm);
  font-weight: 700; transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ── Tipografi ölçeği ───────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  font-variation-settings: 'wdth' 108;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--txt-2);
  font-variation-settings: 'wdth' 100;
}
.eyebrow--boxed {
  padding: 7px 14px 7px 11px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 0 rgba(255, 68, 56, 0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.pulse--green { background: var(--green); box-shadow: 0 0 0 0 rgba(0, 226, 122, 0.6); animation-name: pulse-green; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 68, 56, 0.55); }
  70%  { box-shadow: 0 0 0 9px rgba(255, 68, 56, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 68, 56, 0); }
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0 rgba(0, 226, 122, 0.5); }
  70%  { box-shadow: 0 0 0 9px rgba(0, 226, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 226, 122, 0); }
}

.num { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum' 1; }

.accent { color: var(--green); }

/* Vurgu kelimesi — rengin kendisi yeterli; altı çizgi başlıkta
   Ç/İ gibi harflerin kuyruklarıyla çakışıyordu. */
.mark { color: var(--green); }

/* ── Scroll ilerleme çubuğu ─────────────────────────────── */

.progress {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  height: 2px;
  background: transparent;
  pointer-events: none;
}
.progress__bar {
  height: 100%;
  width: 100%;
  transform: scaleX(var(--scroll));
  transform-origin: left;
  background: linear-gradient(90deg, var(--green-2), var(--green));
  box-shadow: 0 0 14px rgba(0, 226, 122, 0.55);
}

/* ── Header ─────────────────────────────────────────────── */

.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 110;
  padding: 18px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr.is-stuck {
  padding: 10px 0;
  background: rgba(5, 8, 7, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}

.hdr__row { display: flex; align-items: center; gap: 28px; }

.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.brand img { width: 30px; height: 30px; border-radius: 8px; }

.hdr__nav { display: flex; gap: 30px; }
.hdr__nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--txt-2);
  transition: color .2s var(--ease);
  padding: 4px 0;
}
.hdr__nav a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.hdr__nav a:hover { color: var(--txt); }
.hdr__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── Butonlar ───────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .22s var(--ease), background .22s var(--ease),
              border-color .22s var(--ease), box-shadow .22s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }

.btn--primary {
  background: var(--green);
  color: #04150C;
  box-shadow: 0 6px 22px -8px rgba(0, 226, 122, 0.6);
}
.btn--primary:hover {
  background: #16F58C;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px rgba(0, 226, 122, 0.75);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-2);
  color: var(--txt);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}
.btn--sm { min-height: 40px; padding: 0 18px; font-size: 13.5px; }

/* ── Bölüm iskeleti ─────────────────────────────────────── */

.section { padding: 116px 0; position: relative; }
.section--tight { padding: 84px 0; }

.section__head { max-width: 660px; margin-bottom: 60px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 {
  font-size: clamp(32px, 4.6vw, 54px);
  margin: 18px 0 16px;
  text-transform: uppercase;
  font-variation-settings: 'wdth' 105;
}
.section__head p {
  color: var(--txt-2);
  font-size: 17px;
  margin: 0;
  max-width: 58ch;
}
.section__head--center p { margin-inline: auto; }

/* ── Hero ───────────────────────────────────────────────── */

.hero {
  position: relative;
  padding: 168px 0 84px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg { position: absolute; inset: -10% 0 0; z-index: -1; pointer-events: none; }

/* Saha çizgileri — perspektifli grid */
.hero__grid {
  position: absolute;
  left: 50%; top: 8%;
  width: 190%; height: 105%;
  transform: translateX(-50%) perspective(760px) rotateX(64deg);
  transform-origin: center top;
  background-image:
    linear-gradient(to right, rgba(0, 226, 122, 0.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 226, 122, 0.10) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 62% 58% at 50% 22%, #000 0%, transparent 78%);
  mask-image: radial-gradient(ellipse 62% 58% at 50% 22%, #000 0%, transparent 78%);
  opacity: 0.85;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}
.hero__orb--a { width: 620px; height: 620px; left: -12%; top: -18%; background: radial-gradient(circle, rgba(0, 226, 122, 0.34), transparent 66%); }
.hero__orb--b { width: 520px; height: 520px; right: -8%; top: 6%;  background: radial-gradient(circle, rgba(11, 184, 99, 0.22), transparent 68%); }

/* İmleci takip eden ışık — sadece hassas işaretçide */
.hero__spot {
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(0, 226, 122, 0.10), transparent 62%);
  opacity: 0;
  transition: opacity .5s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .hero:hover .hero__spot { opacity: 1; }
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 56px;
  align-items: center;
}
.hero__copy, .hero__stage { min-width: 0; }

.hero__title {
  font-size: clamp(38px, 8vw, 96px);
  overflow-wrap: break-word;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 22px 0 0;
  font-weight: 900;
  font-variation-settings: 'wdth' 104;
}

/* Kelime kelime perde açılışı */
.word { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.06em; }
.word > i {
  display: inline-block;
  font-style: normal;
  transform: translateY(105%);
  transition: transform .95s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.is-ready .word > i { transform: translateY(0); }

.hero__sub {
  color: var(--txt-2);
  font-size: 17.5px;
  line-height: 1.62;
  max-width: 46ch;
  margin: 26px 0 0;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.hero__proof {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--txt-3);
}
.hero__proof-item { display: inline-flex; align-items: center; gap: 7px; }
.hero__proof-item svg { width: 15px; height: 15px; color: var(--green); flex-shrink: 0; }

/* Hero sahne — telefon + uçuşan kartlar */
.hero__stage {
  position: relative;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
}

.device {
  position: relative;
  width: 268px;
  border-radius: 42px;
  padding: 9px;
  background: linear-gradient(160deg, #23302a, #0b100d 45%, #1a241f);
  box-shadow:
    0 60px 90px -40px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 90px -30px rgba(0, 226, 122, 0.35);
}
.device img { border-radius: 34px; width: 100%; height: auto; }
.device::after {
  content: '';
  position: absolute; inset: 9px;
  border-radius: 34px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.13), transparent 42%);
  pointer-events: none;
}

/* Uçuşan bilgi kartları */
.chip-wrap { position: absolute; z-index: 3; will-change: transform; }

.chip {
  position: relative;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 15px;
  border-radius: 15px;
  background: rgba(13, 21, 18, 0.82);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 40px -20px rgba(0, 0, 0, 0.85);
  white-space: nowrap;
}
.chip__k {
  font-family: var(--display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--txt-3);
  display: block;
}
.chip__v { font-family: var(--display); font-size: 15px; font-weight: 800; letter-spacing: -0.01em; }
.chip__dot {
  width: 30px; height: 30px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(0, 226, 122, 0.14);
  color: var(--green);
  flex-shrink: 0;
}
.chip__dot svg { width: 16px; height: 16px; }
.chip__dot--live { background: rgba(255, 68, 56, 0.15); color: var(--live); }

.chip-wrap--goal   { top: 12%;   left: -6%; }
.chip-wrap--limit  { top: 44%;   right: -10%; }
.chip-wrap--corner { bottom: 13%; left: -2%; }

/* Ana eksen: JS parallax'ı --py'ye yazar, float animasyonu üstüne biner */
.float { animation: float 7s ease-in-out infinite; }
.float--b { animation-duration: 8.5s; animation-delay: -2.5s; }
.float--c { animation-duration: 9.5s; animation-delay: -5s; }
@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -13px, 0); }
}

/* ── Canlı skor şeridi (ticker) ─────────────────────────── */

.ticker {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent);
  overflow: hidden;
  padding: 15px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.tick {
  display: inline-flex; align-items: center; gap: 12px;
  margin-right: 42px;
  font-size: 14px;
  color: var(--txt-2);
  white-space: nowrap;
}
.tick__min {
  font-family: var(--display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--live);
  border: 1px solid rgba(255, 68, 56, 0.35);
  background: rgba(255, 68, 56, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
}
.tick__min--ft { color: var(--txt-3); border-color: var(--line-2); background: rgba(255, 255, 255, 0.03); }
.tick__score {
  font-family: var(--display);
  font-weight: 800; font-size: 15px;
  color: var(--txt);
  letter-spacing: 0.01em;
}

/* ── Barem: sticky scrollytelling ───────────────────────── */

.story { position: relative; padding: 110px 0 130px; }

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 70px;
  /* stretch şart: sticky çocuk ancak kolon satır boyunca uzarsa yol alabilir */
  align-items: stretch;
}
.story__col--sticky { height: 100%; }

.story__steps { list-style: none; margin: 0; padding: 0; }

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  position: relative;
  min-height: clamp(320px, 58vh, 540px);
  align-content: center;
  opacity: 0.3;
  transition: opacity .5s var(--ease);
}
.step.is-active { opacity: 1; }
.step:last-child { min-height: clamp(260px, 42vh, 400px); }

.step__num {
  position: relative;
  z-index: 1;
  width: 52px; height: 52px;
  border-radius: 15px;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 19px; font-weight: 800;
  border: 1px solid var(--line-2);
  background: var(--surface);
  color: var(--txt-2);
  transition: color .4s var(--ease), border-color .4s var(--ease),
              background .4s var(--ease), box-shadow .4s var(--ease);
}
.step.is-active .step__num {
  color: #04150C;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 30px -6px rgba(0, 226, 122, 0.75);
}
/* Adımları birleştiren dikey ray */
.step::before {
  content: '';
  position: absolute;
  left: 26px; top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: var(--line);
}
.step:first-child::before { top: 50%; }
.step:last-child::before  { bottom: 50%; }

.step h3 {
  font-size: clamp(24px, 2.7vw, 33px);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-variation-settings: 'wdth' 103;
}
.step p { color: var(--txt-2); margin: 0; max-width: 46ch; font-size: 16.5px; }

.barem-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.barem-chip {
  font-family: var(--display);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--txt-2);
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}
.step.is-active .barem-chip:first-child {
  border-color: rgba(0, 226, 122, 0.55);
  background: rgba(0, 226, 122, 0.12);
  color: var(--green);
}

.story__sticky {
  position: sticky;
  top: 16vh;
  display: flex; align-items: center; justify-content: center;
  min-height: 60vh;
}
.story__stage { position: relative; }

/* Sahneye adım adım giren katmanlar */
.layer {
  position: absolute;
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.97);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.layer.is-on { opacity: 1; transform: translate3d(0, 0, 0) scale(1); pointer-events: auto; }

.layer--select { top: 16%; left: -14%; z-index: 3; }
.layer--limit  { top: 47%; right: -16%; z-index: 3; }

.notif {
  position: absolute;
  left: 50%; bottom: -6%;
  /* .layer gibi başlangıçta gizli — 3. adıma gelinince açılır */
  opacity: 0;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  transform: translate3d(-50%, 16px, 0) scale(0.97);
  width: min(360px, 88vw);
  z-index: 4;
  display: flex; gap: 13px;
  padding: 15px;
  border-radius: 19px;
  background: rgba(16, 24, 20, 0.9);
  border: 1px solid rgba(0, 226, 122, 0.28);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.95), 0 0 60px -24px rgba(0, 226, 122, 0.5);
}
.notif.is-on { opacity: 1; transform: translate3d(-50%, 0, 0) scale(1); }
.notif__icon { width: 40px; height: 40px; border-radius: 11px; overflow: hidden; flex-shrink: 0; }
.notif__body { min-width: 0; }
.notif__head {
  display: flex; align-items: baseline; gap: 9px;
  font-family: var(--display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--txt-3);
  margin-bottom: 5px;
}
.notif__head strong { color: var(--green); }
.notif__title { font-weight: 800; font-size: 15px; margin-bottom: 2px; letter-spacing: -0.01em; }
.notif__text { font-size: 13.5px; color: var(--txt-2); }

/* ── Momentum bandı ─────────────────────────────────────── */

.momentum {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 300px at 50% 0%, rgba(0, 226, 122, 0.09), transparent 70%),
    var(--ink-1);
  padding: 84px 0;
  overflow: hidden;
}
.momentum__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: center;
}
.momentum h2 { font-size: clamp(30px, 4vw, 46px); text-transform: uppercase; margin: 16px 0 14px; }
.momentum__copy p { color: var(--txt-2); margin: 0; font-size: 16.5px; max-width: 46ch; }

.mo-chart { width: 100%; height: auto; display: block; }

.mo-line {
  stroke-dasharray: var(--len, 1200);
  stroke-dashoffset: var(--len, 1200);
  transition: stroke-dashoffset 2.1s var(--ease);
}
.is-in .mo-line { stroke-dashoffset: 0; }

.mo-fill { opacity: 0; transition: opacity 1.1s var(--ease) .55s; }
.is-in .mo-fill { opacity: 1; }

.mo-bar {
  transform: scaleY(0);
  transform-box: fill-box;
  transform-origin: center bottom;
  transition: transform .75s var(--ease);
  transition-delay: calc(var(--i, 0) * 45ms);
}
.is-in .mo-bar { transform: scaleY(1); }

.mo-bar--away { transform-origin: center top; }

.mo-legend { display: flex; gap: 22px; margin-top: 20px; flex-wrap: wrap; }
.mo-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--txt-2); }
.mo-legend i { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }

/* ── Özellikler: bento ─────────────────────────────────── */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.tile {
  position: relative;
  grid-column: span 2;
  padding: 32px;
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--surface), var(--ink-2));
  border: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.tile::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(340px circle at var(--tx, 50%) var(--ty, 0%), rgba(0, 226, 122, 0.13), transparent 62%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.tile:hover { transform: translateY(-4px); border-color: rgba(0, 226, 122, 0.3); }
.tile:hover::before { opacity: 1; }

.tile--lead { grid-column: span 3; grid-row: span 2; display: flex; flex-direction: column; }
.tile--wide { grid-column: span 3; }

.tile__icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(0, 226, 122, 0.11);
  border: 1px solid rgba(0, 226, 122, 0.22);
  color: var(--green);
  margin-bottom: 22px;
}
.tile__icon svg { width: 22px; height: 22px; }

.tile h3 {
  font-size: 21px;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  font-variation-settings: 'wdth' 102;
}
.tile--lead h3 { font-size: clamp(26px, 2.6vw, 34px); }
.tile p { color: var(--txt-2); margin: 0; font-size: 15.5px; }

.tile__link {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green);
  font-family: var(--display);
  font-weight: 700; font-size: 14px;
  align-self: flex-start;
}
.tile__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.tile__link:hover svg { transform: translateX(4px); }

/* Öne çıkan kutuda mini bildirim önizlemesi */
.tile__preview {
  margin-top: 26px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.32);
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.tile__preview .bar {
  flex: 1; height: 6px; border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.tile__preview .bar i {
  display: block; height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green-2), var(--green));
  transition: width 1.6s var(--ease);
}
.is-in .tile__preview .bar i { width: 78%; }
.tile__preview .val { font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--green); }

/* ── İstatistik şeridi ──────────────────────────────────── */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--surface), var(--ink-2));
  padding: 40px 32px;
}
.stat { text-align: center; }
.stat__v {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(180deg, #FFFFFF, #7FE9B4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variation-settings: 'wdth' 100;
}
.stat__k {
  font-family: var(--display);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--txt-3);
  margin-top: 10px;
}

/* ── Ekran görüntüleri: kendi kendine kayan şerit ───────── */

.gallery { position: relative; }

.gallery__viewport {
  overflow: hidden;
  padding: 16px 0 8px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.gallery__track {
  display: flex;
  width: max-content;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: gallery-slide 68s linear infinite;
}
.gallery__viewport:hover .gallery__track,
.gallery__track:focus-within { animation-play-state: paused; }

@keyframes gallery-slide {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.shot { flex: 0 0 auto; margin-right: 36px; }

.shot__btn {
  position: relative;
  display: block;
  width: 248px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
}

.shot__frame {
  display: block;
  border-radius: 38px;
  padding: 8px;
  background: linear-gradient(160deg, #202c26, #0a0f0c 50%, #18211c);
  box-shadow: 0 40px 70px -34px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform .38s var(--ease), box-shadow .38s var(--ease);
}
.shot__frame img { border-radius: 31px; width: 100%; height: auto; }

.shot__btn:hover .shot__frame,
.shot__btn:focus-visible .shot__frame {
  transform: translateY(-10px);
  box-shadow:
    0 46px 80px -30px rgba(0, 0, 0, 0.92),
    0 0 0 1px rgba(0, 226, 122, 0.4),
    0 0 70px -20px rgba(0, 226, 122, 0.5);
}

.shot__cap {
  display: block;
  margin-top: 18px;
  text-align: center;
  font-family: var(--display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--txt-3);
  transition: color .3s var(--ease);
}
.shot__btn:hover .shot__cap, .shot__btn:focus-visible .shot__cap { color: var(--green); }

/* Büyüteç rozeti — tıklanabilir olduğunu belli eder */
.shot__zoom {
  position: absolute;
  top: 22px; right: 22px;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(5, 8, 7, 0.72);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--txt);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.shot__zoom svg { width: 17px; height: 17px; }
.shot__btn:hover .shot__zoom, .shot__btn:focus-visible .shot__zoom { opacity: 1; transform: scale(1); }

.gallery__hint {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 13px; color: var(--txt-3);
  margin: 22px 0 0;
}
.gallery__hint svg { width: 15px; height: 15px; }
.hint-touch { display: none; }
@media (hover: none) {
  .hint-fine { display: none; }
  .hint-touch { display: inline; }
}

/* Dokunmatikte otomatik kayma sinir bozucu: elle kaydırılan raya dönüşür */
@media (hover: none) {
  .gallery__viewport { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .gallery__viewport::-webkit-scrollbar { display: none; }
  .gallery__track { animation: none; padding: 0 var(--gut); }
  .gallery__viewport { -webkit-mask-image: none; mask-image: none; }
  .shot { scroll-snap-align: center; }
  .shot[aria-hidden="true"] { display: none; }
  .shot__zoom { opacity: 1; transform: scale(1); }
}

/* ── Lightbox ───────────────────────────────────────────── */

.lightbox {
  width: 100%; height: 100%;
  max-width: 100vw; max-height: 100vh;
  margin: 0; padding: 0;
  border: 0;
  background: transparent;
  color: var(--txt);
  overflow: hidden;
}
.lightbox:not([open]) { display: none; }
.lightbox[open] { display: grid; place-items: center; }

.lightbox::backdrop {
  background: rgba(3, 6, 5, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lightbox__fig {
  margin: 0;
  padding: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  animation: lightbox-in .34s var(--ease);
}
@keyframes lightbox-in {
  from { opacity: 0; transform: translate3d(0, 14px, 0) scale(0.965); }
  to   { opacity: 1; transform: none; }
}

.lightbox__img {
  max-height: 76vh;
  max-width: min(92vw, 400px);
  width: auto; height: auto;
  border-radius: 34px;
  box-shadow: 0 50px 90px -30px rgba(0, 0, 0, 0.92), 0 0 0 1px rgba(255, 255, 255, 0.09);
}
.lightbox__cap {
  font-family: var(--display);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--txt-2);
}

.lightbox__close {
  position: fixed;
  top: 20px; right: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  background: rgba(13, 21, 18, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--txt);
  cursor: pointer;
  transition: background .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.06);
}

/* ── İndirme bandı ──────────────────────────────────────── */

.download { position: relative; overflow: hidden; }
.download__band {
  position: relative;
  border-radius: var(--r-xl);
  border: 1px solid rgba(0, 226, 122, 0.24);
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(0, 226, 122, 0.17), transparent 68%),
    linear-gradient(160deg, var(--surface-2), var(--ink-1));
  padding: 76px 40px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
/* Bandın içindeki saha çizgileri */
.download__band::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, #000, transparent 72%);
  mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, #000, transparent 72%);
}
.download__band h2 {
  font-size: clamp(34px, 5.2vw, 62px);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-variation-settings: 'wdth' 106;
}
.download__band p { color: var(--txt-2); margin: 0 auto 34px; max-width: 48ch; font-size: 17px; }

.store-badges { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.store-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px;
  min-width: 190px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-2);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; line-height: 1.2; text-align: left; }
.store-badge-text small { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--txt-3); font-weight: 600; }
.store-badge-text strong { font-family: var(--display); font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }
a.store-badge:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 226, 122, 0.5);
  background: rgba(0, 226, 122, 0.09);
}

/* ── Footer ─────────────────────────────────────────────── */

.ftr { border-top: 1px solid var(--line); padding: 56px 0 44px; background: var(--ink-1); }
.ftr__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.ftr__brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 18px; }
.ftr__brand img { width: 28px; height: 28px; border-radius: 8px; }
.ftr__tag { color: var(--txt-3); font-size: 13.5px; margin-top: 12px; max-width: 30ch; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; font-size: 14px; color: var(--txt-2); }
.footer-links a { transition: color .2s var(--ease); }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 12.5px; color: var(--txt-3); margin-top: 34px; }

/* ── Scroll reveal ──────────────────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--d, 0) * 1ms);
}
[data-reveal].is-in { opacity: 1; transform: translate3d(0, 0, 0); }

/* ── İçerik sayfaları (gizlilik / destek) ──────────────── */

.doc { max-width: 720px; margin: 0 auto; padding: 148px 24px 110px; }
.doc h1 { font-size: clamp(32px, 5vw, 46px); text-transform: uppercase; margin-bottom: 10px; }
.doc .doc-updated { color: var(--txt-3); font-size: 13.5px; margin-bottom: 44px; }
.doc h2 { font-size: 21px; margin: 40px 0 12px; text-transform: uppercase; }
/* SSS sorusu: önce inline style ile şişirilmiş h2'ydi — başlık hiyerarşisini
   bozuyordu (h2 > h2). Artık doğru seviyede h3 ve sınıfla biçimleniyor. */
.doc h3 { font-size: 17.5px; margin: 32px 0 10px; font-weight: 700; letter-spacing: -0.01em; color: var(--txt); }
.doc p, .doc li { color: var(--txt-2); font-size: 16px; line-height: 1.78; }
.doc ul { padding-left: 20px; }
.doc a.inline { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.text-danger { color: #FF6B60; }

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 1080px) {
  .hero__inner { gap: 40px; }
}

@media (max-width: 940px) {
  .hdr__nav { display: none; }

  .hero { padding: 132px 0 64px; }
  .hero__inner { grid-template-columns: minmax(0, 1fr); gap: 52px; }
  .hero__stage { min-height: 460px; }
  .hero__sub { max-width: none; }

  .story__grid { grid-template-columns: 1fr; gap: 44px; }
  /* Mobilde sticky sahne yerine tek sabit görsel; adımlar normal akışta */
  .story__col--sticky { order: -1; }
  .story__sticky { position: static; min-height: 0; }
  .step { min-height: 0; padding: 26px 0; opacity: 1; }
  .step:first-child::before, .step:last-child::before { top: 0; bottom: 0; }
  .layer, .notif { position: static; transform: none; opacity: 1; margin-top: 16px; }
  .notif { width: 100%; transform: none; }
  .layer--select, .layer--limit { display: none; }

  .momentum__grid { grid-template-columns: 1fr; gap: 34px; }

  .bento { grid-template-columns: repeat(4, 1fr); }
  .tile, .tile--wide { grid-column: span 2; }
  .tile--lead { grid-column: span 4; grid-row: auto; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

@media (max-width: 640px) {
  :root { --gut: 18px; }

  .section { padding: 76px 0; }
  .section--tight { padding: 58px 0; }
  .story { padding: 70px 0 84px; }

  .hero__stage { min-height: 400px; }
  .device { width: 216px; }
  .chip-wrap--goal { top: 4%; left: 0; }
  .chip-wrap--limit { top: 47%; right: 0; }
  .chip-wrap--corner { display: none; }
  .hero__ctas .btn { flex: 1 1 100%; }

  .bento { grid-template-columns: 1fr; }
  .tile, .tile--wide, .tile--lead { grid-column: span 1; }
  .tile { padding: 26px; }

  .stats { grid-template-columns: repeat(2, 1fr); padding: 30px 20px; }

  .download__band { padding: 52px 22px; border-radius: var(--r-lg); }
  .store-badge { min-width: 0; flex: 1 1 100%; justify-content: center; }

  .ftr__row { flex-direction: column; }
  .doc { padding-top: 116px; }
}

/* ── Hareket azaltma ────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .word > i { transform: none; }
  [data-reveal] { opacity: 1; transform: none; }
  .layer, .notif { opacity: 1; transform: translate3d(-50%, 0, 0); }
  .layer { transform: none; }
  .step { opacity: 1; }
  .mo-line { stroke-dashoffset: 0; }
  .mo-fill { opacity: 1; }
  .mo-bar { transform: scaleY(1); }
  .ticker__track { animation: none; }
  .gallery__track { animation: none; }
  .gallery__viewport { overflow-x: auto; }
  .shot[aria-hidden="true"] { display: none; }
  .lightbox__fig { animation: none; }
  .chip-wrap { transform: none !important; }
  .tile__preview .bar i { width: 78%; }
}
