/* FlyMode landing — modern SaaS redesign (2026-05-24)
 * Linear/Vercel inspired: radial gradient hero, glow, glassmorphism, large typography.
 * Dark-first (light mode opsiyonel). App tokens.ts ile renk uyumlu.
 */

:root {
  --violet: #5700ff;
  --violet-soft: #8b4dff;
  --pink: #ff0049;
  --cyan: #00c3ff;
  --blue: #003dd6;

  --bg: #06030c;
  --bg-soft: #0a0612;
  --surface: rgba(21, 16, 30, 0.6);
  --surface-strong: rgba(29, 23, 41, 0.85);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --subtle: rgba(255, 255, 255, 0.38);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 500;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* ─── Animated mesh background ────────────────────────── */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(87, 0, 255, 0.45) 0%, transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(255, 0, 73, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(0, 195, 255, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 0% 70%, rgba(87, 0, 255, 0.3) 0%, transparent 40%);
  z-index: -2;
  animation: mesh-drift 24s ease-in-out infinite alternate;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, var(--bg) 80%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: -1;
  pointer-events: none;
}

@keyframes mesh-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 20px) scale(1.05);
  }
  100% {
    transform: translate(20px, -10px) scale(1.02);
  }
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

a:hover {
  opacity: 0.8;
}

/* ─── Layout ─────────────────────────────────────────── */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

main {
  flex: 1;
}

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

.site-header {
  padding: 24px 0;
  position: relative;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header .logo {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 16px rgba(87, 0, 255, 0.5));
}

.site-header .wordmark {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.4px;
  color: var(--text);
}

.site-header .wordmark .light {
  font-weight: 400;
  color: var(--muted);
}

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

.hero {
  text-align: center;
  padding: 100px 0 80px;
  position: relative;
}

.hero .logo-big {
  width: 160px;
  height: 160px;
  margin: 0 auto 36px;
  display: block;
  filter: drop-shadow(0 0 60px rgba(87, 0, 255, 0.6)) drop-shadow(0 0 24px rgba(255, 0, 73, 0.3));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(87, 0, 255, 0.12);
  border: 1px solid rgba(87, 0, 255, 0.3);
  font-size: 13px;
  font-weight: 600;
  color: var(--violet-soft);
  margin-bottom: 32px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero .pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--violet-soft);
  box-shadow: 0 0 12px var(--violet-soft);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(44px, 9vw, 88px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.95;
  margin-bottom: 24px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero .lead {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.55;
}

.hero .cta-row {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: linear-gradient(135deg, var(--violet) 0%, #7a2dff 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 0 0 1px rgba(87, 0, 255, 0.6),
    0 12px 40px -8px rgba(87, 0, 255, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(87, 0, 255, 0.8),
    0 16px 50px -8px rgba(87, 0, 255, 0.8),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  opacity: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  border-radius: 14px;
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  opacity: 1;
}

/* ─── Phone showcase (3 telefon yan yana, mockup tarzı) ─ */

.showcase {
  padding: 80px 0 60px;
}

.showcase-head {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-head h2 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.showcase-head .accent {
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.showcase-head p {
  color: var(--muted);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
}

.phones {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: start;
  justify-content: center;
  margin: 0 auto;
  max-width: 1100px;
}

@media (min-width: 760px) {
  .phones {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.phone {
  position: relative;
  margin: 0 auto;
  width: 260px;
  height: 540px;
  background: #0a0612;
  border-radius: 44px;
  padding: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    0 0 80px -20px var(--phone-glow, rgba(87, 0, 255, 0.4));
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 120px -20px var(--phone-glow, rgba(87, 0, 255, 0.6));
}

.phone[data-mode='flight'] { --phone-glow: rgba(87, 0, 255, 0.5); }
.phone[data-mode='catch'] { --phone-glow: rgba(255, 0, 73, 0.5); }
.phone[data-mode='where'] { --phone-glow: rgba(0, 195, 255, 0.5); }
.phone[data-mode='pro'] { --phone-glow: rgba(255, 209, 0, 0.5); }

.phone .notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0a0612;
  border-radius: 32px;
  padding: 36px 14px 86px; /* alt padding: dock yüksekliği + gap */
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

/* App header (mod adı + ikon) */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  margin-bottom: 4px;
}

.app-header .title-block .small {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.2px;
  font-weight: 600;
}

.app-header .title-block .big {
  font-size: 16px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-top: 1px;
}

.app-header .icon-btn {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: #15101e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.app-header .icon-btn .dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pink);
  border: 1.5px solid #15101e;
}

/* Hero card */
.app-card {
  background: #15101e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.airline-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.airline-logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #d50032, #b8002a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.airline-meta .code {
  font-size: 9px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.airline-meta .status {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 1px;
}

.airline-meta .status::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #3DC97B;
  box-shadow: 0 0 6px #3DC97B;
}

.route-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  padding: 2px 0;
  position: relative;
}

.route-side .iata {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  line-height: 1;
}

.route-side .city {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  font-weight: 500;
}

.route-side .time {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-top: 6px;
  letter-spacing: -0.3px;
}

.route-side.right { text-align: right; }

.route-arc {
  position: absolute;
  top: 4px;
  left: 50px;
  right: 50px;
  height: 16px;
  pointer-events: none;
}

.metrics-row {
  display: flex;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.metric {
  flex: 1;
}

.metric .k {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.8px;
  font-weight: 600;
}

.metric .v {
  font-size: 10px;
  color: #fff;
  font-weight: 700;
  margin-top: 2px;
}

/* ─── Catch (Yetişme) specific ─────────────── */
.catch-leave {
  background: linear-gradient(135deg, rgba(255, 0, 73, 0.18), rgba(255, 0, 73, 0.06));
  border: 1px solid rgba(255, 0, 73, 0.35);
  border-radius: 14px;
  padding: 14px;
  text-align: center;
}

.catch-leave .label {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.4px;
  font-weight: 700;
}

.catch-leave .time {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #fff;
  line-height: 1;
  margin: 6px 0;
  background: linear-gradient(135deg, #fff, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.catch-leave .sub {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tl-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tl-time {
  font-size: 9px;
  color: #fff;
  font-weight: 700;
  min-width: 30px;
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--tl-bg, #ff0049);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: #fff;
}

.tl-dot.bus { background: #00AD2D; }
.tl-dot.metro { background: #002BB5; }
.tl-dot.taxi { background: #FFF200; color: #000; }
.tl-dot.walk { background: rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.7); }
.tl-dot.airport { background: var(--cyan); }

.tl-text {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  font-weight: 600;
}

.tl-text .sub {
  display: block;
  font-size: 7px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  margin-top: 1px;
}

/* ─── Map mock (Yetişme + Uçağım Nerede ortak — arka plan harita) ─── */
.map-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0, 195, 255, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(87, 0, 255, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0c1735 0%, #0a0c20 100%);
  overflow: hidden;
  z-index: 0;
}

/* Harita pattern — yollar + boş alanlar (subtle grid + radial roads) */
.map-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    /* Yollar — diagonal stripes */
    linear-gradient(135deg, transparent 48%, rgba(255, 255, 255, 0.05) 49%, rgba(255, 255, 255, 0.05) 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.04) 49%, rgba(255, 255, 255, 0.04) 51%, transparent 52%),
    /* Grid pattern */
    linear-gradient(rgba(0, 195, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 195, 255, 0.06) 1px, transparent 1px);
  background-size: 80px 80px, 100px 100px, 32px 32px, 32px 32px;
  opacity: 0.7;
}

/* Harita üzerinde "şehir bloğu" mock (random pozisyonda blob'lar) */
.map-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 30px at 20% 60%, rgba(255, 255, 255, 0.04) 0%, transparent 100%),
    radial-gradient(circle 24px at 65% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 100%),
    radial-gradient(circle 36px at 85% 75%, rgba(255, 255, 255, 0.04) 0%, transparent 100%),
    radial-gradient(circle 20px at 40% 85%, rgba(255, 255, 255, 0.04) 0%, transparent 100%),
    radial-gradient(circle 28px at 15% 25%, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
}

.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

/* ─── Pro Paywall ekranı (FlyMode Pro tanıtım kartı) ─── */
.phone[data-mode='pro'] .phone-screen {
  background: linear-gradient(180deg, #0a0612 0%, #15101e 100%);
  padding: 30px 14px 86px;
  gap: 12px;
}

.pro-header {
  text-align: center;
  padding-top: 6px;
}

.pro-header .crown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(255, 209, 0, 0.18), rgba(255, 130, 0, 0.18));
  border: 1px solid rgba(255, 209, 0, 0.4);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  color: #FFD100;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pro-header h2 {
  font-size: 19px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 4px;
}

.pro-header h2 .accent {
  background: linear-gradient(135deg, #FFD100 0%, #FF6B00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pro-header p {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  line-height: 1.4;
}

.pro-features {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0 2px;
}

.pro-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.pro-feature .pf-ico {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.pro-feature[data-c='violet'] .pf-ico { background: rgba(87, 0, 255, 0.18); color: #b48cff; }
.pro-feature[data-c='pink'] .pf-ico { background: rgba(255, 0, 73, 0.18); color: #ff6090; }
.pro-feature[data-c='cyan'] .pf-ico { background: rgba(0, 195, 255, 0.18); color: #5ed4ff; }
.pro-feature[data-c='blue'] .pf-ico { background: rgba(0, 61, 214, 0.22); color: #6f93ff; }
.pro-feature[data-c='gold'] .pf-ico { background: rgba(255, 209, 0, 0.18); color: #FFD100; }

.pro-feature .pf-text {
  flex: 1;
}

.pro-feature .pf-title {
  font-size: 10px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pro-feature .pf-badge {
  font-size: 7px;
  padding: 1px 5px;
  border-radius: 4px;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.pro-feature .pf-desc {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  line-height: 1.4;
  margin-top: 1px;
}

/* Plan kartları (yıllık + aylık) */
.pro-plans {
  display: flex;
  gap: 7px;
  margin-top: auto;
}

.pro-plan {
  flex: 1;
  background: rgba(20, 18, 28, 0.7);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  position: relative;
}

.pro-plan.selected {
  border-color: var(--violet);
  background: linear-gradient(180deg, rgba(87, 0, 255, 0.18), rgba(87, 0, 255, 0.05));
  box-shadow: 0 0 0 1px var(--violet), 0 8px 20px -6px rgba(87, 0, 255, 0.5);
}

.pro-plan .pp-best {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 7px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.pro-plan .pp-label {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pro-plan .pp-price {
  font-size: 18px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-top: 4px;
  line-height: 1;
}

.pro-plan .pp-sub {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  margin-top: 3px;
}

.pro-cta {
  background: linear-gradient(135deg, var(--violet), #7a2dff);
  color: #fff;
  padding: 11px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 20px -6px var(--violet);
}

/* ─── Where (Uçağım) specific — full map background ──── */
.phone[data-mode='where'] .phone-screen {
  padding: 0;
  background: transparent;
}

.where-content {
  position: relative;
  z-index: 2;
  padding: 36px 14px 86px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  height: 100%;
}

.where-content .map-route {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.plane-marker {
  position: absolute;
  width: 32px;
  height: 32px;
  background: var(--cyan);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow:
    0 0 0 4px rgba(0, 195, 255, 0.18),
    0 0 0 10px rgba(0, 195, 255, 0.08),
    0 0 30px var(--cyan);
  animation: plane-bob 3s ease-in-out infinite;
  z-index: 3;
}

@keyframes plane-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.progress-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 18, 28, 0.88);
  border: 1px solid rgba(0, 195, 255, 0.3);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 6px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.progress-strip .pct {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
}

/* ─── Yetişme — Catch screen ile arkaplan harita ──── */
.phone[data-mode='catch'] .phone-screen {
  position: relative;
}

.catch-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Yetişme'de map bg yarım: orta bölgede (timeline altı subtle) */
.phone[data-mode='catch'] .map-bg {
  inset: 130px 0 86px 0;
  opacity: 0.35;
  border-radius: 0;
}

/* ─── Mode dock (app'teki FanDock closed state — center FMLogoMode butonu) ─ */
.mode-dock {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

/* App'teki gibi: dış container şeffaf, sadece glow shadow.
   FMLogoMode SVG kendi daire bg'sini çiziyor (rect rx=28 + beyaz F + nokta). */
.dock-fab {
  width: 56px;
  height: 56px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  filter: drop-shadow(0 6px 10px var(--dock-glow, rgba(87, 0, 255, 0.55)));
}

.phone[data-mode='flight'] .dock-fab { --dock-glow: rgba(87, 0, 255, 0.55); }
.phone[data-mode='catch'] .dock-fab { --dock-glow: rgba(255, 0, 73, 0.55); }
.phone[data-mode='where'] .dock-fab { --dock-glow: rgba(0, 195, 255, 0.55); }
.phone[data-mode='pro'] .dock-fab { --dock-glow: rgba(87, 0, 255, 0.55); }

/* FMLogoMode SVG — kendi 56×56 rect (daire) bg'sini render eder */
.dock-fab svg {
  width: 56px;
  height: 56px;
  display: block;
}

/* Telefon altı caption */
.phone-caption {
  text-align: center;
  margin-top: 22px;
}

.phone-caption .name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}

.phone-caption .desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.phone[data-mode='flight'] + .phone-caption .name { color: var(--violet-soft); }
.phone[data-mode='catch'] + .phone-caption .name { color: var(--pink); }
.phone[data-mode='where'] + .phone-caption .name { color: var(--cyan); }

.phone-wrap {
  display: flex;
  flex-direction: column;
}

/* ─── Stores (App Store + Play) ─────────────── */

.stores {
  margin-top: 60px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding-bottom: 80px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  padding: 12px 22px;
  color: var(--text);
  text-decoration: none;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0.7;
  cursor: not-allowed;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.store-badge:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.store-badge svg {
  width: 28px;
  height: 28px;
}

.store-badge .text-block {
  text-align: left;
  line-height: 1.2;
}

.store-badge .small {
  font-size: 9px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  text-transform: uppercase;
}

.store-badge .big {
  font-size: 15px;
  display: block;
  font-weight: 700;
  margin-top: 2px;
}

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

.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
  color: var(--subtle);
  font-size: 13px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-footer .links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.site-footer .links a {
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
  opacity: 0.75;
}

.site-footer .links a:hover {
  opacity: 1;
  color: var(--violet-soft);
}

.site-footer .copyright {
  letter-spacing: 0.3px;
}

.site-footer .support-mail {
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--muted);
}

.site-footer .support-mail a {
  color: var(--violet-soft);
  font-weight: 600;
}

.site-footer .support-mail a:hover {
  color: var(--text);
}

/* ─── Header destek butonu ────────────────────────────── */

.header-support {
  margin-left: auto;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.header-support:hover {
  border-color: var(--violet-soft);
  background: var(--surface-strong);
}

/* ─── Destek section (landing alt) ────────────────────── */

.support {
  max-width: 640px;
  margin: 40px auto 80px;
  padding: 40px 32px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.support h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: var(--text);
}

.support p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
}

.support .support-btn {
  display: inline-block;
}

/* ─── Legal pages (privacy / terms) ───────────────────── */

.legal-shell {
  padding: 60px 0 100px;
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface-strong);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  padding: 56px 48px;
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 600px) {
  .legal-page {
    padding: 36px 24px;
    border-radius: 22px;
  }
}

.legal-page .back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  transition: color 0.18s ease;
}

.legal-page .back-link:hover {
  color: var(--violet-soft);
  opacity: 1;
}

.legal-page h1 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 0%, var(--violet-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-page .updated {
  color: var(--subtle);
  font-size: 12px;
  margin-bottom: 40px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}

.legal-page h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 40px 0 14px;
  color: var(--text);
}

.legal-page h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text);
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 12px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page strong {
  font-weight: 700;
  color: var(--text);
}

.legal-page a {
  color: var(--cyan);
  border-bottom: 1px solid rgba(0, 195, 255, 0.3);
  padding-bottom: 1px;
  transition: border-color 0.18s ease;
}

.legal-page a:hover {
  border-color: var(--cyan);
}

/* ─── 404 ─────────────────────────────────────────────── */

.error-page {
  text-align: center;
  padding: 160px 0;
}

.error-page .code {
  font-size: clamp(96px, 18vw, 180px);
  font-weight: 800;
  letter-spacing: -6px;
  line-height: 1;
  background: linear-gradient(135deg, var(--violet) 0%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 40px rgba(87, 0, 255, 0.4));
}

.error-page p {
  color: var(--muted);
  font-size: 17px;
  margin: 24px 0 36px;
}
