/* ==========================================================================
   Adima — adimaapp.com landing page
   Tek tema: derin yeşil-antrasit zemin + marka sage yeşili.
   ========================================================================== */

:root {
  /* Marka (AppTheme.swift ile hizalı) */
  --green: #4FAB7A;          /* brandGreen  rgb(0.31,0.67,0.48) */
  --green-deep: #1F6B47;     /* brandGreenDeep light */
  --green-bright: #8CDBAD;   /* brandGreenDeep dark  */
  --green-soft: #DBF0E3;
  --mint: #B9F2D2;
  --amber: #E8A647;
  --teal: #5CB5BD;
  --blush: #F59E8C;
  --red: #E3574F;

  /* Zemin */
  --bg: #080C0A;
  --bg-2: #0E1310;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Metin */
  --text: #F0F5F1;
  --text-2: #A9B4AC;
  --text-3: #6F7A72;

  --font-display: "Outfit", "SF Pro Rounded", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1200px;
  --nav-h: 72px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* `hidden` her zaman kazanmalı: panel gizleme bu nitelikle yapılıyor ve
   `.center-state { display: grid }` gibi bir sınıf kuralı onu sessizce
   ezerse iki panel üst üste binip görünür (giriş/profil sayfalarında
   yaşandı). */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }

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

::selection { background: rgba(79, 171, 122, 0.35); color: #fff; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.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;
}

/* --------------------------------------------------------------------------
   Tipografi
   -------------------------------------------------------------------------- */

.display, h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-bright);
}
.eyebrow::before {
  content: "";
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.8;
}

.section-title {
  font-size: clamp(34px, 4.6vw, 60px);
  margin-top: 16px;
  max-width: 18ch;
}
.section-lead {
  color: var(--text-2);
  font-size: clamp(17px, 1.3vw, 20px);
  max-width: 56ch;
  margin-top: 18px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--mint) 0%, var(--green) 55%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   Ortak yardımcılar
   -------------------------------------------------------------------------- */

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid var(--border);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 30px 60px -30px rgba(0,0,0,0.6);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 220ms var(--ease-out), background-color 200ms, border-color 200ms, box-shadow 220ms, color 200ms;
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  color: #06110B;
  background: linear-gradient(135deg, var(--mint), var(--green));
  box-shadow: 0 10px 30px -10px rgba(79,171,122,0.7), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.btn-primary:hover {
  box-shadow: 0 16px 40px -10px rgba(79,171,122,0.85), 0 0 0 1px rgba(255,255,255,0.12) inset;
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--border-strong); }

/* Mağaza rozetleri */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 60px;
  padding: 0 20px 0 16px;
  border-radius: 16px;
  background: #0F1512;
  border: 1px solid var(--border-strong);
  color: #fff;
  text-align: left;
  line-height: 1.05;
  transition: transform 220ms var(--ease-out), border-color 200ms, background-color 200ms, box-shadow 220ms;
}
.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(140,219,173,0.5);
  background: #131B16;
  box-shadow: 0 20px 40px -20px rgba(79,171,122,0.5);
}
.store-badge svg { width: 28px; height: 28px; flex: none; }
.store-badge small { display: block; font-size: 11px; font-weight: 500; color: var(--text-2); letter-spacing: 0.02em; }
.store-badge strong { display: block; font-size: 18px; font-weight: 600; font-family: var(--font-display); letter-spacing: -0.01em; }
.store-badge.light { background: #F4F8F5; color: #0A120D; border-color: transparent; }
.store-badge.light small { color: #55605A; }
.store-badge.light:hover { background: #fff; }

/* Kaydırma ile görünürlük */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Arka plan: aurora + ızgara + grain
   -------------------------------------------------------------------------- */

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(79,171,122,0.18), transparent 60%),
    var(--bg);
}
.bg .blob {
  position: absolute;
  width: 60vmax; height: 60vmax;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: drift 28s ease-in-out infinite alternate;
}
.bg .b1 { background: radial-gradient(circle, rgba(79,171,122,0.55), transparent 60%); top: -20vmax; left: -10vmax; }
.bg .b2 { background: radial-gradient(circle, rgba(92,181,189,0.35), transparent 60%); top: 10vmax; right: -25vmax; animation-delay: -9s; animation-duration: 34s; }
.bg .b3 { background: radial-gradient(circle, rgba(232,166,71,0.18), transparent 60%); bottom: -30vmax; left: 20vmax; animation-delay: -18s; animation-duration: 40s; }

.bg .grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 20%, transparent 75%);
}
.bg .grain {
  position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.07;
  animation: grain 1.2s steps(6) infinite;
}

@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(8vmax, -6vmax, 0) scale(1.15); }
  100% { transform: translate3d(-6vmax, 8vmax, 0) scale(0.95); }
}
@keyframes grain {
  0% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-4%); } 60% { transform: translate(-4%,-2%); }
  80% { transform: translate(3%,3%); } 100% { transform: translate(0,0); }
}

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */

.nav-wrap {
  position: fixed;
  top: 16px; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  width: min(var(--container), 100%);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 10px 0 16px;
  border-radius: 999px;
  transition: background-color 300ms, border-color 300ms, box-shadow 300ms;
}
.nav.scrolled { box-shadow: 0 20px 50px -25px rgba(0,0,0,0.9); border-color: var(--border-strong); }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: 0 6px 16px -6px rgba(79,171,122,0.8); }

.nav-links { display: flex; gap: 4px; }
.nav-links a {
  display: inline-flex; align-items: center; height: 40px; padding: 0 14px;
  border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--text-2);
  transition: color 200ms, background-color 200ms;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a.active { color: var(--text); background: rgba(79,171,122,0.14); box-shadow: 0 0 0 1px rgba(140,219,173,0.22) inset; }

.nav-actions { display: flex; align-items: center; gap: 8px; }

.lang {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  position: relative;
}
.lang button {
  position: relative; z-index: 1;
  height: 34px; min-width: 44px; padding: 0 12px;
  border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--text-2);
  transition: color 250ms;
}
.lang button[aria-pressed="true"] { color: #06110B; }
.lang .pill {
  position: absolute; top: 3px; bottom: 3px; left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint), var(--green));
  transition: transform 320ms var(--ease-spring);
}
.lang[data-lang="en"] .pill { transform: translateX(100%); }

.nav .btn { height: 44px; padding: 0 18px; font-size: 14px; }
/* Giriş düğmesi ikincil: indirme çağrısıyla yarışmasın. */
.nav-signin { font-weight: 500; }

.menu-btn { display: none; width: 44px; height: 44px; border-radius: 999px; align-items: center; justify-content: center; }
.menu-btn svg { width: 22px; height: 22px; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(8,12,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 250ms;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-size: 30px; font-weight: 600; padding: 12px 20px; color: var(--text); }
.mobile-menu .store-row { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 112px; /* alt kenardaki Adımo kartı ile kaydırma ipucu çakışmasın */
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow-x: clip; /* süzülen kartlar ve glow yatay kaydırma üretmesin */
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--text-2);
}
.hero-badge .dot {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(79,171,122,0.18); color: var(--green-bright);
  font-weight: 700; font-size: 12px; letter-spacing: 0.04em;
}
.hero-badge .dot::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright);
  box-shadow: 0 0 0 0 rgba(140,219,173,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(140,219,173,0.6); } 100% { box-shadow: 0 0 0 10px rgba(140,219,173,0); } }

.hero h1 {
  margin-top: 26px;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.hero h1 .line { display: block; overflow: hidden; padding-bottom: 0.08em; }
.hero h1 .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: rise 1100ms var(--ease-out) forwards;
  animation-delay: calc(var(--i) * 70ms + 200ms);
}
@keyframes rise { to { transform: none; opacity: 1; } }

.hero .lead {
  margin-top: 26px;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--text-2);
  max-width: 52ch;
  opacity: 0; animation: fade 1s var(--ease-out) 700ms forwards;
}
@keyframes fade { to { opacity: 1; } }

.hero-cta {
  margin-top: 36px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  opacity: 0; animation: fade 1s var(--ease-out) 900ms forwards;
}
.hero-meta {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 22px;
  color: var(--text-2); font-size: 14px;
  opacity: 0; animation: fade 1s var(--ease-out) 1100ms forwards;
}
.rating { display: inline-flex; align-items: center; gap: 8px; }
.rating .stars { display: inline-flex; gap: 2px; color: var(--amber); }
.rating .stars svg { width: 15px; height: 15px; }
.rating strong { color: var(--text); font-weight: 700; }
.avatars { display: inline-flex; align-items: center; }
.avatars span {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg);
  margin-left: -8px; background: linear-gradient(135deg, var(--c1), var(--c2));
  display: inline-grid; place-items: center; font-size: 11px; font-weight: 700; color: #06110B;
}
.avatars span:first-child { margin-left: 0; }

/* Telefon sahnesi */
.hero-visual {
  position: relative;
  height: clamp(560px, 78vh, 760px);
  perspective: 1600px;
  opacity: 0; animation: fade 1.2s var(--ease-out) 400ms forwards;
}
.phone-stage {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  transform-style: preserve-3d;
  transition: transform 600ms var(--ease-out);
  will-change: transform;
}

.phone {
  position: relative;
  width: 318px;
  aspect-ratio: 318 / 660;
  border-radius: 54px;
  background: linear-gradient(160deg, #2c332f, #0d110f 45%, #1a201c);
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1),
    0 60px 120px -40px rgba(0,0,0,0.9),
    0 30px 60px -30px rgba(79,171,122,0.4);
  transform: translateZ(0);
}
.phone::before {
  /* kenar parlaması */
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0.35), transparent 30%, transparent 70%, rgba(255,255,255,0.15));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1.5px;
}
.screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 45px;
  overflow: hidden;
  background: linear-gradient(180deg, #F7FBF8 0%, #EEF5F0 100%);
  color: #0F1A14;
  font-family: var(--font-display);
}
.island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px; border-radius: 20px; background: #000; z-index: 5;
}
.status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 26px 0; font-size: 13px; font-weight: 600; color: #0F1A14;
}
.status .icons { display: inline-flex; gap: 5px; align-items: center; }
.status .icons svg { width: 16px; height: 12px; }

.app-header { padding: 26px 22px 0; display: flex; justify-content: space-between; align-items: flex-end; }
.app-header .hi { font-size: 13px; color: #55605A; font-weight: 500; font-family: var(--font-body); }
.app-header .title { font-size: 26px; font-weight: 800; letter-spacing: -0.03em; margin-top: 2px; }
.app-header .avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--blush));
  display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 14px;
  box-shadow: 0 6px 14px -6px rgba(0,0,0,0.4);
}

.ring-card {
  margin: 18px 18px 0;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(160deg, #2F8E5F, #1F6B47);
  color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 40px -20px rgba(31,107,71,0.8);
}
.ring-card::after {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  right: -80px; top: -90px; background: radial-gradient(circle, rgba(255,255,255,0.22), transparent 65%);
}
.ring-row { display: flex; align-items: center; gap: 16px; }
.ring { position: relative; width: 116px; height: 116px; flex: none; }
.ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring circle { fill: none; stroke-width: 10; stroke-linecap: round; }
.ring .track { stroke: rgba(255,255,255,0.2); }
.ring .prog { stroke: #fff; stroke-dasharray: 314; stroke-dashoffset: 314; transition: stroke-dashoffset 2.2s var(--ease-out); }
.ring .ic { position: absolute; inset: 0; display: grid; place-items: center; }
.ring .ic svg { width: 30px; height: 30px; transform: none; }
.ring-txt .label { font-size: 12px; opacity: 0.85; font-weight: 500; font-family: var(--font-body); letter-spacing: 0.02em; }
.ring-txt .num { font-size: 36px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-top: 4px; font-variant-numeric: tabular-nums; }
.ring-txt .goal { font-size: 12px; opacity: 0.8; margin-top: 6px; font-family: var(--font-body); }
.ring-txt .chip {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 10px;
  padding: 4px 9px; border-radius: 999px; background: rgba(255,255,255,0.18);
  font-size: 11px; font-weight: 700; font-family: var(--font-body); color: #fff; border: 0;
}
.ring-txt .chip svg { width: 12px; height: 12px; color: #fff; }

.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 12px 18px 0; }
.metric {
  background: #fff; border-radius: 18px; padding: 12px 12px 10px;
  box-shadow: 0 10px 24px -18px rgba(0,0,0,0.35);
}
.metric .mi { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: #fff; }
.metric .mi svg { width: 15px; height: 15px; }
.metric .mv { font-size: 17px; font-weight: 800; margin-top: 8px; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.metric .mv small { font-size: 11px; font-weight: 600; color: #55605A; margin-left: 2px; }
.metric .ml { font-size: 10.5px; color: #55605A; font-family: var(--font-body); font-weight: 500; margin-top: 1px; }

.live {
  margin: 12px 18px 0; padding: 12px 14px; background: #fff; border-radius: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  box-shadow: 0 10px 24px -18px rgba(0,0,0,0.35);
}
.live .lt { font-size: 12.5px; font-weight: 700; }
.live .ls { font-size: 11px; color: #55605A; font-family: var(--font-body); }
.live .avatars span { width: 24px; height: 24px; border-color: #fff; font-size: 10px; }
.live .ldot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; margin-right: 5px; box-shadow: 0 0 0 3px rgba(79,171,122,0.2); }

.tabbar {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 78px; padding: 12px 18px 22px;
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.05);
}
.tabbar div { display: grid; place-items: center; gap: 3px; color: #8B958E; font-size: 9.5px; font-weight: 600; font-family: var(--font-body); }
.tabbar div svg { width: 22px; height: 22px; }
.tabbar div.on { color: var(--green-deep); }

/* Havada süzülen kartlar */
.float {
  position: absolute;
  border-radius: 18px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  color: var(--text);
  transform: translateZ(80px);
  animation: floaty 7s ease-in-out infinite;
  z-index: 3;
}
.float .fi { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.float .fi svg { width: 20px; height: 20px; }
.float .ft { font-weight: 700; font-family: var(--font-display); font-size: 14px; letter-spacing: -0.01em; }
.float .fs { color: var(--text-2); font-size: 12px; margin-top: 1px; }
.float.f1 { top: 2%; left: -12%; animation-delay: -1s; }
.float.f2 { top: 40%; right: -14%; animation-delay: -3.5s; }
.float.f3 { bottom: -3%; left: -14%; animation-delay: -5s; } /* telefonun alt kenarına biner, tab çubuğunu kapatmaz */
@keyframes floaty { 0%, 100% { transform: translateZ(80px) translateY(0); } 50% { transform: translateZ(80px) translateY(-14px); } }

.duel-bar { display: flex; flex-direction: column; gap: 4px; min-width: 120px; }
.duel-bar .row { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-2); }
.duel-bar .row b { color: var(--text); min-width: 34px; }
.duel-bar .bar { flex: 1; height: 5px; border-radius: 4px; background: rgba(255,255,255,0.1); overflow: hidden; }
.duel-bar .bar i { display: block; height: 100%; border-radius: 4px; width: 0; transition: width 1.6s var(--ease-out) 1.4s; }
.hero-visual.go .duel-bar .bar i { width: var(--w); }
.hero-visual.go .ring .prog { stroke-dashoffset: 40; }

.hero-glow {
  position: absolute; left: 50%; top: 55%; width: min(520px, 90vw); height: min(520px, 90vw);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(79,171,122,0.35), transparent 60%);
  filter: blur(40px); z-index: 0; pointer-events: none;
}

.scroll-hint {
  /* Metin sütunuyla hizalı; ortadaki Adımo kartıyla çakışmaz */
  position: absolute; left: max(24px, calc(50% - var(--container) / 2)); bottom: 14px;
  color: var(--text-3); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  opacity: 0; animation: fade 1s 1.8s forwards;
}
.scroll-hint i { width: 1px; height: 36px; background: linear-gradient(var(--green-bright), transparent); animation: hint 1.8s ease-in-out infinite; }
@keyframes hint { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
  padding: 26px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; gap: 12px; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--text-2); white-space: nowrap;
}
.chip svg { width: 16px; height: 16px; color: var(--green-bright); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Stats
   -------------------------------------------------------------------------- */

.stats { padding: 96px 0 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  padding: 28px 26px; border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.stat::after {
  content: ""; position: absolute; inset: auto -30% -60% auto; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79,171,122,0.25), transparent 65%); pointer-events: none;
}
.stat .n { font-family: var(--font-display); font-size: clamp(40px, 4vw, 56px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.stat .n sup { font-size: 0.5em; vertical-align: super; margin-left: 2px; color: var(--green-bright); }
.stat .l { color: var(--text-2); margin-top: 10px; font-size: 15px; }

/* --------------------------------------------------------------------------
   Bento — özellikler
   -------------------------------------------------------------------------- */

.features { padding: 96px 0; }
.bento {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(320px, auto);
  gap: 16px;
}
.card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  transition: transform 400ms var(--ease-out), border-color 300ms, box-shadow 400ms;
  cursor: default;
  isolation: isolate;
}
.card::before {
  /* fare parlaması */
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 0;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%), rgba(140,219,173,0.12), transparent 45%);
  opacity: 0; transition: opacity 400ms;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 40px 80px -40px rgba(0,0,0,0.8); }
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card h3 { font-size: 22px; letter-spacing: -0.02em; margin-top: 14px; }
.card p { color: var(--text-2); font-size: 15px; margin-top: 8px; max-width: 42ch; }
.card .icon {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(79,171,122,0.14); color: var(--green-bright); border: 1px solid rgba(140,219,173,0.2);
}
.card .icon svg { width: 22px; height: 22px; }
.card .art { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
/* Sağda illüstrasyon taşıyan kartlarda metin sola sığar */
.card.side > h3, .card.side > p { max-width: 52%; }

.c-span-3 { grid-column: span 3; }
.c-span-2 { grid-column: span 2; }
.c-span-4 { grid-column: span 4; }
.c-row-2 { grid-row: span 2; }

/* Kart illüstrasyonları (saf CSS) */
.art-map {
  background:
    radial-gradient(circle at 70% 30%, rgba(92,181,189,0.25), transparent 40%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 28px);
}
.art-map svg { position: absolute; right: 6%; top: 8%; width: 55%; height: auto; overflow: visible; }
.art-map path.route { fill: none; stroke: var(--green-bright); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 600; stroke-dashoffset: 600; filter: drop-shadow(0 0 8px rgba(140,219,173,0.6)); }
.card.in .art-map path.route { animation: draw 2.6s var(--ease-out) 300ms forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.art-map .pin { fill: var(--amber); }
.art-map .pin-ring { fill: none; stroke: var(--amber); stroke-width: 2; opacity: 0.6; transform-origin: center; animation: ping 2s ease-out infinite; transform-box: fill-box; }
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(2.2); opacity: 0; } }

.art-lb { top: 24px; right: 24px; left: auto; bottom: auto; width: 44%; max-width: 300px; display: flex; flex-direction: column; gap: 8px; }
.lb-row {
  display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border); font-size: 13px;
  transform: translateX(30px); opacity: 0; transition: transform 700ms var(--ease-out), opacity 700ms;
}
.card.in .lb-row { transform: none; opacity: 1; }
.card.in .lb-row:nth-child(2) { transition-delay: 120ms; }
.card.in .lb-row:nth-child(3) { transition-delay: 240ms; }
.lb-row .rk { width: 20px; font-weight: 800; color: var(--text-3); font-family: var(--font-display); }
.lb-row .av { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--c1), var(--c2)); display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #06110B; }
.lb-row .nm { flex: 1; font-weight: 600; }
.lb-row .sc { font-variant-numeric: tabular-nums; color: var(--text-2); }
.lb-row.me { background: rgba(79,171,122,0.14); border-color: rgba(140,219,173,0.3); }
.lb-row.me .sc { color: var(--green-bright); font-weight: 700; }

.bubbles { position: absolute; right: 22px; top: 22px; width: 44%; max-width: 280px; display: flex; flex-direction: column; gap: 8px; }
.bubble {
  padding: 9px 13px; border-radius: 16px; font-size: 12.5px; max-width: 88%;
  background: rgba(255,255,255,0.07); border: 1px solid var(--border);
  transform: translateY(12px) scale(0.96); opacity: 0; transition: all 600ms var(--ease-out);
}
.bubble.me { align-self: flex-end; background: rgba(79,171,122,0.22); border-color: rgba(140,219,173,0.3); }
.card.in .bubble { transform: none; opacity: 1; }
.card.in .bubble:nth-child(2) { transition-delay: 200ms; }
.card.in .bubble:nth-child(3) { transition-delay: 400ms; }
.bubble .who { display: block; font-size: 10.5px; color: var(--text-3); font-weight: 600; margin-bottom: 2px; letter-spacing: 0.02em; }

.pet-scene { position: absolute; right: 20px; top: 20px; width: 150px; height: 150px; }
.xp-ring { position: absolute; inset: 0; }
.xp-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.xp-ring circle { fill: none; stroke-width: 8; stroke-linecap: round; }
.xp-ring .t { stroke: rgba(255,255,255,0.08); }
.xp-ring .p { stroke: url(#xpGrad); stroke-dasharray: 440; stroke-dashoffset: 440; transition: stroke-dashoffset 2s var(--ease-out) 300ms; }
.card.in .xp-ring .p { stroke-dashoffset: 110; }
.pet-scene .lvl { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; font-family: var(--font-display); }
.pet-scene .lvl b { display: block; font-size: 34px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.pet-scene .lvl small { font-size: 11px; color: var(--text-2); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; }

.pulse-line { position: absolute; right: 0; left: 0; bottom: 42%; height: 90px; opacity: 0.9; }
.pulse-line svg { width: 100%; height: 100%; }
.pulse-line path { fill: none; stroke: var(--blush); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1200; stroke-dashoffset: 1200; filter: drop-shadow(0 0 6px rgba(245,158,140,0.6)); }
.card.in .pulse-line path { animation: draw 3s linear 200ms forwards; }
.health-pills { position: absolute; top: 24px; right: 24px; display: flex; gap: 8px; }
.hp { padding: 6px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700; display: inline-flex; gap: 6px; align-items: center; border: 1px solid var(--border); background: rgba(0,0,0,0.25); }
.hp i { width: 8px; height: 8px; border-radius: 50%; }

.watch { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); width: 120px; height: 146px; }
.watch .body { position: absolute; inset: 0; border-radius: 36px; background: linear-gradient(160deg, #2a302c, #0c100e); box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 30px 50px -20px rgba(0,0,0,0.9); }
.watch .face { position: absolute; inset: 8px; border-radius: 30px; background: #000; overflow: hidden; display: grid; place-items: center; }
.watch .face .rings { width: 74%; height: 74%; transform: rotate(-90deg); }
.watch .face circle { fill: none; stroke-width: 9; stroke-linecap: round; stroke-dasharray: 300; stroke-dashoffset: 300; transition: stroke-dashoffset 1.8s var(--ease-out); }
.card.in .watch .face circle.r1 { stroke-dashoffset: 30; }
.card.in .watch .face circle.r2 { stroke-dashoffset: 90; transition-delay: 150ms; }
.card.in .watch .face circle.r3 { stroke-dashoffset: 150; transition-delay: 300ms; }
.watch .crown { position: absolute; right: -6px; top: 36px; width: 6px; height: 22px; border-radius: 3px; background: #3a423d; }
.watch .band { position: absolute; left: 30px; right: 30px; height: 60px; background: linear-gradient(#1c2320, #0e1210); }
.watch .band.top { bottom: 100%; border-radius: 14px 14px 0 0; }
.watch .band.bot { top: 100%; border-radius: 0 0 14px 14px; }

/* --------------------------------------------------------------------------
   Adımo — AI koç
   -------------------------------------------------------------------------- */

.coach { padding: 96px 0; }
.coach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.coach-list { margin-top: 32px; display: grid; gap: 14px; }
.coach-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-2); font-size: 16px; }
.coach-list li svg { width: 22px; height: 22px; flex: none; color: var(--green-bright); margin-top: 2px; }
.coach-list li strong { color: var(--text); font-weight: 600; }

.chat {
  border-radius: var(--radius-xl);
  padding: 22px;
  position: relative;
  min-height: 460px;
  display: flex; flex-direction: column; gap: 12px;
}
.chat-head { display: flex; align-items: center; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.chat-head .orb {
  width: 42px; height: 42px; border-radius: 50%;
  background: conic-gradient(from 180deg, var(--mint), var(--green), var(--teal), var(--mint));
  animation: spin 6s linear infinite;
  box-shadow: 0 0 30px -6px rgba(79,171,122,0.9);
  position: relative;
}
.chat-head .orb::after { content: ""; position: absolute; inset: 4px; border-radius: 50%; background: #0E1310; }
@keyframes spin { to { transform: rotate(360deg); } }
.chat-head b { font-family: var(--font-display); font-size: 17px; }
.chat-head span { display: block; font-size: 12px; color: var(--green-bright); font-weight: 600; }

.msg {
  max-width: 82%; padding: 12px 16px; border-radius: 18px; font-size: 15px; line-height: 1.5;
  opacity: 0; transform: translateY(10px); transition: all 600ms var(--ease-out);
  background: var(--surface-2); border: 1px solid var(--border);
}
.msg.user { align-self: flex-end; background: rgba(79,171,122,0.2); border-color: rgba(140,219,173,0.3); border-bottom-right-radius: 6px; }
.msg.bot { align-self: flex-start; border-bottom-left-radius: 6px; }
.msg.show { opacity: 1; transform: none; }
.msg .mini {
  margin-top: 10px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.msg .mini div { background: rgba(0,0,0,0.3); border-radius: 12px; padding: 8px 10px; font-size: 12px; color: var(--text-2); }
.msg .mini b { display: block; color: var(--text); font-size: 15px; font-family: var(--font-display); }
.typing { display: inline-flex; gap: 4px; padding: 6px 2px; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--text-2); animation: bounce 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: 0.15s; } .typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-5px); opacity: 1; } }

/* --------------------------------------------------------------------------
   Ekran görüntüleri
   -------------------------------------------------------------------------- */

.shots { padding: 96px 0 40px; overflow: hidden; }
.shots-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.shots-nav { display: flex; gap: 8px; }
.shots-nav button {
  width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--border);
  transition: background-color 200ms, border-color 200ms, transform 200ms;
}
.shots-nav button:hover { background: var(--surface-2); border-color: var(--border-strong); }
.shots-nav button svg { width: 20px; height: 20px; }

.shots-track {
  margin-top: 40px;
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0 30px;
  scrollbar-width: none;
  cursor: grab;
  /* konteyner dışına taşır, sağ/sol nefes */
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  padding-left: max(24px, calc(50vw - var(--container) / 2));
  padding-right: max(24px, calc(50vw - var(--container) / 2));
}
.shots-track::-webkit-scrollbar { display: none; }
.shots-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.shot {
  flex: none; width: 272px; aspect-ratio: 1287 / 2796;
  border-radius: 28px; overflow: hidden; scroll-snap-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px -40px rgba(0,0,0,0.9);
  transition: transform 500ms var(--ease-out), box-shadow 500ms;
  background: #1F6B47;
}
.shot:hover { transform: translateY(-8px); box-shadow: 0 60px 100px -40px rgba(79,171,122,0.5); }
.shot img { width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none; }

/* --------------------------------------------------------------------------
   Topluluk
   -------------------------------------------------------------------------- */

.community { padding: 96px 0; }
.community-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.pillar { padding: 30px; border-radius: var(--radius-lg); min-height: 260px; display: flex; flex-direction: column; }
.pillar .big { font-family: var(--font-display); font-size: 48px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.pillar h3 { font-size: 20px; margin-top: auto; padding-top: 24px; }
.pillar p { color: var(--text-2); font-size: 15px; margin-top: 8px; }
.pillar .big.g { color: var(--green-bright); }
.pillar .big.a { color: var(--amber); }
.pillar .big.t { color: var(--teal); }

/* --------------------------------------------------------------------------
   SSS
   -------------------------------------------------------------------------- */

.faq { padding: 40px 0 96px; }
.faq-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.faq-help { margin-top: 28px; }
.faq-help svg { width: 18px; height: 18px; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border-radius: var(--radius); overflow: hidden; transition: border-color 250ms, background-color 250ms; }
.faq-item[open] { border-color: rgba(140,219,173,0.3); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--green-bright); outline-offset: -4px; border-radius: var(--radius); }
.faq-item summary i {
  position: relative; flex: none; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(79,171,122,0.14); border: 1px solid rgba(140,219,173,0.2);
  transition: transform 350ms var(--ease-out), background-color 250ms;
}
.faq-item summary i::before, .faq-item summary i::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--green-bright); border-radius: 2px;
  transform: translate(-50%, -50%);
}
.faq-item summary i::before { width: 12px; height: 2px; }
.faq-item summary i::after { width: 2px; height: 12px; transition: transform 350ms var(--ease-out); }
.faq-item[open] summary i { background: rgba(79,171,122,0.3); }
.faq-item[open] summary i::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { padding: 0 20px 20px; color: var(--text-2); font-size: 15px; line-height: 1.6; max-width: 60ch; }
.faq-a p { animation: fade 400ms var(--ease-out); }

/* --------------------------------------------------------------------------
   İndir — CTA
   -------------------------------------------------------------------------- */

.download { padding: 60px 0 120px; }
.cta-box {
  position: relative;
  border-radius: 40px;
  padding: clamp(40px, 6vw, 88px) clamp(28px, 5vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(140,219,173,0.35), transparent 60%),
    radial-gradient(600px 400px at 90% 100%, rgba(92,181,189,0.3), transparent 60%),
    linear-gradient(160deg, #2F8E5F, #1F6B47 60%, #174F35);
  color: #fff;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center;
  box-shadow: 0 60px 120px -50px rgba(79,171,122,0.6);
}
.cta-box::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 80% at 100% 50%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 100% 50%, #000, transparent 70%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(34px, 4.6vw, 64px); letter-spacing: -0.03em; }
.cta-box p { margin-top: 16px; font-size: 18px; color: rgba(255,255,255,0.82); max-width: 48ch; }
.cta-actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.cta-box .store-badge { background: rgba(0,0,0,0.35); border-color: rgba(255,255,255,0.18); }
.cta-box .store-badge:hover { background: rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.4); }
.cta-box .store-badge small { color: rgba(255,255,255,0.7); }
.qr-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; justify-self: end; }
.qr {
  width: 200px; height: 200px; padding: 14px; border-radius: 24px; background: #fff;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}
.qr img, .qr svg { width: 100%; height: 100%; }
.qr-wrap span { font-size: 13px; color: rgba(255,255,255,0.8); text-align: center; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer { border-top: 1px solid var(--border); padding: 56px 0 40px; color: var(--text-2); font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer .brand { color: var(--text); }
.footer p { margin-top: 14px; max-width: 34ch; }
.footer h4 { color: var(--text); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; font-weight: 700; }
.footer li { margin-top: 10px; }
.footer a { transition: color 200ms; }
.footer a:hover { color: var(--green-bright); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--text-3); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1440px) {
  /* Sağdaki düello kartı görünüm kenarında kesilmesin */
  .float.f2 { right: -5%; }
}

@media (max-width: 1100px) {
  .hero-grid { gap: 24px; }
  .phone { width: 290px; }
  .float.f2 { right: -2%; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .c-span-3, .c-span-2, .c-span-4 { grid-column: span 1; }
  .c-row-2 { grid-row: span 1; }
}

@media (max-width: 960px) {
  .nav-links, .nav .btn-primary, .nav-signin { display: none; }
  .menu-btn { display: inline-flex; }
  .hero { padding-top: calc(var(--nav-h) + 40px); min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 640px; margin-top: 20px; order: 2; }
  .float.f1 { left: 0; }
  .float.f3 { left: 0; }
  .float.f2 { right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .coach-grid { grid-template-columns: 1fr; gap: 40px; }
  .community-grid { grid-template-columns: 1fr; }
  .cta-box { grid-template-columns: 1fr; }
  .qr-wrap { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .scroll-hint { display: none; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .card.side > h3, .card.side > p { max-width: 100%; }
  .card.side .art-lb, .card.side .bubbles { position: relative; width: 100%; max-width: none; top: 0; right: 0; margin-bottom: 18px; }
  .card.side .art { position: relative; inset: auto; }
  .card.side .pet-scene, .card.side .watch { position: relative; top: 0; right: 0; transform: none; margin: 0 0 18px auto; }
  .container { width: calc(100% - 32px); }
  .nav { padding-left: 12px; }
  .brand span { display: none; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .hero-badge { font-size: 12px; gap: 8px; }
  .hero-visual { height: 600px; }
  .phone { width: 260px; }
  .float { padding: 10px 12px; font-size: 12px; }
  .float .fi { width: 32px; height: 32px; }
  /* Dar ekranda kartlar telefon içeriğini kapatmasın: yalnızca Adımo kartı, alt kenarda */
  .float.f1, .float.f2 { display: none; }
  .float.f3 { bottom: 0; left: 0; }
  .faq { padding-bottom: 64px; }
  .faq-item summary { font-size: 16px; padding: 16px 16px; }
  .faq-a { padding: 0 16px 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 20px 18px; }
  .bento { grid-template-columns: 1fr; }
  .bento .card { min-height: 280px; }
  .shot { width: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .qr-wrap { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .hero h1 .word, .hero .lead, .hero-cta, .hero-meta, .hero-visual { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
