/* ============================================================
   Relato — Landing Design System
   Marka tokenları uygulama ikonundan türetildi:
   derin lacivert zemin + cyan → indigo → menekşe gradyanı.
   Accent #5B68FF = RelationshipManager AccentColor.colorset (light).
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Yüzeyler */
  --bg-base: #070b18;
  --bg-deep: #04060f;
  --bg-elevated: #0e1426;
  --bg-elevated-hi: #161d33;
  --stroke: #202844;
  --stroke-soft: rgba(233, 237, 250, 0.08);

  /* Metin */
  --text-primary: #e9edfa;
  --text-secondary: #9aa4c2;
  --text-tertiary: #626d8c;
  --text-on-accent: #ffffff;

  /* Marka */
  --cyan: #22d3ff;
  --indigo: #5b68ff;
  --indigo-hi: #7c86ff;
  --violet: #a855f7;
  --violet-hi: #c084fc;
  --mint: #34d3a3;
  --amber: #f5b544;
  --rose: #fb7185;

  /* Gradyanlar */
  --grad-brand: linear-gradient(135deg, var(--cyan) 0%, var(--indigo) 52%, var(--violet) 100%);
  --grad-brand-soft: linear-gradient(135deg, rgba(34, 211, 255, 0.16) 0%, rgba(91, 104, 255, 0.16) 52%, rgba(168, 85, 247, 0.16) 100%);
  --grad-night: linear-gradient(180deg, #0b1226 0%, var(--bg-base) 60%);
  --grad-text: linear-gradient(120deg, var(--cyan) 0%, var(--indigo-hi) 48%, var(--violet-hi) 100%);

  /* Boşluk (4/8 ritmi) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px;

  /* Yarıçap */
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-pill: 999px;

  /* Yükselti */
  --shadow-1: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-2: 0 12px 32px rgba(0, 0, 0, 0.4);
  --shadow-3: 0 28px 64px rgba(0, 0, 0, 0.5);
  --glow-indigo: 0 0 70px rgba(91, 104, 255, 0.28);
  --glow-cyan: 0 0 60px rgba(34, 211, 255, 0.22);
  --glow-violet: 0 0 60px rgba(168, 85, 247, 0.22);

  /* Hareket */
  --e-out: cubic-bezier(0.16, 1, 0.3, 1);
  --e-in: cubic-bezier(0.4, 0, 1, 1);
  --e-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 160ms;
  --t-base: 240ms;
  --t-slow: 420ms;

  /* Yerleşim */
  --container: 1160px;
  --header-h: 68px;

  --font: ui-rounded, "SF Pro Rounded", "Plus Jakarta Sans", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- 2. Reset & taban ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
svg { display: block; }

h1, h2, h3, h4 { margin: 0; line-height: 1.14; letter-spacing: -0.025em; font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--bg-elevated-hi);
  padding: 10px 18px;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

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

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

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- 3. Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background var(--t-base) var(--e-out), border-color var(--t-base), backdrop-filter var(--t-base);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(7, 11, 24, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--stroke);
}
.header .container {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand img { width: 32px; height: 32px; border-radius: 9px; box-shadow: var(--shadow-1); }

.nav {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  margin-left: auto;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
}
.nav a { transition: color var(--t-fast); }
.nav a:hover { color: var(--text-primary); }

.header-actions { display: flex; align-items: center; gap: var(--s-3); }

.lang-toggle {
  display: flex;
  border: 1px solid var(--stroke);
  border-radius: var(--r-pill);
  padding: 2px;
  background: rgba(14, 20, 38, 0.7);
}
.lang-toggle a, .lang-toggle button {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  color: var(--text-tertiary);
  transition: color var(--t-fast), background var(--t-fast);
}
.lang-toggle a.is-active, .lang-toggle button.is-active {
  color: var(--text-primary);
  background: var(--bg-elevated-hi);
}

.menu-btn { display: none; padding: 8px; border-radius: var(--r-sm); }
.menu-btn svg { width: 22px; height: 22px; }

/* ---------- 4. Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 700;
  font-size: 16px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--e-out), box-shadow var(--t-base), background var(--t-base), border-color var(--t-base);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-brand);
  color: var(--text-on-accent);
  box-shadow: 0 8px 26px rgba(91, 104, 255, 0.36);
}
.btn--primary:hover { box-shadow: 0 14px 38px rgba(91, 104, 255, 0.48); }

.btn--ghost {
  border: 1px solid var(--stroke);
  color: var(--text-primary);
  background: rgba(14, 20, 38, 0.5);
}
.btn--ghost:hover { border-color: var(--indigo); background: var(--bg-elevated-hi); }

.btn--sm { font-size: 14px; padding: 9px 17px; }
.btn--lg { font-size: 17px; padding: 16px 30px; }
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

/* App Store rozeti */
.appstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #05070f;
  padding: 11px 22px 11px 18px;
  border-radius: 15px;
  font-weight: 700;
  transition: transform var(--t-fast) var(--e-out), box-shadow var(--t-base);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.42);
}
.appstore-btn:hover { transform: translateY(-2px) scale(1.015); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5); }
.appstore-btn svg { width: 27px; height: 27px; flex-shrink: 0; }
.appstore-btn .as-lines { display: flex; flex-direction: column; line-height: 1.14; text-align: left; }
.appstore-btn .as-small { font-size: 10.5px; font-weight: 600; opacity: 0.72; letter-spacing: 0.02em; }
.appstore-btn .as-big { font-size: 17.5px; font-weight: 800; letter-spacing: -0.02em; }

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 var(--s-9);
  overflow: hidden;
  background: var(--grad-night);
}

#constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -160px;
  width: 900px;
  height: 620px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(91, 104, 255, 0.3) 0%, rgba(34, 211, 255, 0.09) 42%, transparent 72%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: var(--s-8);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 255, 0.28);
  background: rgba(34, 211, 255, 0.07);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-5);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: breathe 2.6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.42; transform: scale(0.76); }
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  letter-spacing: -0.035em;
  margin-bottom: var(--s-5);
}
.hero h1 .line { display: block; }

.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-secondary);
  max-width: 30em;
  margin-bottom: var(--s-6);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-bottom: var(--s-5);
}

.hero-meta {
  display: flex;
  gap: var(--s-5);
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 600;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 15px; height: 15px; color: var(--mint); }

/* ---------- 6. Telefon çerçevesi ---------- */
.phone {
  position: relative;
  width: 300px;
  margin: 0 auto;
  border-radius: 46px;
  padding: 11px;
  background: linear-gradient(160deg, #2b3350 0%, #121829 50%, #0a0f1e 100%);
  box-shadow: var(--shadow-3), var(--glow-indigo), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.phone::before {
  content: "";
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 24px;
  background: #05070f;
  border-radius: var(--r-pill);
  z-index: 3;
}
.phone-screen {
  position: relative;
  border-radius: 36px;
  background: #080d1a;
  overflow: hidden;
  aspect-ratio: 1206 / 2622;
}
.phone--float { animation: float 7s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Telefon çerçevesindeki gerçek uygulama ekran görüntüleri.
   Kaynak: iPhone 17 Pro simülatörü, -seedPreviewData ile örnek veri,
   status bar 9:41'e sabitlenmiş (tools/README notu). */
.scr {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity var(--t-slow) var(--e-out);
  pointer-events: none;
}
.scr.is-active { opacity: 1; }

.stars { display: inline-flex; gap: 1.5px; }
.stars svg { width: 13px; height: 13px; color: var(--amber); }
.stars svg.off { color: var(--stroke); }

.badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 2.5px 7px;
  border-radius: var(--r-pill);
  vertical-align: middle;
}
.badge--pro { background: rgba(245, 181, 68, 0.16); color: var(--amber); }

/* ---------- 7. Bölümler ---------- */
.section { padding: var(--s-9) 0; position: relative; }
.section--tight { padding: var(--s-8) 0; }

.section-head { max-width: 34em; margin-bottom: var(--s-8); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(29px, 3.7vw, 44px);
  margin-bottom: var(--s-4);
  letter-spacing: -0.032em;
}
.section-head p { color: var(--text-secondary); font-size: 17.5px; }

.kicker {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo-hi);
  margin-bottom: var(--s-3);
  display: block;
}

/* Problem şeridi */
.strip {
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-base));
  border-top: 1px solid var(--stroke-soft);
  border-bottom: 1px solid var(--stroke-soft);
}
.strip-quote {
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 1.28;
  max-width: 17em;
  margin: 0 auto;
  text-align: center;
}
.strip-quote em { font-style: normal; color: var(--text-tertiary); }
.strip-note {
  text-align: center;
  color: var(--text-secondary);
  margin: var(--s-5) auto 0;
  max-width: 32em;
  font-size: 17px;
}

/* Hikâye (yapışkan telefon + kaydırmalı adımlar) */
.story-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--s-8);
  align-items: start;
}
.story-sticky {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}
.story-steps { display: flex; flex-direction: column; gap: 2px; }

.step {
  padding: var(--s-6) var(--s-5);
  border-left: 2px solid var(--stroke);
  transition: border-color var(--t-slow) var(--e-out), opacity var(--t-slow);
  opacity: 0.42;
}
.step.is-active { border-left-color: var(--indigo); opacity: 1; }
.step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  background: var(--bg-elevated-hi);
  border: 1px solid var(--stroke);
  margin-bottom: var(--s-4);
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.step.is-active .step-n { background: var(--grad-brand); border-color: transparent; color: #fff; }
.step h3 { font-size: 23px; margin-bottom: var(--s-3); letter-spacing: -0.025em; }
.step p { color: var(--text-secondary); font-size: 16.5px; }

/* ---------- 8. Özellik ızgarası ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: var(--s-4);
}

.card {
  position: relative;
  background: linear-gradient(165deg, var(--bg-elevated) 0%, rgba(10, 15, 30, 0.9) 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-5);
  transition: transform var(--t-base) var(--e-out), border-color var(--t-base), box-shadow var(--t-base);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 104, 255, 0.5);
  box-shadow: var(--shadow-2);
}
.card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity var(--t-base);
}
.card:hover::after { opacity: 0.8; }

.card-icon {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--grad-brand-soft);
  border: 1px solid rgba(91, 104, 255, 0.28);
  margin-bottom: var(--s-4);
}
.card-icon svg { width: 21px; height: 21px; color: var(--indigo-hi); }
.card h3 { font-size: 18.5px; margin-bottom: var(--s-2); letter-spacing: -0.02em; }
.card p { color: var(--text-secondary); font-size: 15.5px; }

/* Öne çıkan iki sütun */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.split--rev .split-visual { order: -1; }

.feature-list { display: flex; flex-direction: column; gap: var(--s-4); margin-top: var(--s-5); }
.feature-list li { display: flex; gap: var(--s-3); align-items: flex-start; }
.feature-list svg { width: 20px; height: 20px; color: var(--mint); flex-shrink: 0; margin-top: 2px; }
.feature-list strong { display: block; font-size: 16px; font-weight: 700; }
.feature-list span { color: var(--text-secondary); font-size: 15px; }

/* KKS gösterimi */
.kks-demo {
  background: linear-gradient(165deg, var(--bg-elevated), rgba(8, 12, 26, 0.94));
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: var(--shadow-2);
}
.kks-scale { display: flex; flex-direction: column; gap: var(--s-3); }
.kks-row {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  background: rgba(7, 11, 24, 0.6);
  border: 1px solid transparent;
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base) var(--e-out);
}
.kks-row:hover { border-color: rgba(91, 104, 255, 0.4); transform: translateX(4px); }
.kks-bar { flex: 1; height: 7px; border-radius: var(--r-pill); background: var(--bg-elevated-hi); overflow: hidden; }
.kks-fill {
  height: 100%;
  border-radius: var(--r-pill);
  background: var(--grad-brand);
  width: 0;
  transition: width 1.1s var(--e-out);
}
.kks-row .stars svg { width: 13px; height: 13px; }
.kks-label { font-size: 14px; font-weight: 700; width: 8.5em; flex-shrink: 0; }
.kks-n { font-size: 13px; font-weight: 800; color: var(--text-tertiary); width: 2.2em; text-align: right; }

/* Gizlilik vurgusu */
.privacy-band {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(52, 211, 163, 0.13), transparent 58%),
    linear-gradient(180deg, var(--bg-deep), var(--bg-base));
  border-top: 1px solid var(--stroke-soft);
  border-bottom: 1px solid var(--stroke-soft);
}
.shield {
  width: 74px; height: 74px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(52, 211, 163, 0.11);
  border: 1px solid rgba(52, 211, 163, 0.3);
  margin: 0 auto var(--s-5);
  box-shadow: 0 0 50px rgba(52, 211, 163, 0.18);
}
.shield svg { width: 34px; height: 34px; color: var(--mint); }

.privacy-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-7);
  text-align: center;
}
.privacy-points h3 { font-size: 17px; margin-bottom: var(--s-2); }
.privacy-points p { color: var(--text-secondary); font-size: 15px; }

/* Personalar */
/* 6 persona: geniş ekranda tek sıra, sonra 3 → 2 → 1 sütuna iner.
   auto-fit + 190px min'de 1160px kapta 5 sütun çıkıyor ve altta yetim bir
   kart kalıyordu; kırılımlar bu yüzden elle veriliyor. */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-3);
}

@media (max-width: 1080px) { .persona-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .persona-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .persona-grid { grid-template-columns: 1fr; } }
.persona {
  padding: var(--s-5) var(--s-4);
  border-radius: var(--r-md);
  border: 1px solid var(--stroke);
  background: rgba(14, 20, 38, 0.55);
  text-align: center;
  transition: border-color var(--t-base), transform var(--t-base) var(--e-out);
}
.persona:hover { border-color: rgba(91, 104, 255, 0.5); transform: translateY(-3px); }
.persona svg { width: 24px; height: 24px; color: var(--indigo-hi); margin: 0 auto var(--s-3); }
.persona strong { display: block; font-size: 15.5px; font-weight: 700; }
.persona span { font-size: 13.5px; color: var(--text-tertiary); }

/* ---------- 9. Fiyatlandırma ---------- */
.billing-toggle {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--stroke);
  border-radius: var(--r-pill);
  background: var(--bg-elevated);
  margin: 0 auto var(--s-7);
}
.billing-toggle button {
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  color: var(--text-tertiary);
  transition: background var(--t-base), color var(--t-base);
}
.billing-toggle button.is-active { background: var(--grad-brand); color: #fff; }
.billing-toggle .save-pill {
  font-size: 11px;
  font-weight: 800;
  color: var(--mint);
  align-self: center;
  padding: 0 12px 0 6px;
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: var(--s-5);
  max-width: 760px;
  margin: 0 auto;
  align-items: stretch;
}
.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, var(--bg-elevated), rgba(8, 12, 26, 0.94));
  border: 1px solid var(--stroke);
  border-radius: var(--r-xl);
  padding: var(--s-6);
}
.plan--pro {
  border-color: rgba(91, 104, 255, 0.55);
  box-shadow: var(--glow-indigo), var(--shadow-2);
}
.plan--pro::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: var(--r-xl);
  padding: 1px;
  background: var(--grad-brand);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 15px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.plan-name { font-size: 15px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-tertiary); }
.plan-price { font-size: 42px; font-weight: 800; letter-spacing: -0.04em; margin: var(--s-3) 0 2px; }
.plan-price small { font-size: 16px; font-weight: 700; color: var(--text-tertiary); letter-spacing: 0; }
.plan-note { font-size: 13.5px; color: var(--text-tertiary); font-weight: 600; min-height: 2.6em; }
.plan ul { display: flex; flex-direction: column; gap: 11px; margin: var(--s-5) 0 var(--s-6); flex: 1; }
.plan li { display: flex; gap: 10px; font-size: 15px; align-items: flex-start; }
.plan li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2.5px; }
.plan li.yes svg { color: var(--mint); }
.plan li.no { color: var(--text-tertiary); }
.plan li.no svg { color: var(--text-tertiary); }
.plan .btn { width: 100%; }

.pricing-legal {
  max-width: 46em;
  margin: var(--s-6) auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.65;
}

/* ---------- 10. SSS ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--s-3); }
.faq-item {
  border: 1px solid var(--stroke);
  border-radius: var(--r-md);
  background: rgba(14, 20, 38, 0.55);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.faq-item[open] { border-color: rgba(91, 104, 255, 0.45); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-4) var(--s-5);
  font-size: 16.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 9px; height: 9px;
  border-right: 2px solid var(--text-tertiary);
  border-bottom: 2px solid var(--text-tertiary);
  transform: rotate(45deg);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform var(--t-base) var(--e-out);
}
.faq-item[open] summary::after { transform: rotate(-135deg); }
.faq-item .faq-a { padding: 0 var(--s-5) var(--s-5); color: var(--text-secondary); font-size: 16px; }

/* ---------- 11. Finale + Footer ---------- */
.finale {
  position: relative;
  padding: var(--s-10) 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(91, 104, 255, 0.3), transparent 62%),
    linear-gradient(180deg, var(--bg-base), var(--bg-deep));
}
.finale h2 { font-size: clamp(31px, 4.6vw, 54px); margin-bottom: var(--s-4); letter-spacing: -0.035em; }
.finale p { color: var(--text-secondary); font-size: 18px; max-width: 30em; margin: 0 auto var(--s-6); }
.finale .hero-cta { justify-content: center; }
.finale-icon {
  width: 84px; height: 84px;
  border-radius: 24px;
  margin: 0 auto var(--s-5);
  box-shadow: var(--shadow-3), var(--glow-indigo);
}

.footer {
  padding: var(--s-8) 0 var(--s-6);
  border-top: 1px solid var(--stroke);
  background: var(--bg-deep);
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}
.footer h4 {
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--s-4);
  font-weight: 800;
}
.footer li { margin-bottom: 10px; }
.footer a { color: var(--text-secondary); transition: color var(--t-fast); }
.footer a:hover { color: var(--text-primary); }
.footer-about { color: var(--text-secondary); max-width: 26em; font-size: 15px; margin-top: var(--s-3); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
  padding-top: var(--s-5);
  border-top: 1px solid var(--stroke);
  color: var(--text-tertiary);
  font-size: 13.5px;
}

/* ---------- 12. Yasal / içerik sayfaları ---------- */
.legal {
  padding: calc(var(--header-h) + var(--s-8)) 0 var(--s-9);
  max-width: 820px;
  margin: 0 auto;
}
.legal h1 { font-size: clamp(30px, 4vw, 42px); margin-bottom: var(--s-3); }
.legal .updated { color: var(--text-tertiary); font-size: 14px; margin-bottom: var(--s-7); }
.legal h2 {
  font-size: 22px;
  margin: var(--s-7) 0 var(--s-4);
  padding-top: var(--s-5);
  border-top: 1px solid var(--stroke);
  letter-spacing: -0.02em;
}
.legal h3 { font-size: 17px; margin: var(--s-5) 0 var(--s-2); }
.legal p { color: var(--text-secondary); margin-bottom: var(--s-4); }
.legal ul { margin: 0 0 var(--s-4) var(--s-5); }
.legal li { list-style: disc; color: var(--text-secondary); margin-bottom: var(--s-2); }
.legal a { color: var(--indigo-hi); text-decoration: underline; text-underline-offset: 3px; }
.legal strong { color: var(--text-primary); }
.legal table { width: 100%; border-collapse: collapse; margin-bottom: var(--s-5); font-size: 15px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border: 1px solid var(--stroke); color: var(--text-secondary); }
.legal th { color: var(--text-primary); background: var(--bg-elevated); font-weight: 700; }

.breadcrumb { font-size: 13.5px; color: var(--text-tertiary); margin-bottom: var(--s-5); }
.breadcrumb a { color: var(--text-tertiary); }
.breadcrumb a:hover { color: var(--text-secondary); }

[data-lang-block] { display: none; }
[data-lang-block].is-shown { display: block; }

/* ---------- 13. 404 ---------- */
.notfound {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--s-6);
}
.notfound .code {
  font-size: clamp(72px, 16vw, 152px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  margin-bottom: var(--s-4);
}

/* ---------- 14. Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--e-out), transform 700ms var(--e-out);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-scale {
  opacity: 0;
  transform: scale(0.955) translateY(18px);
  transition: opacity 800ms var(--e-out), transform 800ms var(--e-out);
  transition-delay: var(--d, 0ms);
}
.reveal-scale.is-visible { opacity: 1; transform: none; }

/* ---------- 15. Duyarlılık ---------- */
@media (max-width: 980px) {
  .hero-grid, .story-grid, .split { grid-template-columns: 1fr; }
  .split--rev .split-visual { order: 0; }
  .hero-visual { margin-top: var(--s-7); }
  .story-sticky { position: static; margin-bottom: var(--s-6); }
  .step { opacity: 1; border-left-color: var(--indigo); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7, 11, 24, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--stroke);
    padding: var(--s-3) var(--s-5) var(--s-5);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-base), transform var(--t-base) var(--e-out);
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--stroke-soft); font-size: 16px; }
  .menu-btn { display: block; order: 3; }
  .header-actions .btn { display: none; }
  .section { padding: var(--s-8) 0; }
  .hero { padding-top: calc(var(--header-h) + 44px); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .appstore-btn, .hero-cta .btn { justify-content: center; }
  .call-actions { gap: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; }
  .phone--float { animation: none; }
}

@media print {
  .header, .finale, #constellation, .phone { display: none; }
  body { background: #fff; color: #000; }
}

/* Ekran görüntüsü altyazısı — görselin hangi ekran olduğunu dürüstçe söyler */
.shot-caption {
  margin-top: var(--s-4);
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-tertiary);
}
