/* ============================================================
   STIRPIO — inbound lead recovery · tasarım sistemi
   19 Eyl 2026 görsel yeniden yazımı. Konumlandırma aynı (Capture → Recover → Prove,
   ücretsiz snapshot, fiyat ve mekanizma adı yok). Değişen: ölçek, ritim, ürün maketleri.

   Sayfa ritmi (her bölümün ayrı bir görsel görevi var):
     hero + ürün akışı · sızıntı diyagramı · bağlı üç aşama · snapshot maketi ·
     mimari diyagram · haftalık rapor paneli · uygunluk şeridi · koyu şerit · SSS · form

   Ortak sınıflar (about/engagement/contact/legal de kullanır): .nav .btn .wrap .page
   .prose .dl .ledger .led .st .split .panel .list .admits .form .faq .foot .eyebrow .sec
   ============================================================ */

:root {
  --paper: #faf8f4;
  --paper-2: #f1ece3;
  --card: #ffffff;
  --ink: #141416;
  --ink-2: #393a40;
  --muted: #64656c;
  --rule: rgba(20, 20, 22, 0.14);
  --rule-2: rgba(20, 20, 22, 0.07);

  /* Durum renkleri VERİ üstünde kullanılır. Tonlar AA: signal 5.5:1, ok 6.5:1, blind 5.1:1 */
  --signal: #bd3d15;
  --signal-2: #9c3212;
  --signal-soft: rgba(189, 61, 21, 0.09);
  --signal-line: rgba(189, 61, 21, 0.35);
  --ok: #1d6b4a;
  --ok-soft: rgba(29, 107, 74, 0.10);
  --blind: #6e6f77;

  --dark: #131316;
  --dark-2: #1c1c21;
  --dark-ink: #f6f4ef;
  --dark-muted: #a4a4ad;
  --dark-rule: rgba(246, 244, 239, 0.14);

  --sans: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --fs-xs: 0.8rem;
  --fs-sm: 0.95rem;
  --fs-base: clamp(1.05rem, 1rem + 0.25vw, 1.15rem);
  --fs-md: clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --fs-lg: clamp(2rem, 1.35rem + 2.3vw, 3.15rem);
  --fs-xl: clamp(2.55rem, 1.7rem + 2.9vw, 3.9rem);

  --gut: clamp(1rem, 4vw, 3rem);
  --sec-y: clamp(4rem, 8vw, 7.25rem);
  --nav-h: 4.25rem;
  --wrap: 76rem;
  --radius: 8px;
  --radius-sm: 5px;
  --shadow: 0 1px 2px rgba(20, 20, 22, 0.04), 0 12px 40px -18px rgba(20, 20, 22, 0.22);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 1rem); }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}
body > main { flex: 1 0 auto; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.028em; line-height: 1.08; text-wrap: balance; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; }
/* ŞART: [hidden] her display kuralını ezer; gizli form panelleri yoksa görünür kalır. */
[hidden] { display: none !important; }

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 0.7rem 1rem; border-radius: 0 0 4px 0;
}
.skip:focus { left: 0; }

/* ---------- HAREKET ----------
   Hero: saf CSS giriş, betiksiz de görünür.
   Diğer bölümler: html.js varken .rv gizlenir, IO ya da 1.4 sn zaman aşımı açar (site.js).
   Betik yoksa html.js yok, hiçbir şey gizlenmez. */
@keyframes rise {
  from { opacity: 0; transform: translateY(0.6rem); }
  to   { opacity: 1; transform: none; }
}
.hero__copy > * { animation: rise 0.55s cubic-bezier(0.22, 0.7, 0.3, 1) both; }
.hero__copy > :nth-child(2) { animation-delay: 0.05s; }
.hero__copy > :nth-child(3) { animation-delay: 0.10s; }
.hero__copy > :nth-child(4) { animation-delay: 0.15s; }
.hero__copy > :nth-child(5) { animation-delay: 0.20s; }
.feed { animation: rise 0.6s cubic-bezier(0.22, 0.7, 0.3, 1) both; animation-delay: 0.12s; }
.feed__row { animation: rise 0.5s cubic-bezier(0.22, 0.7, 0.3, 1) both; }
.feed__row:nth-child(1) { animation-delay: 0.35s; }
.feed__row:nth-child(2) { animation-delay: 0.47s; }
.feed__row:nth-child(3) { animation-delay: 0.59s; }
.feed__row:nth-child(4) { animation-delay: 0.71s; }
.feed__row:nth-child(5) { animation-delay: 0.83s; }
.feed__row:nth-child(6) { animation-delay: 0.95s; }

html.js .rv { opacity: 0; transform: translateY(0.9rem); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.7, 0.3, 1); }
html.js .rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  html.js .rv { opacity: 1; transform: none; }
}

/* ---------- ETİKET DİLİ ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.1rem;
}
.eyebrow::before { content: "✳"; color: var(--signal); margin-right: 0.5em; }

.tag {
  display: inline-block; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.22rem 0.5rem; border-radius: 3px;
  border: 1px solid var(--rule); color: var(--muted); background: var(--card); white-space: nowrap;
}
.tag--sample { border-style: dashed; }

/* İmza sesi: Stirpio bir sınırını itiraf ediyorsa italik serif. Başka yerde serif yok. */
.admits {
  font-family: var(--serif);
  font-style: italic;
  font-size: var(--fs-md);
  line-height: 1.4;
  color: var(--ink-2);
  letter-spacing: 0;
}

/* ---------- DÜĞMELER ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font: inherit; font-weight: 600; font-size: 1rem;
  padding: 0.95rem 1.5rem; border-radius: var(--radius-sm); border: 1px solid transparent;
  text-decoration: none; cursor: pointer; line-height: 1.2;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn--primary { background: var(--signal); color: #fff; }
.btn--primary:hover { background: var(--signal-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--onDark { background: var(--dark-ink); color: var(--dark); }
.btn--onDark:hover { background: #fff; }
.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 1.8rem; font-size: 1.05rem; }
.btn[disabled] { opacity: 0.55; cursor: default; }
.nav .btn { padding: 0.7rem 1.1rem; font-size: var(--fs-sm); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 244, 0.96);
  border-bottom: 1px solid var(--rule-2);
}
.nav__in {
  min-height: var(--nav-h);
  display: flex; align-items: center; gap: 1.5rem;
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut);
}
.nav__mark {
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 0.95rem; text-decoration: none; margin-right: auto;
}
.nav__mark span { color: var(--signal); }
.nav__links { display: flex; align-items: center; gap: 1.8rem; }
.nav__links a { font-size: var(--fs-sm); color: var(--muted); text-decoration: none; transition: color 0.15s ease; }
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--ink); }
.nav__links .btn { display: none; }
.nav__cta { display: inline-flex; }
.nav__toggle { display: none; }

@media (max-width: 900px) {
  .nav__in { flex-wrap: wrap; row-gap: 0; }
  .nav__toggle {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: none; border: 1px solid var(--rule); border-radius: var(--radius-sm);
    font: inherit; font-size: var(--fs-sm); font-weight: 500;
    padding: 0.5rem 0.85rem; cursor: pointer; color: var(--ink);
  }
  .nav__links {
    display: none; order: 3; width: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    border-top: 1px solid var(--rule-2); padding-block: 0.4rem 1rem;
  }
  .nav__links a { padding: 0.8rem 0; font-size: var(--fs-base); border-bottom: 1px solid var(--rule-2); color: var(--ink); }
  .nav__links .btn { display: inline-flex; margin-top: 1rem; border-bottom: 0; color: #fff; }
  .nav.is-open .nav__links { display: flex; }
  .nav__cta { display: none; }
}

/* ---------- BÖLÜM İSKELETİ ---------- */
.sec { padding-block: var(--sec-y); }
/* 21 Eyl (Sarp): ana bölümler ekrana tam otursun; siteye girince alttaki bölümün parçası görünmesin.
   Yalnız geniş ekranda (≥ 900px); mobilde bölümler zaten uzun. Çok yüksek ekranda tavan 1000px, boşluk şişmesin. */
@media (min-width: 900px) {
  .hero, .sec--screen {
    min-height: min(calc(100svh - var(--nav-h)), 1000px);
    display: flex; flex-direction: column; justify-content: center;
    box-sizing: border-box;
  }
  .hero > .wrap, .sec--screen > .wrap { width: 100%; }
}
.sec--line { border-top: 1px solid var(--rule-2); }
.sec--tint { background: var(--paper-2); }
.sec--dark { background: var(--dark); color: var(--dark-ink); }
.sec__head { max-width: 44rem; margin-bottom: clamp(2.2rem, 4.5vw, 3.6rem); }
.sec__head--center { margin-inline: auto; text-align: center; }
.sec__head--center .eyebrow::before { display: none; }
.sec__title { font-size: var(--fs-lg); margin-bottom: 1rem; }
.sec__deck { color: var(--ink-2); font-size: var(--fs-md); line-height: 1.45; max-width: 36em; }
.sec__head--center .sec__deck { margin-inline: auto; }

/* ---------- DURUM ÇİPİ ---------- */
.st {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.6rem; border-radius: 3px; white-space: nowrap;
  border: 1px solid currentColor; line-height: 1.2;
}
.st::before { content: ""; width: 0.42rem; height: 0.42rem; border-radius: 50%; background: currentColor; }
.st--open { color: var(--signal); background: var(--signal-soft); }
.st--ok { color: var(--ok); background: var(--ok-soft); }
.st--blind { color: var(--blind); border-style: dashed; }
.st--blind::before { display: none; }
.st--plain { color: var(--ink-2); }
.st--plain::before { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6.5rem); }
.hero__grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.hero__copy { min-width: 0; }
.hero__title { font-size: var(--fs-xl); margin-bottom: 1.4rem; letter-spacing: -0.032em; }
.hero__title em { font-style: normal; color: var(--signal); }
.hero__lead { color: var(--ink-2); font-size: var(--fs-md); line-height: 1.45; max-width: 30em; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero__fine {
  margin-top: 1.4rem; font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}
.hero__fine b { color: var(--signal); font-weight: 400; margin: 0 0.5em; }
.hero__fine b:first-child { display: none; }

/* --- Ürün akışı (hero sağ) --- */
.feed {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; min-width: 0;
}
.feed__head {
  display: flex; align-items: center; gap: 0.8rem; padding: 0.95rem 1.25rem;
  border-bottom: 1px solid var(--rule); background: var(--paper);
}
.feed__title { font-weight: 600; font-size: var(--fs-sm); letter-spacing: -0.01em; display: flex; align-items: center; gap: 0.55rem; }
.feed__dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px var(--ok-soft); }
.feed__head .tag { margin-left: auto; }
.feed__row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 0.35rem 1rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--rule-2);
  position: relative;
}
.feed__row:last-child { border-bottom: 0; }
.feed__row--alert { background: linear-gradient(90deg, var(--signal-soft), transparent 55%); }
.feed__row--alert::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--signal); }
.feed__row--ok::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--ok); }
.feed__row--blind { background: repeating-linear-gradient(135deg, transparent 0 7px, rgba(20,20,22,0.025) 7px 14px); }
.feed__time { font-family: var(--mono); font-size: var(--fs-xs); color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; min-width: 4.4rem; }
.feed__what { min-width: 0; display: grid; gap: 0.15rem; }
.feed__what b { font-weight: 500; font-size: 1rem; line-height: 1.3; display: flex; align-items: center; gap: 0.5rem; }
.feed__what b svg { width: 1rem; height: 1rem; flex: none; color: var(--muted); }
.feed__what i { font-style: normal; font-size: var(--fs-xs); color: var(--muted); }
.feed__row--blind .feed__what b { color: var(--blind); font-weight: 400; }
.feed__row--blind .feed__time { color: var(--blind); }
.feed__foot {
  padding: 0.75rem 1.25rem; border-top: 1px solid var(--rule); background: var(--paper);
  font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.05em; color: var(--muted);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero__grid { gap: 2.5rem; }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__lead { max-width: 40em; }
}
@media (max-width: 560px) {
  .feed__row { grid-template-columns: 1fr auto; }
  .feed__time { grid-column: 1 / -1; min-width: 0; }
  .feed__row, .feed__head, .feed__foot { padding-inline: 1rem; }
}

/* ============================================================
   SIZINTI DİYAGRAMI (problem)
   ============================================================ */
.leak { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.leak__copy .sec__title { margin-bottom: 1.2rem; }
.leak__copy .sec__deck { margin-bottom: 1.6rem; }
.leak__copy .admits { max-width: 26em; }
.example {
  border-left: 3px solid var(--signal); background: var(--card); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem 1.2rem; max-width: 34em; box-shadow: var(--shadow);
}
.leak__form { min-width: 0; }
.form__eyebrow { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal); font-weight: 600; margin-bottom: 0.6rem; }
.form__title { font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.7rem); letter-spacing: -0.022em; margin-bottom: 0.5rem; }
.form__lead { color: var(--ink-2); font-size: var(--fs-sm); line-height: 1.5; margin-bottom: 1.3rem; }
.form__fine { margin-top: 0.9rem; font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.05em; color: var(--muted); text-align: center; }
.example__label { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal); margin-bottom: 0.5rem; }
.example p:not(.example__label) { color: var(--ink-2); font-size: 1.05rem; line-height: 1.5; }

.flow { display: grid; justify-items: center; gap: 0; min-width: 0; }
.flow__sources { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.flow__sources span {
  font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.5rem 0.85rem; border: 1px solid var(--rule); border-radius: 999px; background: var(--card); color: var(--ink-2);
}
.flow__arrow { width: 1px; height: 2.4rem; background: var(--rule); position: relative; }
.flow__arrow::after {
  content: ""; position: absolute; left: 50%; bottom: -1px; transform: translateX(-50%);
  border: 5px solid transparent; border-top: 7px solid var(--muted); border-bottom: 0;
}
.flow__arrow--hot { background: var(--signal-line); }
.flow__arrow--hot::after { border-top-color: var(--signal); }
.flow__node {
  width: min(100%, 22rem); text-align: center; padding: 1.1rem 1.4rem;
  border: 1px solid var(--rule); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow);
}
.flow__node b { display: block; font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; }
.flow__node small { display: block; margin-top: 0.15rem; font-size: var(--fs-xs); color: var(--muted); font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; }
.flow__gap {
  width: min(100%, 22rem); text-align: center; padding: 1.3rem 1.4rem 1.2rem;
  border: 1.5px dashed var(--signal); border-radius: var(--radius); background: var(--signal-soft); position: relative;
}
.flow__gap b { display: block; font-family: var(--mono); font-weight: 600; font-size: 1.7rem; letter-spacing: 0.35em; color: var(--signal); line-height: 1; margin-right: -0.35em; }
.flow__gap small { display: block; margin-top: 0.7rem; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.4; }
.flow__gap .flow__note {
  position: absolute; left: calc(100% + 1.1rem); top: 50%; transform: translateY(-50%);
  width: 10.5rem; text-align: left; font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--signal); line-height: 1.45;
}
.flow__gap .flow__note::before { content: ""; position: absolute; left: -1.1rem; top: 50%; width: 0.7rem; height: 1px; background: var(--signal-line); }
.flow__out { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; width: min(100%, 22rem); }
.flow__out .flow__node { width: auto; padding: 0.95rem 1rem; box-shadow: none; }
.flow__node--ok b { color: var(--ok); }
.flow__node--lost { background: transparent; border-style: dashed; }
.flow__node--lost b { color: var(--blind); }

@media (max-width: 1100px) {
  .flow__gap .flow__note { position: static; transform: none; width: auto; text-align: center; margin-top: 0.8rem; }
  .flow__gap .flow__note::before { display: none; }
}
@media (max-width: 900px) {
  .leak { grid-template-columns: 1fr; }
}

/* ============================================================
   CAPTURE → RECOVER → PROVE (imza bölümü)
   ============================================================ */
.crp { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.75rem); }
.crp__track {
  position: absolute; left: 1.9rem; right: 1.9rem; top: 1.85rem; height: 1px; background: var(--rule);
}
.crp__track::after {
  content: ""; position: absolute; inset: 0; background: var(--signal);
  transform: scaleX(0); transform-origin: left; transition: transform 1.1s cubic-bezier(0.22, 0.7, 0.3, 1) 0.2s;
}
.rv.in .crp__track::after { transform: scaleX(1); }
html:not(.js) .crp__track::after { transform: scaleX(1); }

.stage { position: relative; display: grid; gap: 1.1rem; align-content: start; min-width: 0; }
.stage__num {
  width: 3.8rem; height: 3.8rem; border-radius: 50%; display: grid; place-items: center;
  background: var(--paper); border: 1px solid var(--rule); font-family: var(--mono); font-weight: 600;
  font-size: 1.05rem; letter-spacing: 0.06em; position: relative; z-index: 1; color: var(--ink);
}
.stage__num::after {
  content: ""; position: absolute; inset: 4px; border-radius: 50%; border: 1px solid var(--signal-line);
}
.stage__title { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); letter-spacing: -0.02em; }
.stage__title small { display: block; font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--signal); margin-bottom: 0.45rem; font-weight: 600; }
.stage__text { color: var(--ink-2); font-size: 1.05rem; line-height: 1.5; max-width: 26em; }

/* mini UI'lar */
.mini {
  margin-top: 0.4rem; background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; font-size: var(--fs-sm);
}
.mini__cap {
  display: flex; justify-content: space-between; gap: 0.6rem; align-items: center;
  padding: 0.6rem 0.9rem; border-bottom: 1px solid var(--rule-2); background: var(--paper);
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.mini__row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 0.7rem;
  padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--rule-2);
}
.mini__row:last-child { border-bottom: 0; }
.mini__row b { font-weight: 500; }
.mini__row i { font-style: normal; color: var(--muted); font-size: var(--fs-xs); display: block; }
.src {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.45rem; border-radius: 3px; background: var(--paper-2); color: var(--ink-2); min-width: 3.2rem; text-align: center;
}
.mini__to { font-family: var(--mono); font-size: var(--fs-xs); color: var(--ink-2); white-space: nowrap; }
.mini__to::before { content: "→ "; color: var(--signal); }

.tl { padding: 0.5rem 0.9rem 0.7rem; display: grid; }
.tl__row { display: grid; grid-template-columns: 1rem 1fr; gap: 0.7rem; align-items: start; position: relative; padding-block: 0.45rem; }
.tl__row::before { content: ""; position: absolute; left: 0.45rem; top: 1.35rem; bottom: -0.45rem; width: 1px; background: var(--rule); }
.tl__row:last-child::before { display: none; }
.tl__dot { width: 0.9rem; height: 0.9rem; border-radius: 50%; border: 2px solid var(--signal); background: var(--card); margin-top: 0.3rem; }
.tl__row--ok .tl__dot { border-color: var(--ok); background: var(--ok); }
.tl__row b { font-weight: 500; display: block; }
.tl__row i { font-style: normal; font-family: var(--mono); font-size: var(--fs-xs); color: var(--muted); }
.tl__row--ok b { color: var(--ok); }

.kpi { display: grid; grid-template-columns: repeat(3, 1fr); }
.kpi > div { padding: 0.9rem 0.9rem 0.8rem; border-right: 1px solid var(--rule-2); }
.kpi > div:last-child { border-right: 0; }
.kpi b { display: block; font-size: 1.7rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums; }
.kpi i { font-style: normal; display: block; font-size: var(--fs-xs); color: var(--muted); margin-top: 0.35rem; line-height: 1.3; }
.kpi .st { margin-top: 0.55rem; font-size: 0.62rem; padding: 0.2rem 0.45rem; }
.mini__blind {
  display: flex; justify-content: space-between; gap: 0.8rem; align-items: center;
  padding: 0.7rem 0.9rem; border-top: 1px dashed var(--rule);
  background: repeating-linear-gradient(135deg, transparent 0 7px, rgba(20,20,22,0.025) 7px 14px);
  color: var(--blind); font-size: var(--fs-xs);
}

@media (max-width: 900px) {
  .crp { grid-template-columns: 1fr; gap: 2.5rem; padding-left: 0; }
  .crp__track { left: 1.9rem; right: auto; top: 2rem; bottom: 2rem; height: auto; width: 1px; }
  .crp__track::after { transform: scaleY(0); transform-origin: top; }
  .rv.in .crp__track::after, html:not(.js) .crp__track::after { transform: scaleY(1); }
  .stage { padding-left: 5.2rem; }
  .stage__num { position: absolute; left: 0; top: 0; }
  .stage__text { max-width: none; }
}
@media (max-width: 560px) {
  .stage { padding-left: 0; }
  /* relative kalmalı: static olursa ::after halkası .stage'e göre çözülür ve bölümü kaplar */
  .stage__num { position: relative; left: auto; top: auto; }
  .crp__track { display: none; }
}

/* ============================================================
   ÜCRETSİZ SNAPSHOT
   ============================================================ */
.snap { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.snap__copy .sec__title { margin-bottom: 1rem; }
.steps { display: grid; gap: 0; margin-top: 2.2rem; border-top: 1px solid var(--rule); }
.steps li { display: grid; grid-template-columns: 3.4rem 1fr; gap: 1rem; align-items: start; padding: 1.35rem 0; border-bottom: 1px solid var(--rule); }
.steps__n { font-family: var(--mono); font-size: 1.9rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1; color: var(--signal); font-variant-numeric: tabular-nums; }
.steps b { display: block; font-weight: 600; font-size: 1.2rem; letter-spacing: -0.015em; margin-bottom: 0.25rem; }
.steps p { color: var(--ink-2); font-size: 1rem; line-height: 1.45; }
.snap__cta { margin-top: 2rem; display: flex; gap: 0.8rem 1.4rem; align-items: center; flex-wrap: wrap; }
.snap__fine { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.05em; color: var(--muted); }

/* rapor kartı (snapshot) */
.rep {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.rep__head {
  display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap; padding: 1.05rem 1.5rem; border-bottom: 1px solid var(--rule);
}
.rep__head b { font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; }
.rep__head i { font-style: normal; font-family: var(--mono); font-size: var(--fs-xs); color: var(--muted); letter-spacing: 0.05em; }
.rep__head .tag { margin-left: auto; }
.rep__stats { display: grid; grid-template-columns: repeat(2, 1fr); }
.rep__stats > div { padding: 1.3rem 1.5rem 1.2rem; border-bottom: 1px solid var(--rule-2); border-right: 1px solid var(--rule-2); }
.rep__stats > div:nth-child(2n) { border-right: 0; }
.rep__stats b { display: block; font-size: clamp(2.2rem, 1.6rem + 1.6vw, 3rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.rep__stats b.is-hot { color: var(--signal); }
.rep__stats span { display: block; margin-top: 0.5rem; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.35; }
.rep__stats small { display: block; margin-top: 0.4rem; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.rep__chart { padding: 1.3rem 1.5rem 1.2rem; }
.rep__chart .cap { display: flex; justify-content: space-between; gap: 1rem; font-size: var(--fs-sm); margin-bottom: 1rem; }
.rep__chart .cap b { font-weight: 600; }
.rep__chart .cap i { font-style: normal; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.bars { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.6rem; height: 7.5rem; }
/* Yüzde yükseklik 1fr satıra göre çözülsün diye iki satırlı grid: çubuk alanı + etiket */
.bars > div { display: grid; grid-template-rows: 1fr auto; gap: 0.35rem; height: 100%; min-width: 0; }
.bars i { display: block; align-self: end; height: calc(var(--v) / 3 * 100%); min-height: 3px; background: var(--rule); border-radius: 3px 3px 0 0; position: relative; }
.bars i[data-n]::after { content: attr(data-n); position: absolute; top: -1.25rem; left: 0; right: 0; text-align: center; font-family: var(--mono); font-size: 0.7rem; color: var(--ink-2); }
.bars .is-hot i { background: var(--signal); }
.bars small { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.02em; text-align: center; color: var(--muted); white-space: nowrap; }
.rep__priv {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; padding: 0.9rem 1.5rem; border-top: 1px solid var(--rule); background: var(--paper);
  font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.05em; color: var(--muted);
}
.rep__priv span { display: inline-flex; align-items: center; gap: 0.45rem; }
.rep__priv svg { width: 0.9rem; height: 0.9rem; color: var(--ok); }

@media (max-width: 900px) {
  .snap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .rep__head, .rep__stats > div, .rep__chart, .rep__priv { padding-inline: 1rem; }
  .bars { gap: 0.35rem; }
}

/* ============================================================
   MİMARİ: MEVCUT YIĞIN → KURTARMA KATMANI → EKİP
   ============================================================ */
.stack { max-width: 56rem; margin-inline: auto; display: grid; justify-items: stretch; }
.band {
  border: 1px solid var(--rule); border-radius: var(--radius); background: var(--card);
  padding: 1.3rem 1.6rem; display: grid; gap: 0.9rem;
}
.band__label { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chips li {
  padding: 0.6rem 1rem; border: 1px solid var(--rule); border-radius: var(--radius-sm); background: var(--paper);
  font-weight: 500; font-size: 1rem;
}
.band--layer { background: var(--dark); color: var(--dark-ink); border-color: var(--dark); box-shadow: var(--shadow); }
.band--layer .band__label { color: var(--signal); font-weight: 600; }
.band--layer .band__label::before { content: "✳ "; }
.pipe { display: flex; flex-wrap: wrap; align-items: stretch; gap: 0; counter-reset: step; }
.pipe li {
  position: relative; flex: 1 1 7.5rem; display: grid; gap: 0.3rem; align-content: start; padding: 0.7rem 2.4rem 0.7rem 0;
  font-weight: 500; font-size: 1rem; line-height: 1.3;
}
.pipe li::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; color: var(--dark-muted);
}
.pipe li:not(:last-child)::after {
  content: "→"; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--signal); font-weight: 400; font-size: 1.1rem;
}
.pipe li:last-child { color: #fff; }
.stack__arrow { justify-self: center; width: 1px; height: 2.2rem; background: var(--rule); position: relative; }
.stack__arrow::after {
  content: ""; position: absolute; left: 50%; bottom: -1px; transform: translateX(-50%);
  border: 5px solid transparent; border-top: 7px solid var(--muted); border-bottom: 0;
}
.stack__arrow--hot { background: var(--signal-line); }
.stack__arrow--hot::after { border-top-color: var(--signal); }
.stack__notes {
  max-width: 56rem; margin: clamp(2rem, 4vw, 3rem) auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem 2.5rem;
}
.stack__notes li { border-top: 1px solid var(--rule); padding-top: 0.9rem; font-size: 1rem; line-height: 1.45; color: var(--ink-2); }
.stack__notes b { display: block; color: var(--ink); font-weight: 600; margin-bottom: 0.2rem; }
@media (max-width: 720px) {
  .stack__notes { grid-template-columns: 1fr; gap: 1rem; }
  .pipe li { flex-basis: 100%; padding-right: 0; }
  .pipe li::after { display: none; }
}

/* ============================================================
   NE ALIRSINIZ (ücretli hizmet) + DAHİL OLMAYANLAR
   ============================================================ */
.get { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.get__col { background: var(--card); padding: clamp(1.5rem, 2.6vw, 2.2rem); display: grid; align-content: start; gap: 1rem; }
.get__tag { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--signal); font-weight: 600; }
.get__h { font-size: 1.3rem; letter-spacing: -0.02em; line-height: 1.2; }
.get__col .list { margin-top: 0.3rem; }
.get__col .list li { font-size: 1rem; }
.get__note { margin-top: 0.4rem; padding-top: 0.9rem; border-top: 1px dashed var(--rule); font-size: var(--fs-sm); color: var(--muted); line-height: 1.45; }
.notinc { margin-top: 1.5rem; border: 1px dashed var(--rule); border-radius: var(--radius); background: transparent; }
.notinc summary {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1rem 1.4rem; cursor: pointer; list-style: none; font-weight: 600; font-size: 1.05rem;
}
.notinc summary::-webkit-details-marker { display: none; }
.notinc__hint { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--signal); font-weight: 400; }
.notinc__hint::after { content: " +"; }
.notinc[open] .notinc__hint::after { content: " −"; }
.notinc__body { padding: 0 1.4rem 1.3rem; color: var(--ink-2); }
.notinc__body p { font-size: var(--fs-sm); color: var(--muted); margin-bottom: 0.7rem; }
.notinc__body ul { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.notinc__body li { font-size: var(--fs-sm); padding: 0.4rem 0.8rem; border: 1px solid var(--rule); border-radius: 999px; background: var(--card); color: var(--ink-2); }
@media (max-width: 900px) { .get { grid-template-columns: 1fr; } }

/* ============================================================
   FİYAT
   ============================================================ */
.price { display: grid; grid-template-columns: 1fr 1.15fr; gap: 1.5rem; max-width: 62rem; margin-inline: auto; align-items: stretch; }
.price__card {
  background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid; align-content: start; gap: 0.9rem;
}
.price__card--main { border-color: var(--ink); box-shadow: var(--shadow); position: relative; }
.price__card--main::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--signal); border-radius: var(--radius) var(--radius) 0 0; }
.price__tag { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.price__card--main .price__tag { color: var(--signal); font-weight: 600; }
.price__name { font-size: 1.35rem; letter-spacing: -0.02em; }
.price__amount { font-size: clamp(2.4rem, 1.8rem + 2vw, 3.4rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.price__amount span { font-size: 1.05rem; font-weight: 500; letter-spacing: 0; color: var(--muted); margin-left: 0.4rem; }
.price__sub { color: var(--ink-2); font-size: 1rem; }
.price__card .list { margin-top: 0.4rem; padding-top: 1.1rem; border-top: 1px solid var(--rule-2); }
.price__card .btn { margin-top: 0.8rem; }
.terms {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 2rem; margin: 2rem auto 0;
  font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
}
.terms li::before { content: "·"; color: var(--signal); margin-right: 0.6em; }
.breakeven {
  max-width: 62rem; margin: clamp(2rem, 4vw, 3rem) auto 0; padding: 1.4rem 1.6rem; border: 1px solid var(--rule); border-radius: var(--radius);
  background: var(--paper-2); display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 2rem; align-items: start;
}
.breakeven__label { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal); white-space: nowrap; padding-top: 0.25rem; }
.breakeven p:not(.breakeven__label) { color: var(--ink-2); font-size: 1.05rem; line-height: 1.5; }
@media (max-width: 800px) {
  .price { grid-template-columns: 1fr; }
  .breakeven { grid-template-columns: 1fr; }
}

/* ============================================================
   HAFTALIK RAPOR (prove)
   ============================================================ */
.dash { background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.dash__head {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1.1rem 1.75rem;
  background: var(--dark); color: var(--dark-ink);
}
.dash__head b { font-weight: 600; font-size: 1.05rem; }
.dash__head i { font-style: normal; font-family: var(--mono); font-size: var(--fs-xs); color: var(--dark-muted); letter-spacing: 0.05em; }
.dash__head .tag { margin-left: auto; background: transparent; color: var(--dark-ink); border-color: var(--dark-rule); }
.dash__stats { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--rule); }
.dash__stats > div { padding: 1.6rem 1.75rem 1.4rem; border-right: 1px solid var(--rule-2); }
.dash__stats > div:last-child { border-right: 0; }
.dash__stats b { display: block; font-size: clamp(2.4rem, 1.8rem + 2vw, 3.6rem); font-weight: 600; letter-spacing: -0.045em; line-height: 1; font-variant-numeric: tabular-nums; }
.dash__stats b.is-hot { color: var(--signal); }
.dash__stats b.is-ok { color: var(--ok); }
.dash__stats span { display: block; margin-top: 0.55rem; font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.3; }
.dash__stats small { display: block; margin-top: 0.5rem; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.dash__body { display: grid; grid-template-columns: 1.4fr 1fr; }
.dash__feed { border-right: 1px solid var(--rule-2); }
.dash__cap {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.85rem 1.75rem;
  border-bottom: 1px solid var(--rule-2); background: var(--paper);
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
}
.ev { display: grid; grid-template-columns: 5.6rem 1fr auto; align-items: center; gap: 1rem; padding: 0.95rem 1.75rem; border-bottom: 1px solid var(--rule-2); }
.ev:last-child { border-bottom: 0; }
.ev time { font-family: var(--mono); font-size: var(--fs-xs); color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.ev b { font-weight: 500; font-size: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.ev b::before { content: ""; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--rule); flex: none; }
.ev--hot b::before { background: var(--signal); }
.ev--ok b::before { background: var(--ok); }
.dash__side { padding: 0; display: grid; align-content: start; }
.dash__blind { padding: 1.2rem 1.75rem; }
.dash__blind li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.55rem 0; border-bottom: 1px dashed var(--rule-2); font-size: var(--fs-sm); color: var(--ink-2); }
.dash__blind li:last-child { border-bottom: 0; }
.dash__blind li .st { font-size: 0.62rem; }
.dash__foot { padding: 1rem 1.75rem; border-top: 1px solid var(--rule); background: var(--paper); font-size: var(--fs-sm); color: var(--muted); }
.dash__foot em { font-family: var(--serif); font-style: italic; color: var(--ink-2); }

@media (max-width: 1024px) {
  .dash__stats { grid-template-columns: repeat(3, 1fr); }
  .dash__stats > div { border-bottom: 1px solid var(--rule-2); }
  .dash__stats > div:nth-child(3n) { border-right: 0; }
  .dash__stats > div:nth-child(2) { border-right: 1px solid var(--rule-2); }
}
@media (max-width: 800px) {
  .dash__body { grid-template-columns: 1fr; }
  .dash__feed { border-right: 0; border-bottom: 1px solid var(--rule); }
}
@media (max-width: 600px) {
  .dash__stats { grid-template-columns: repeat(2, 1fr); }
  .dash__stats > div { border-right: 1px solid var(--rule-2) !important; }
  .dash__stats > div:nth-child(2n) { border-right: 0 !important; }
  .dash__stats > div:last-child { grid-column: 1 / -1; border-right: 0 !important; }
  .dash__head, .dash__stats > div, .dash__cap, .ev, .dash__blind, .dash__foot { padding-inline: 1rem; }
  .ev { grid-template-columns: 1fr auto; }
  .ev time { grid-column: 1 / -1; }
}

/* ============================================================
   UYGUNLUK ŞERİDİ
   ============================================================ */
.fit { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem 2rem; border-top: 1px solid var(--rule); }
.fit li { padding-top: 1.2rem; position: relative; }
.fit li::before { content: ""; position: absolute; top: -1px; left: 0; width: 2.4rem; height: 2px; background: var(--signal); }
.fit b { display: block; font-weight: 600; font-size: 1.15rem; letter-spacing: -0.015em; margin-bottom: 0.3rem; }
.fit p { color: var(--ink-2); font-size: 1rem; line-height: 1.45; }
.fit__line { margin-top: clamp(2rem, 4vw, 3rem); max-width: 40em; }
@media (max-width: 900px) { .fit { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .fit { grid-template-columns: 1fr; } }

/* ============================================================
   KOYU ŞERİT: NE DEĞİL
   ============================================================ */
.not { background: var(--dark); color: var(--dark-ink); padding-block: clamp(2.5rem, 5vw, 4rem); }
.not__in { display: grid; grid-template-columns: auto 1fr; gap: 2rem 3.5rem; align-items: center; }
.not__label { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--signal); font-weight: 600; white-space: nowrap; }
.not__list { display: grid; grid-template-columns: repeat(4, 1fr); }
.not__list li { padding: 0.35rem 1.5rem; border-left: 1px solid var(--dark-rule); font-size: 1.1rem; font-weight: 500; letter-spacing: -0.01em; line-height: 1.3; }
.not__list li span { display: block; color: var(--dark-muted); font-weight: 400; font-size: var(--fs-sm); margin-top: 0.2rem; }
@media (max-width: 1024px) {
  .not__in { grid-template-columns: 1fr; }
  .not__list { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0; }
}
@media (max-width: 560px) {
  .not__list { grid-template-columns: 1fr; gap: 0.8rem; }
  .not__list li { padding-inline: 1rem; }
}

/* ============================================================
   SSS
   ============================================================ */
.faq { max-width: 52rem; margin-inline: auto; border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0.25rem; cursor: pointer; font-weight: 600; font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  letter-spacing: -0.015em; list-style: none; transition: color 0.15s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid var(--rule);
  background:
    linear-gradient(var(--signal), var(--signal)) center / 0.8rem 1.5px no-repeat,
    linear-gradient(var(--signal), var(--signal)) center / 1.5px 0.8rem no-repeat;
  transition: transform 0.25s ease, border-color 0.15s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--signal); }
.faq summary:hover::after { border-color: var(--signal); }
.faq__body { overflow: hidden; }
.faq p { padding: 0 3.75rem 1.5rem 0.25rem; color: var(--ink-2); font-size: 1.05rem; line-height: 1.6; max-width: 62ch; }
@media (max-width: 560px) { .faq p { padding-right: 0.25rem; } }

/* ============================================================
   SON ÇAĞRI + FORM
   ============================================================ */
.cta { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.cta__copy .sec__title { margin-bottom: 1rem; }
.checks { margin-top: 2rem; display: grid; gap: 0.9rem; }
.checks li { display: grid; grid-template-columns: 1.4rem 1fr; gap: 0.8rem; align-items: start; font-size: 1.05rem; color: var(--ink-2); }
.checks svg { width: 1.4rem; height: 1.4rem; color: var(--ok); margin-top: 0.1rem; }
.cta__copy .admits { margin-top: 2rem; max-width: 24em; }
.cta--solo { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.cta--solo .cta__copy { max-width: 46rem; }
.cta--solo .eyebrow::before { display: none; }
.cta--solo .sec__deck { margin-inline: auto; }
.cta--solo .hero__ctas { justify-content: center; margin-top: 1.8rem; }
.cta--solo .admits { margin-inline: auto; }
.checks--row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem 2rem; margin-top: 1.8rem; }
.checks--row li { display: inline-flex; grid-template-columns: none; align-items: center; gap: 0.5rem; font-size: 1rem; }
.checks--row svg { width: 1.2rem; height: 1.2rem; margin: 0; }

.form { background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: grid; gap: 0.45rem; }
.field--full { grid-column: 1 / -1; }
.field > label { font-size: var(--fs-sm); font-weight: 600; }
.field > label span { color: var(--muted); font-weight: 400; }
.field input {
  font: inherit; font-size: 1.05rem; color: var(--ink);
  padding: 0.9rem 1rem; border: 1px solid var(--rule); border-radius: var(--radius-sm);
  background: var(--paper); width: 100%; transition: border-color 0.15s ease, background-color 0.15s ease;
}
.field input:hover { border-color: rgba(20, 20, 22, 0.3); }
.field input:focus-visible { border-color: var(--signal); background: #fff; outline: none; box-shadow: 0 0 0 3px var(--signal-soft); }
.field input[aria-invalid="true"] { border-color: var(--signal); }
.consent { display: grid; grid-template-columns: 1.15rem 1fr; gap: 0.7rem; align-items: start; margin-top: 1.3rem; font-size: var(--fs-sm); color: var(--muted); line-height: 1.5; }
.consent input { margin: 0.2rem 0 0; width: 1.15rem; height: 1.15rem; accent-color: var(--signal); }
.form__submit { margin-top: 1.4rem; }
.form__msg { margin-top: 1rem; font-size: var(--fs-sm); }
.form__msg--err { color: var(--signal); }
.form__done { display: grid; gap: 0.8rem; }
.form__done h3 { font-size: var(--fs-md); }
.form__done p { color: var(--ink-2); font-size: 1rem; }
.form__done .btn { justify-self: start; }
@media (max-width: 900px) { .cta { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form__grid { grid-template-columns: 1fr; } }

/* ============================================================
   TALEP DİALOGU
   ============================================================ */
.modal {
  border: 0; padding: 0; margin: auto; background: transparent; max-width: none; max-height: none;
  width: min(100% - 2rem, 40rem); overflow: visible;
}
.modal::backdrop { background: rgba(20, 20, 22, 0.55); }
.modal__in {
  position: relative; background: var(--card); border-radius: var(--radius); box-shadow: 0 30px 80px -20px rgba(20, 20, 22, 0.45);
  padding: clamp(1.6rem, 3vw, 2.5rem); max-height: calc(100dvh - 2rem); overflow: auto;
}
.modal__close {
  position: absolute; top: 1rem; right: 1rem; width: 2.5rem; height: 2.5rem; border-radius: 50%;
  border: 1px solid var(--rule); background: var(--card); color: var(--ink); cursor: pointer; display: grid; place-items: center;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.modal__close:hover { border-color: var(--ink); background: var(--paper); }
.modal__close svg { width: 1.1rem; height: 1.1rem; }
.modal__title { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); letter-spacing: -0.025em; margin-bottom: 0.7rem; padding-right: 3rem; }
.modal__lead { color: var(--ink-2); font-size: 1rem; line-height: 1.5; margin-bottom: 1.5rem; max-width: 36em; }
.form--bare { border: 0; padding: 0; box-shadow: none; background: transparent; }
.form--bare.form__done { padding-top: 0.5rem; }
html.has-modal { overflow: hidden; }
@media (max-width: 640px) {
  .modal { width: 100%; height: 100dvh; margin: 0; }
  .modal__in { border-radius: 0; max-height: 100dvh; min-height: 100dvh; padding: 1.4rem 1rem 2rem; }
}
@keyframes modal-in { from { opacity: 0; transform: translateY(0.8rem); } to { opacity: 1; transform: none; } }
.modal[open] .modal__in { animation: modal-in 0.25s cubic-bezier(0.22, 0.7, 0.3, 1); }

/* ============================================================
   ORTAK: DEFTER (engagement) · SPLIT · PANEL · LİSTE · İÇERİK SAYFALARI
   ============================================================ */
.ledger { background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ledger__cap {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 0.8rem 1.2rem; border-bottom: 1px solid var(--rule); background: var(--paper);
  font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase;
}
.ledger__cap b { font-weight: 600; letter-spacing: 0.1em; }
.ledger__cap span { color: var(--muted); }
.led { display: grid; grid-template-columns: 6.6rem 1fr auto; gap: 0.35rem 1rem; align-items: center; padding: 0.95rem 1.2rem; border-bottom: 1px solid var(--rule-2); }
.led:last-child { border-bottom: 0; }
.led > time { font-family: var(--mono); font-size: var(--fs-xs); color: var(--muted); letter-spacing: 0.04em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.led__e { min-width: 0; }
.led__e b { display: block; font-weight: 500; font-size: 1rem; line-height: 1.35; }
.led__e i { font-style: normal; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.led--blind { background: repeating-linear-gradient(135deg, transparent 0 7px, rgba(20,20,22,0.022) 7px 14px); }
.led--blind .led__e b { color: var(--blind); font-weight: 400; }
.led--blind > time { color: var(--blind); }
@media (max-width: 560px) {
  .led { grid-template-columns: 1fr auto; }
  .led > time { grid-column: 1 / -1; }
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: start; }
.split--wide { grid-template-columns: 0.95fr 1.05fr; }
@media (max-width: 900px) { .split, .split--wide { grid-template-columns: 1fr; } }

.panel { background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius); padding: clamp(1.4rem, 2.6vw, 2.1rem); }
.panel__h { font-size: var(--fs-md); margin-bottom: 1rem; }

.list { display: grid; gap: 0.8rem; }
.list li { display: grid; grid-template-columns: 1rem 1fr; gap: 0.7rem; font-size: 1rem; line-height: 1.5; color: var(--ink-2); }
.list li::before { content: ""; height: 1px; background: var(--signal); margin-top: 0.75em; }
.list--blind li::before { background: var(--blind); }
.list--blind li { color: var(--muted); }

.page { padding-block: clamp(2.5rem, 6vw, 4.5rem) var(--sec-y); }
.page__title { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.2rem); margin-bottom: 1.1rem; max-width: 20ch; }
.page__lead { color: var(--ink-2); font-size: var(--fs-md); line-height: 1.45; max-width: 54ch; }
.prose { max-width: 42rem; display: grid; gap: 1.1rem; }
.prose h2 { font-size: var(--fs-md); margin-top: 1.4rem; }
.prose p { color: var(--ink-2); }
.prose a { color: var(--ink); text-underline-offset: 3px; }
.dl { display: grid; gap: 0.15rem; margin-bottom: 1.6rem; }
.dl dt { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.dl dd { margin: 0; }

/* ---------- FOOTER ---------- */
.foot { background: var(--dark); color: var(--dark-muted); padding-block: 3rem 2.4rem; font-size: var(--fs-sm); }
.foot__in { display: flex; flex-wrap: wrap; gap: 0.8rem 1.8rem; align-items: baseline; }
.foot a { color: var(--dark-ink); text-decoration: none; }
.foot a:hover { text-decoration: underline; text-underline-offset: 3px; }
.foot__org { margin-right: auto; max-width: 34rem; }
.foot__copy { width: 100%; padding-top: 1.3rem; margin-top: 0.8rem; border-top: 1px solid var(--dark-rule); font-size: var(--fs-xs); }
