/* ─────────────────────────────────────────────
   PredGo landing — koyu stadyum teması
   ───────────────────────────────────────────── */
:root {
  --bg: #04211c;
  --bg-2: #06332b;
  --bg-3: #0b3d2e;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(62, 180, 137, 0.18);
  --teal: #3eb489;
  --teal-light: #5ecfa5;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --win: #4ade80;
  --text: #eef7f3;
  --muted: rgba(238, 247, 243, 0.6);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: radial-gradient(1200px 800px at 75% -10%, #0d4a3a 0%, var(--bg) 55%) fixed;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Arkaplan dokuları ── */
.pitch-bg {
  position: fixed; inset: 0; z-index: -2; opacity: 0.9;
}
.pitch-bg svg { width: 100%; height: 100%; }

.glow {
  position: fixed; border-radius: 50%; filter: blur(120px); z-index: -1;
  pointer-events: none;
}
.glow-1 { width: 480px; height: 480px; background: rgba(62, 180, 137, 0.14); top: -120px; right: -100px; }
.glow-2 { width: 420px; height: 420px; background: rgba(245, 158, 11, 0.07); bottom: 5%; left: -140px; }

/* ── Tipografi ── */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 700; letter-spacing: -0.01em; }

.grad-text {
  background: linear-gradient(92deg, var(--teal-light) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 5vw, 64px);
  background: rgba(4, 33, 28, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(62, 180, 137, 0.12);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  color: var(--text); text-decoration: none;
}
.nav-logo { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.92rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(92deg, var(--teal) 0%, #2d9d75 100%);
  color: #04211c; font-weight: 700; text-decoration: none;
  border-radius: 999px; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(62, 180, 137, 0.35);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(62, 180, 137, 0.5); }
.btn-small { padding: 9px 22px; font-size: 0.9rem; }
.btn-mid { padding: 13px 30px; font-size: 0.95rem; margin-top: 26px; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text); font-weight: 700; font-size: 0.8rem;
  font-family: var(--font-body);
  width: 42px; height: 36px; border-radius: 999px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.lang-toggle:hover { border-color: var(--teal); background: rgba(62, 180, 137, 0.12); }

/* ── Hero ── */
.hero {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) clamp(20px, 5vw, 64px) 56px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(62, 180, 137, 0.1); border: 1px solid var(--card-border);
  color: var(--teal-light); font-size: 0.82rem; font-weight: 600;
  padding: 7px 16px; border-radius: 999px; margin-bottom: 22px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--win);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}
.hero-sub {
  color: var(--muted); font-size: 1.08rem; max-width: 520px;
  margin: 20px 0 30px;
}

.hero-cta { display: flex; align-items: stretch; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text); text-decoration: none;
  padding: 12px 22px; border-radius: 16px;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}
.store-btn:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--teal);
}
.store-icon { width: 26px; height: 26px; flex-shrink: 0; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.25; font-weight: 700; font-size: 1.02rem; }
.store-btn small { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.08em; color: var(--muted); }

.hero-qr {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 10px 6px; border-radius: 16px;
}
.hero-qr img { width: 74px; height: 74px; border-radius: 10px; }
.hero-qr small { font-size: 0.62rem; color: var(--muted); font-weight: 600; }

.hero-stats { display: flex; gap: 36px; margin-top: 38px; flex-wrap: wrap; }
.stat strong {
  display: block; font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 800; color: var(--teal-light);
}
.stat span { color: var(--muted); font-size: 0.84rem; }

/* ── Telefon mockup ── */
.hero-phone { position: relative; display: flex; justify-content: center; perspective: 1200px; }
.phone {
  width: min(320px, 80vw); aspect-ratio: 9 / 19;
  background: #0a0f0d;
  border-radius: 44px; padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 0 0 2px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(62, 180, 137, 0.18);
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
  position: relative; z-index: 2;
}
.phone-notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 32%; height: 22px; background: #0a0f0d; border-radius: 999px; z-index: 5;
}
.phone-screen {
  position: relative; width: 100%; height: 100%;
  background: linear-gradient(165deg, #0d4a3a 0%, var(--bg-2) 45%, #052b23 100%);
  border-radius: 36px; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 52px 12px 10px;
  gap: 10px;
}

/* Gerçek ekran görüntüleri */
.phone-screen-shots {
  padding: 0; gap: 0;
  background: #052b23;
}
.shot-stack { position: relative; width: 100%; height: 100%; }
.shot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  opacity: 0; transition: opacity 0.8s ease;
}
.phone-screen-shots > .shot { position: relative; opacity: 1; display: block; }
.shot.active { opacity: 1; }

.app-header { display: flex; align-items: center; gap: 7px; }
.app-logo { width: 24px; height: 24px; border-radius: 6px; }
.app-title { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; }
.app-chips { margin-left: auto; display: flex; gap: 5px; }
.chip {
  font-size: 0.58rem; font-weight: 700; padding: 4px 8px; border-radius: 999px;
}
.chip-credit { background: rgba(74, 222, 128, 0.14); color: var(--win); }
.chip-diamond { background: rgba(96, 165, 250, 0.14); color: #93c5fd; }

.match-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px; padding: 10px 12px; position: relative;
}
.match-league { font-size: 0.56rem; color: var(--muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.match-row { display: flex; align-items: center; justify-content: space-between; margin-top: 5px; gap: 6px; }
.team { font-size: 0.7rem; font-weight: 700; flex: 1; }
.team-right { text-align: right; }
.score { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--gold-light); }
.live-pill {
  position: absolute; top: 9px; right: 10px;
  display: flex; align-items: center; gap: 4px;
  background: rgba(239, 68, 68, 0.16); color: #fca5a5;
  font-size: 0.55rem; font-weight: 800; padding: 3px 8px; border-radius: 999px;
}

.coupon-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(62, 180, 137, 0.25);
  border-radius: 18px; padding: 12px; position: relative;
  display: flex; flex-direction: column; gap: 8px;
}
.coupon-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.66rem; font-weight: 700; color: var(--muted);
}
.coupon-odds b { color: var(--gold-light); font-size: 0.78rem; }
.pick {
  display: grid; grid-template-columns: 1fr auto auto auto; gap: 7px; align-items: center;
  background: rgba(0, 0, 0, 0.22); border-radius: 10px; padding: 8px 9px;
  font-size: 0.62rem;
  border: 1px solid transparent;
  transition: border-color 0.4s, background 0.4s;
}
.pick-match { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pick-bet { color: var(--teal-light); font-weight: 700; }
.pick-odd { color: var(--gold-light); font-weight: 800; }
.pick-check {
  width: 15px; height: 15px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 900;
  background: rgba(255, 255, 255, 0.12); color: transparent;
  transition: background 0.35s, color 0.35s, transform 0.35s;
}
.pick.hit { border-color: rgba(74, 222, 128, 0.5); background: rgba(74, 222, 128, 0.08); }
.pick.hit .pick-check { background: var(--win); color: #04211c; transform: scale(1.15); }

.coupon-foot {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.62rem; color: var(--muted); font-weight: 600;
}
.coupon-win {
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 800;
  color: var(--win); opacity: 0.35; transition: opacity 0.4s, transform 0.4s;
}
.coupon-win.show { opacity: 1; transform: scale(1.12); }

.won-banner {
  position: absolute; inset: auto 10px 10px 10px;
  background: linear-gradient(92deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #3b2503; text-align: center;
  font-family: var(--font-display); font-weight: 800; font-size: 0.78rem;
  padding: 9px; border-radius: 12px;
  opacity: 0; transform: translateY(14px) scale(0.92);
  transition: opacity 0.45s, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.4);
}
.won-banner.show { opacity: 1; transform: translateY(0) scale(1); }

.mini-board {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px; padding: 10px 11px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1; min-height: 0; overflow: hidden;
}
.mini-title {
  font-size: 0.56rem; font-weight: 700; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.mini-row {
  display: flex; align-items: center; gap: 7px; font-size: 0.62rem;
  padding: 4px 6px; border-radius: 8px;
}
.mini-row-me { background: rgba(62, 180, 137, 0.12); border: 1px solid rgba(62, 180, 137, 0.3); }
.mini-rank {
  width: 16px; height: 16px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.52rem; font-weight: 900; color: #04211c;
}
.rank-gold { background: var(--gold-light); }
.rank-silver { background: #94a3b8; }
.rank-bronze { background: #d97706; }
.mini-name { font-weight: 600; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-name b { color: var(--teal-light); font-weight: 800; }
.mini-val { font-weight: 800; color: var(--gold-light); }

.app-tabbar {
  margin-top: auto;
  display: flex; justify-content: space-around; align-items: center;
  background: rgba(0, 0, 0, 0.3); border-radius: 16px; padding: 7px 6px;
}
.tab { font-size: 0.8rem; opacity: 0.45; }
.tab.active { opacity: 1; color: var(--teal-light); }
.tab-main {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, #2d9d75 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #04211c; font-weight: 800; opacity: 1; font-size: 1rem;
}

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

/* Yüzen çipler */
.float-chip {
  position: absolute; z-index: 3;
  background: rgba(10, 25, 21, 0.85); backdrop-filter: blur(8px);
  border: 1px solid var(--card-border);
  font-size: 0.74rem; font-weight: 700; color: var(--text);
  padding: 9px 14px; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip b { color: var(--gold-light); }
.float-chip-1 { top: 14%; left: -2%; animation-delay: 0s; }
.float-chip-2 { top: 42%; right: -4%; animation-delay: 1.4s; }
.float-chip-3 { bottom: 12%; left: 0%; animation-delay: 2.6s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Ticker ── */
.ticker {
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid rgba(62, 180, 137, 0.14);
  border-bottom: 1px solid rgba(62, 180, 137, 0.14);
  background: rgba(0, 0, 0, 0.22);
  padding: 13px 0;
}
.ticker-track {
  display: inline-flex; gap: 48px;
  animation: ticker 36s linear infinite;
  will-change: transform;
}
.ticker-track span { color: var(--muted); font-size: 0.88rem; font-weight: 500; }
.ticker-track b { color: var(--gold-light); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Bölümler ── */
.section {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(64px, 10vh, 110px) clamp(20px, 5vw, 64px);
  text-align: center;
}
.section-kicker {
  color: var(--teal-light); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.18em; margin-bottom: 14px;
}

/* ── Split bölümler (analizler / kuponlar) ── */
.split {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 6vw, 84px);
  align-items: center; text-align: left;
}
.split-rev { grid-template-columns: 1.15fr 1fr; }
.split-rev .split-media { order: 2; }
.split-rev .split-copy { order: 1; }
.split-media {
  position: relative;
  display: flex; justify-content: center;
}
.phone-static { width: min(290px, 76vw); }
.split-sub { color: var(--muted); font-size: 1.04rem; margin: 18px 0 6px; max-width: 520px; }
.check-list {
  list-style: none; margin-top: 22px;
  display: flex; flex-direction: column; gap: 13px;
}
.check-list li {
  position: relative; padding-left: 34px;
  color: var(--muted); font-size: 0.96rem;
}
.check-list li b { color: var(--text); }
.check-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(62, 180, 137, 0.16); color: var(--teal-light);
  font-size: 0.72rem; font-weight: 900;
}
.split-chip-1 { bottom: 18%; left: 2%; animation-delay: 0.8s; }
.split-chip-2 {
  top: 12%; right: 4%; animation-delay: 2s;
  background: linear-gradient(92deg, rgba(245, 158, 11, 0.92) 0%, rgba(251, 191, 36, 0.92) 100%);
  color: #3b2503; border-color: transparent;
}

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px; text-align: left;
}
.feature-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px; padding: 28px 26px;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border);
  background: rgba(62, 180, 137, 0.06);
}
.feature-icon {
  font-size: 1.6rem; width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(62, 180, 137, 0.12); border-radius: 16px;
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.92rem; }

/* ── Adımlar ── */
.steps {
  display: flex; align-items: stretch; justify-content: center; gap: 18px;
  margin-top: 48px; flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 230px; max-width: 320px; text-align: left;
  background: var(--card); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px; padding: 28px 26px;
}
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--teal) 0%, #2d9d75 100%);
  color: #04211c; margin-bottom: 16px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }
.step-arrow {
  align-self: center; color: var(--teal); font-size: 1.5rem; font-weight: 800;
}

/* ── Ödüller / podyum ── */
.rewards {
  display: grid; grid-template-columns: repeat(2, minmax(280px, 420px));
  gap: 24px; justify-content: center; margin-top: 48px;
}
.reward-board {
  background: var(--card); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px; padding: 30px 26px 24px;
}
.reward-board h3 {
  font-size: 1.05rem; color: var(--teal-light);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 24px;
}
.reward-board > p { color: var(--muted); font-size: 0.86rem; margin-top: 18px; }
.podium {
  display: flex; align-items: flex-end; justify-content: center; gap: 10px;
  height: 190px;
}
.podium-col { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 86px; }
.podium-crown { font-size: 1.3rem; animation: floaty 3.4s ease-in-out infinite; }
.podium-prize { font-weight: 800; font-size: 0.95rem; color: var(--gold-light); }
.podium-bar {
  width: 100%;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: rgba(255,255,255,0.85);
  border-radius: 12px 12px 0 0;
  transform-origin: bottom;
}
.first .podium-bar { height: 120px; background: linear-gradient(180deg, var(--gold) 0%, rgba(245, 158, 11, 0.25) 100%); }
.second .podium-bar { height: 86px; background: linear-gradient(180deg, #94a3b8 0%, rgba(148, 163, 184, 0.2) 100%); }
.third .podium-bar { height: 62px; background: linear-gradient(180deg, #b45309 0%, rgba(180, 83, 9, 0.2) 100%); }
.reveal.visible .podium-bar { animation: rise 0.7s cubic-bezier(0.34, 1.4, 0.64, 1) backwards; }
.reveal.visible .second .podium-bar { animation-delay: 0.1s; }
.reveal.visible .third .podium-bar { animation-delay: 0.2s; }
@keyframes rise {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* ── İndir bölümü ── */
.download { padding-bottom: clamp(72px, 12vh, 130px); }
.download-card {
  background:
    radial-gradient(600px 300px at 50% -40%, rgba(62, 180, 137, 0.25) 0%, transparent 70%),
    rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 32px;
  padding: clamp(40px, 7vw, 72px) clamp(24px, 5vw, 64px);
}
.download-logo {
  width: 76px; height: 76px; border-radius: 20px; margin-bottom: 24px;
  box-shadow: 0 16px 48px rgba(62, 180, 137, 0.35);
}
.download-card p { color: var(--muted); max-width: 480px; margin: 16px auto 36px; }
.qr-row { display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.qr-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 18px 14px; border-radius: 22px;
  text-decoration: none; color: var(--text);
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.qr-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--teal);
  box-shadow: 0 18px 50px rgba(62, 180, 137, 0.25);
}
.qr-card img { width: 150px; height: 150px; border-radius: 14px; }
.qr-label {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.95rem;
}
.qr-label .store-icon { width: 18px; height: 18px; }
.download-note { display: block; margin-top: 28px; color: var(--muted); font-size: 0.78rem; }

/* ── Footer ── */
.footer { border-top: 1px solid rgba(62, 180, 137, 0.12); background: rgba(0, 0, 0, 0.25); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 32px clamp(20px, 5vw, 64px);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.86rem; }
.footer-links a:hover { color: var(--text); }
.footer-inner small { color: rgba(238, 247, 243, 0.4); font-size: 0.76rem; margin-left: auto; max-width: 420px; }

/* ── Reveal animasyonu ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; text-align: center; gap: 60px; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .rewards { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .nav-links { display: none; }
  .float-chip-1 { left: 2%; }
  .float-chip-2 { right: 0%; }
  .split, .split-rev { grid-template-columns: 1fr; gap: 44px; }
  .split-rev .split-media { order: 2; }
  .split-rev .split-copy { order: 1; }
  .split-copy { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .check-list { text-align: left; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .footer-inner small { margin-left: 0; }
  .float-chip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track, .float-chip, .podium-crown, .pulse-dot { animation: none; }
}
