/* =====================================================
   Yuki (Alice AI) — ürün sayfası stili
   Token kaynağı: ihsitl.css (:root + [data-theme="light"])
   Taban: yasal.css (topbar, dil anahtarı, tablo, footer)
   Bu dosya sadece `.yk-*` sınıflarını tanımlar — yasal sayfaları etkilemez.
   ===================================================== */

.yk-page {
  --yk-max: 1140px;
  --yk-grad: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%);
}

/* ── Üst bar: ürün kimliği + bölüm navigasyonu ── */
.yk-topbar { gap: 12px; }
.yk-nav {
  display: none;
  align-items: center;
  gap: 2px;
}
@media (min-width: 1000px) { .yk-nav { display: flex; } }
.yk-nav a {
  padding: 8px 13px;
  font-size: 0.86rem; font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: var(--radius-md, 12px);
  transition: color .2s, background .2s;
}
.yk-nav a:hover { color: var(--text-primary); background: var(--accent-muted); }

/* ── Genel yerleşim ── */
.yk-main { display: block; }
.yk-wrap {
  max-width: var(--yk-max);
  margin: 0 auto;
  padding-left: clamp(18px, 5vw, 40px);
  padding-right: clamp(18px, 5vw, 40px);
}
/* NOT: `.yk-sec` çoğu yerde `.yk-wrap` ile aynı elemanda duruyor —
   padding kısayolu yatay padding'i sıfırlardı, o yüzden sadece padding-top. */
.yk-sec {
  padding-top: clamp(52px, 8vw, 92px);
  scroll-margin-top: 78px;
}

/* Bölüm başlığı bloğu */
.yk-head { max-width: 640px; margin: 0 0 clamp(24px, 4vw, 38px); }
.yk-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 12px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
}
.yk-eyebrow::before {
  content: ''; width: 22px; height: 2px; border-radius: 2px;
  background: var(--yk-grad);
}
.yk-h2 {
  font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 12px;
}
.yk-lead {
  font-size: 1rem; line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}
.yk-lead strong { color: var(--text-primary); font-weight: 700; }

/* ══════════ HERO ══════════ */
.yk-hero { position: relative; overflow: hidden; padding: clamp(38px, 6vw, 76px) 0 clamp(10px, 2vw, 20px); }
.yk-hero-glow {
  position: absolute; inset: -30% -10% auto -10%; height: 780px;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 46% 52% at 22% 30%, rgba(139, 92, 246, .20) 0%, transparent 68%),
    radial-gradient(ellipse 44% 46% at 82% 18%, rgba(59, 130, 246, .14) 0%, transparent 66%);
}
[data-theme="light"] .yk-hero-glow {
  background:
    radial-gradient(ellipse 46% 52% at 22% 30%, rgba(139, 92, 246, .13) 0%, transparent 68%),
    radial-gradient(ellipse 44% 46% at 82% 18%, rgba(59, 130, 246, .10) 0%, transparent 66%);
}
.yk-hero-inner {
  position: relative; z-index: 1;
  display: grid; gap: clamp(30px, 5vw, 54px);
  align-items: center;
}
@media (min-width: 960px) {
  .yk-hero-inner { grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr); }
}

.yk-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; margin: 0 0 20px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-muted);
  border: 1px solid var(--border-hover);
  border-radius: 999px;
}
.yk-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-muted);
}

.yk-title {
  font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
  font-size: clamp(2.6rem, 6.4vw, 4.2rem);
  font-weight: 800; line-height: 1.02; letter-spacing: -0.035em;
  color: var(--text-primary);
  margin: 0 0 6px;
}
.yk-title span {
  display: block;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600; letter-spacing: -0.01em;
  color: var(--text-muted);
  margin-top: 10px;
}
.yk-hero-lead {
  font-size: clamp(1rem, 1.3vw, 1.08rem); line-height: 1.72;
  color: var(--text-muted);
  margin: 18px 0 26px;
  max-width: 46ch;
}
.yk-hero-lead strong { color: var(--text-primary); font-weight: 700; }

/* Düğmeler */
.yk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px;
  font-family: inherit; font-size: 0.95rem; font-weight: 700; line-height: 1;
  color: #fff;
  background: var(--yk-grad);
  border: 1px solid transparent;
  border-radius: var(--radius-md, 12px);
  text-decoration: none; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(139, 92, 246, .28);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.yk-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(139, 92, 246, .42); }
.yk-btn:active { transform: translateY(0); }
.yk-btn svg { width: 17px; height: 17px; flex: none; }

.yk-btn-ghost {
  color: var(--text-primary);
  background: var(--bg-card);
  border-color: var(--border-hover);
  box-shadow: none;
}
.yk-btn-ghost:hover {
  color: var(--accent);
  background: var(--accent-muted);
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(139, 92, 246, .16);
}

.yk-cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Güven satırı */
.yk-trust {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  margin: 24px 0 0; padding: 0; list-style: none;
}
.yk-trust li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: var(--text-muted);
}
.yk-trust svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

/* Uygulama penceresi çerçevesi */
.yk-frame {
  position: relative;
  border-radius: var(--radius-lg, 20px);
  background: var(--bg-elevated);
  border: 1px solid var(--border-hover);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55), 0 0 0 1px rgba(139, 92, 246, .10);
  overflow: hidden;
}
[data-theme="light"] .yk-frame { box-shadow: 0 20px 50px rgba(20, 20, 45, .16); }
.yk-frame::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 72%, rgba(139, 92, 246, .07) 100%);
}
.yk-frame-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.yk-dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.yk-dot-r { background: #ff5f57; } .yk-dot-y { background: #febc2e; } .yk-dot-g { background: #28c840; }
.yk-frame-title {
  margin-left: 6px;
  font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace;
  font-size: 0.74rem; color: var(--text-muted); letter-spacing: .04em;
}
.yk-frame img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 1500 / 795; object-fit: cover;
  background: var(--bg-base);
}
.yk-hero-fig { margin: 0; }

/* ══════════ Rakam şeridi ══════════ */
.yk-stats {
  display: grid; gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(38px, 6vw, 64px);
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 20px);
  overflow: hidden;
}
@media (min-width: 760px) { .yk-stats { grid-template-columns: repeat(4, 1fr); } }
.yk-stat {
  padding: 22px 20px;
  text-align: center;
  background: var(--bg-card);
}
.yk-stat b {
  display: block;
  font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
  font-size: clamp(1.5rem, 3vw, 1.95rem); font-weight: 800; line-height: 1.1;
  background: var(--yk-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.yk-stat span {
  display: block; margin-top: 6px;
  font-size: 0.8rem; color: var(--text-muted); line-height: 1.45;
}

/* ══════════ Özellik kartları ══════════ */
.yk-features {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .yk-features { grid-template-columns: repeat(2, 1fr); } }
.yk-feat {
  position: relative;
  padding: 26px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 20px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.yk-feat:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}
.yk-feat-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-bottom: 16px;
  color: var(--accent);
  background: var(--accent-muted);
  border: 1px solid var(--border-hover);
  border-radius: 14px;
}
.yk-feat-ico svg { width: 21px; height: 21px; }
.yk-feat h3 {
  font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
  font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.yk-feat p {
  font-size: 0.93rem; line-height: 1.68;
  color: var(--text-muted);
  margin: 0;
}
.yk-feat p strong { color: var(--text-primary); font-weight: 700; }
.yk-feat-tag {
  display: inline-block; margin-top: 12px;
  padding: 4px 10px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-muted);
  border-radius: 999px;
}

/* ══════════ Ekran görüntüleri ══════════ */
.yk-shots {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .yk-shots { grid-template-columns: repeat(3, 1fr); } }
.yk-shot { margin: 0; }

/* ── "Yakında" rozeti (2026-08-01) ──
   Üründe HENÜZ OLMAYAN ekranlar için. yuki-site'taki .pr-soon emsalinin portfolyo
   karşılığı: görsel silinmez, soluklaştırılır + rozetlenir + açıklamada dürüstçe
   "henüz üründe yok" yazar. Ölçüm olmadan hiçbir görsele bu sınıf eklenmez. */
.yk-shot.yk-soon { position: relative; }
.yk-shot.yk-soon img { opacity: .58; filter: grayscale(.35); }
.yk-soon-tag {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  padding: 3px 9px; border-radius: 999px;
  font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #0b1116; background: var(--gold, #f0b429);
  pointer-events: none;
}
.yk-shot button {
  display: block; width: 100%; padding: 0;
  background: none; border: 0;
  font: inherit; color: inherit; text-align: left;
  border-radius: var(--radius-md, 12px);
}
.yk-shot-img {
  position: relative;
  border-radius: var(--radius-md, 12px);
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.yk-shot-img img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 1500 / 795; object-fit: cover;
  transition: transform .4s ease;
}
.yk-shot button:hover .yk-shot-img,
.yk-shot button:focus-visible .yk-shot-img {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.yk-shot button:hover .yk-shot-img img { transform: scale(1.05); }
.yk-shot-zoom {
  position: absolute; right: 10px; bottom: 10px; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  color: #fff;
  background: rgba(10, 10, 20, .62);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 9px;
  opacity: 0; transition: opacity .25s ease;
}
.yk-shot-zoom svg { width: 15px; height: 15px; }
.yk-shot button:hover .yk-shot-zoom,
.yk-shot button:focus-visible .yk-shot-zoom { opacity: 1; }
.yk-shot figcaption {
  margin-top: 10px;
  font-size: 0.84rem; line-height: 1.5;
  color: var(--text-muted);
}

/* Büyütme katmanı */
.yk-lb {
  position: fixed; inset: 0; z-index: 200;
  display: none; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(4, 4, 10, .88);
  backdrop-filter: blur(6px);
}
.yk-lb.is-open { display: flex; }
.yk-lb img {
  max-width: min(1280px, 100%); max-height: 84vh;
  width: auto; height: auto;
  border-radius: var(--radius-md, 12px);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .7);
}
.yk-lb-cap {
  position: absolute; left: 0; right: 0; bottom: clamp(14px, 3vw, 26px);
  text-align: center;
  font-size: 0.88rem; color: rgba(255, 255, 255, .74);
  padding: 0 20px;
}
.yk-lb-close {
  position: absolute; top: clamp(12px, 3vw, 24px); right: clamp(12px, 3vw, 24px);
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
}
.yk-lb-close:hover { background: rgba(255, 255, 255, .2); }
.yk-lb-close svg { width: 19px; height: 19px; }

/* ══════════ İndirme ══════════ */
.yk-dl {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .yk-dl { grid-template-columns: repeat(2, 1fr); } }
.yk-dl a {
  display: flex; align-items: center; gap: 15px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 12px);
  text-decoration: none;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.yk-dl a:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.yk-dl-os {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex: none;
  color: var(--accent);
  background: var(--accent-muted);
  border: 1px solid var(--border-hover);
  border-radius: 12px;
}
.yk-dl-os svg { width: 20px; height: 20px; }
.yk-dl-txt { flex: 1; min-width: 0; }
.yk-dl-txt b {
  display: block;
  font-size: 0.95rem; font-weight: 700; color: var(--text-primary);
}
.yk-dl-txt small {
  display: block; margin-top: 3px;
  font-size: 0.8rem; line-height: 1.45; color: var(--text-muted);
}
.yk-dl-size {
  flex: none;
  padding: 6px 11px;
  font-size: 0.76rem; font-weight: 700; white-space: nowrap;
  color: var(--accent);
  background: var(--accent-muted);
  border-radius: 999px;
}

/* ══════════ Uyarı kutusu (indirme bölümü) ══════════ */
.yk-callout {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; margin: 18px 0 0;
  font-size: 0.93rem; line-height: 1.68;
  color: var(--text-muted);
  background: var(--accent-muted);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md, 12px);
}
.yk-callout strong { color: var(--text-primary); font-weight: 700; }
.yk-callout svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--accent); }

/* ⚠️ .yk-callout `display:flex` — flex çocuğunun varsayılan `min-width:auto`'su onu
   içeriğinden dar yapmaya İZİN VERMEZ. `min-width:0` olmadan aşağıdaki `overflow-x`
   hiç devreye girmez; komut taşar ve 380px'te TÜM SAYFA yatay kayar (ölçüldü). */
.yk-callout > span { min-width: 0; }

/* Terminal komutu (Linux görüntü sunucusu notu, 2026-08-02).
   Uzun komut dar ekranda satırı taşırmasın → kendi içinde kaydırılır. */
.yk-callout code {
  display: inline-block;
  max-width: 100%;
  overflow-x: auto;
  vertical-align: bottom;
  padding: 2px 7px;
  margin: 2px 0;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.88em;
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid var(--border-hover);
  border-radius: 6px;
  white-space: nowrap;
}

/* ══════════ Kapanış CTA ══════════ */
.yk-final {
  position: relative; overflow: hidden;
  margin-top: clamp(56px, 8vw, 96px);
  padding: clamp(36px, 6vw, 62px) clamp(22px, 4vw, 48px);
  text-align: center;
  background:
    radial-gradient(ellipse 70% 120% at 50% 0%, rgba(139, 92, 246, .18) 0%, transparent 70%),
    var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg, 20px);
}
.yk-final h2 {
  font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
  font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 10px;
}
.yk-final p {
  font-size: 0.97rem; line-height: 1.7;
  color: var(--text-muted);
  margin: 0 auto 24px;
  max-width: 52ch;
}
.yk-final .yk-cta-row { justify-content: center; }

/* ══════════ Alt gezinme ══════════ */
.yk-foot {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 22px;
  max-width: var(--yk-max);
  margin: clamp(40px, 6vw, 62px) auto 0;
  padding: clamp(26px, 4vw, 34px) clamp(18px, 5vw, 40px) clamp(46px, 7vw, 72px);
  border-top: 1px solid var(--border);
}
.yk-foot a, .yk-foot span {
  font-size: 0.86rem; color: var(--text-muted); text-decoration: none;
  transition: color .2s;
}
.yk-foot a:hover { color: var(--accent); }

/* ══════════ Görünürlük animasyonu ══════════ */
/* Varsayılan: görünür. Gizleme sadece JS `yk-anim` sınıfını eklerse başlar —
   script yüklenmezse/hata verirse içerik kaybolmaz. */
.yk-anim .yk-reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.yk-anim .yk-reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .yk-page *, .yk-page *::before, .yk-page *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
  .yk-reveal { opacity: 1 !important; transform: none !important; }
}

/* Klavye odağı — her yerde görünür kalsın */
.yk-page a:focus-visible,
.yk-page button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

/* ── Hero rakam satırı ──────────────────────────────────
   2026-08-16: Dört kutulu "büyük rakam" şeridinin yerine geçti.
   Kutu, kenarlık ve dolgu yok — sessiz bir künye satırı. */
.yk-statline {
  margin: clamp(26px, 4vw, 40px) 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.yk-statline b {
  color: var(--text-primary);
  font-weight: 700;
}

/* =========================================================================
   Fiyat merdiveni · veri plakası · kolofon            (2026-08-16)
   Eskiden: 3 ayrı fiyat kartı (.yk-tier*) · <table> künye (.yk-table*) ·
            <dl> satıcı kutusu (.yk-seller). Üçü de silindi, yerini bunlar aldı.
   Gerekçe: üç bölüm de aynı işi yapıyor — "gerçek mi, güvende miyim?"
   sorusunu cevaplıyor. Pazarlama kartı değil, belge gibi görünmeliler.
   ========================================================================= */
/* ═══════════════════════════════════════════════════════════════
   1 · KADEME MERDİVENİ  (#pricing yerine)
   Üç ayrı kart değil, TEK panelde üç basamak. Kademeler kümülatif
   (Free ⊂ Pro ⊂ Ultra) — merdiven bunu görünür kılar, kartlar gizler.
   ═══════════════════════════════════════════════════════════════ */

.yn-ladder {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 20px);
  background: var(--bg-card);
  overflow: hidden;
}

.yn-rung {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  padding: clamp(22px, 3.4vw, 32px);
  border-bottom: 1px solid var(--border);
}

.yn-rung:last-child { border-bottom: 0; }

/* Basamak: solda kimlik + ne eklendiği, sağda fiyat + eylem.
   1D dizilim değil (iki bağımsız sütun) → grid doğru araç. */
@media (min-width: 800px) {
  .yn-rung {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 268px);
    align-items: start;
  }
}

/* Öne çıkan basamak: ölçek büyütme YOK (o, SaaS kartı refleksi).
   Ayrımı zemin tonu ve kenarlık yapıyor. */
.yn-rung-best {
  background: var(--accent-muted);
  border-bottom-color: var(--border-hover);
}
.yn-rung-best + .yn-rung { border-top: 0; }

/* ── Basamak kimliği ── */
.yn-rung-id { min-width: 0; }

.yn-rung-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 4px;
}

.yn-rung-name {
  margin: 0;
  font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
  font-size: clamp(1.18rem, 2.2vw, 1.42rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.yn-flag {
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  background: var(--accent-muted);
  border: 1px solid var(--border-hover);
  border-radius: 999px;
}

.yn-rung-tag {
  margin: 0 0 16px;
  max-width: 46ch;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-muted);
  text-wrap: pretty;
}

/* ── Basamak ölçeri ──
   Üç segment: kaçıncı basamaktasın. Süs değil, veri —
   merdiveni satırlar arasında görünür kılan tek iplik.
   (Yan-şerit kenarlık kullanılmadı; o yasak listesinde.) */
.yn-meter {
  display: flex;
  gap: 4px;
  margin: 0 0 14px;
}
.yn-meter i {
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--border-hover);
  opacity: 0.32;
}
.yn-meter i.on { background: var(--accent); opacity: 1; }

/* ── Devralınan kademe satırı ──
   "Free'deki her şey +" cümlesini listenin İÇİNDE tekrar etmek yerine
   listenin üstünde tek satır. Liste böylece yalnız YENİ olanı gösterir. */
.yn-inherit {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 0.87rem;
  color: var(--text-muted);
}
.yn-inherit b { color: var(--text-primary); font-weight: 700; }
.yn-inherit::before {
  content: "↳";
  color: var(--accent);
  font-weight: 700;
}

/* ── Yeni gelenler ──
   Çok sütun (columns) kullanıldı, grid değil: grid satırları en uzun maddeye
   hizalar ve kısa maddelerin altında boşluk kalır (Ultra'da ölçüldü).
   Çok sütun metni doğal akışla döker → boşluk kaçağı yok. */
.yn-adds {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 560px) {
  .yn-adds { columns: 2; column-gap: 26px; }
}
.yn-adds li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-muted);
  break-inside: avoid;
}
.yn-adds li:last-child { margin-bottom: 0; }
.yn-adds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.9;
}
.yn-adds li strong { color: var(--text-primary); font-weight: 700; }

/* ── Fiyat sütunu ── */
.yn-rung-buy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 800px) {
  .yn-rung-buy { align-items: flex-end; text-align: right; }
}

.yn-amount {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.yn-amount-num {
  font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
  font-size: clamp(2rem, 4.4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}
/* "Ücretsiz" bir rakam değil, kelime. Rakamla aynı puntoda yazılınca
   satır uzunluğu yüzünden $29.99'dan daha baskın görünüyordu (ölçüldü). */
.yn-amount-num.is-word { font-size: clamp(1.5rem, 3vw, 1.95rem); letter-spacing: -0.025em; }

.yn-amount-cur {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* Eski fiyat: üstü çizili, yanında. Mevcut sayfadaki
   "Lansman fiyatı: $19.99" rozeti hangi rakamın geçerli olduğunu
   belirsiz bırakıyordu — burada geçerli olan büyük, eski olan çizili. */
.yn-was {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.yn-terms {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.yn-terms b { color: var(--text-primary); font-weight: 700; }

.yn-rung-buy .yk-btn { width: 100%; justify-content: center; }

/* Merdivenin altındaki ödeme notu */
.yn-ladder-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin: 16px 0 0;
  padding: 0 4px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.yn-ladder-foot span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.yn-ladder-foot svg {
  width: 14px; height: 14px;
  flex: none;
  color: var(--accent);
}
.yn-ladder-foot a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; }
.yn-ladder-foot a:hover { border-bottom-color: var(--accent); }


/* ── Dipnot bloğu ──
   Mevcut `.yk-note` `border-left: 3px solid var(--accent)` kullanıyor.
   Renkli yan şerit, tasarımda "vurgu ekleyeyim" refleksinin klasik izidir;
   asıl işi yapan şey kutunun kendisi. Şerit kalktı, kutu tam kenarlık aldı,
   vurgu başlığın kendisine taşındı. */
.yn-note {
  margin: 20px 0 0;
  padding: 16px 20px;
  font-size: 0.86rem;
  line-height: 1.68;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md, 12px);
  text-wrap: pretty;
}
.yn-note strong { color: var(--text-primary); font-weight: 700; }
.yn-note b.yn-note-key {
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}
.yn-note a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; }
.yn-note a:hover { border-bottom-color: var(--accent); }


/* ═══════════════════════════════════════════════════════════════
   2 · VERİ PLAKASI  (#details yerine)
   <table> yok → min-width yok → telefonda yatay kaydırma yok.
   10 eşit satır, anlamlı 3 kümeye ayrıldı: bu bir bilgi mimarisi
   düzeltmesi, süsleme değil.
   ═══════════════════════════════════════════════════════════════ */

.yn-plate {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 20px);
  background: var(--bg-card);
  overflow: hidden;
}

.yn-group { border-bottom: 1px solid var(--border); }
.yn-group:last-child { border-bottom: 0; }

.yn-group-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px clamp(20px, 3vw, 28px);
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}
.yn-group-head svg {
  width: 16px; height: 16px;
  flex: none;
  color: var(--accent);
}
.yn-group-head h3 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}

.yn-rows { margin: 0; padding: clamp(6px, 1.4vw, 10px) 0; }

.yn-row {
  display: grid;
  gap: 3px 26px;
  padding: 11px clamp(20px, 3vw, 28px);
}
@media (min-width: 720px) {
  .yn-row {
    grid-template-columns: 186px minmax(0, 1fr);
    align-items: baseline;
  }
}

.yn-row dt {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-primary);
}
.yn-row dd {
  margin: 0;
  font-size: 0.91rem;
  line-height: 1.66;
  color: var(--text-muted);
  max-width: 68ch;
  text-wrap: pretty;
}
.yn-row dd strong { color: var(--text-primary); font-weight: 700; }
.yn-row dd a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; }
.yn-row dd a:hover { border-bottom-color: var(--accent); }

/* Sert teknik veri (platform dizgesi, disk, RAM) — yalnız BURADA mono.
   Düz metne mono giydirmek kostüm olur; ölçüye giydirmek okunurluk. */
.yn-val {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.86em;
  color: var(--text-primary);
  background: var(--accent-muted);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 6px;
  white-space: nowrap;
}

/* "Bu bir hizmet değildir" — Paddle için zorunlu, sayfa için de doğru.
   Plakanın altına, plakanın parçası gibi. */
.yn-notice {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  margin: 14px 0 0;
  padding: 16px clamp(18px, 3vw, 22px);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  background: var(--accent-muted);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-md, 12px);
}
.yn-notice > span { min-width: 0; }   /* flex çocuğu daralabilsin (yk-callout dersi) */
.yn-notice strong { color: var(--text-primary); font-weight: 700; }
.yn-notice svg { width: 19px; height: 19px; flex: none; margin-top: 2px; color: var(--accent); }


/* ═══════════════════════════════════════════════════════════════
   3 · KOLOFON  (#seller yerine)
   Yasal künye, kitabın arkasındaki künye gibi. Önce insan,
   sonra küçük yazı. Buradaki gerçek koz "arkasında tek kişi var".
   ═══════════════════════════════════════════════════════════════ */

.yn-colophon {
  display: grid;
  gap: clamp(26px, 4vw, 44px);
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 20px);
  background: var(--bg-card);
}
@media (min-width: 820px) {
  .yn-colophon { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); align-items: start; }
}

.yn-who p.yn-who-pre {
  margin: 0 0 8px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.yn-who-name {
  margin: 0 0 6px;
  font-family: var(--font-display, 'Bricolage Grotesque', sans-serif);
  font-size: clamp(1.5rem, 3.4vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  text-wrap: balance;
}
.yn-who-where {
  margin: 0 0 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.yn-who-note {
  margin: 0;
  max-width: 44ch;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.89rem;
  line-height: 1.68;
  color: var(--text-muted);
  text-wrap: pretty;
}
.yn-who-note strong { color: var(--text-primary); font-weight: 700; }

/* Sağ sütun: yasal küçük yazı */
.yn-facts { margin: 0; display: grid; gap: 13px; }
.yn-fact {
  display: grid;
  gap: 2px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--border);
}
.yn-fact:last-child { border-bottom: 0; padding-bottom: 0; }
.yn-fact dt {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}
.yn-fact dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-primary);
  text-wrap: pretty;
}
.yn-fact dd small {
  display: block;
  margin-top: 3px;
  font-size: 0.84rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.yn-fact a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; }
.yn-fact a:hover { border-bottom-color: var(--accent); }

.yn-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}


/* ═══════════════════════════════════════════════════════════════
   Hareket — mevcut .yk-reveal deseninin üstüne binmiyor, onu kullanıyor.
   Azaltılmış hareket tercihi yuki.css'te zaten karşılanıyor.
   ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: no-preference) {
  .yn-rung { transition: background .35s cubic-bezier(.22,1,.36,1); }
  .yn-rung:hover { background: var(--accent-muted); }
  .yn-rung-best:hover { background: var(--accent-glow); }
}
