/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NewsRadar · Landing — "mürekkep" sistemi
   Koyu yeşil zemin (marka mürekkebi) + Space Grotesk başlıklar.
   Gövde ve arayüz Inter'de kalır; display yalnız pazarlama başlıklarında.
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.landing-body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin: 0;
}

.landing-body h1,
.landing-body h2,
.landing-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: var(--lh-tight);
  text-wrap: balance;
}
.how-no { font-family: 'Inter', sans-serif; }
/* Gövde: dul/yetim satır engelle */
.hero-sub, .trial-help, .how-body p, .details-row dd,
.trial-card-summary, .final-sub { text-wrap: pretty; }

/* ─── Mürekkep blokları (koyu yeşil zemin) ─── */
.ink {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--deep);
  color: var(--ink-text);
}
/* Katmanlı derinlik: sağ-üstte lime ışık + sol-altta derin yeşil */
.ink::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 80% 12%, rgba(198, 255, 58, 0.10), transparent 55%),
    radial-gradient(90% 80% at 6% 104%, var(--deep-2), transparent 60%);
}
/* Çok ince film grain — koyu zeminde renk bantlaşmasını kırar (ek dosya yok) */
.ink::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.ink .btn-primary {
  background: var(--accent);
  color: var(--accent-text);
}
.ink .btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 18px var(--accent-soft);
}
/* Büyük birincil CTA — hero / final / deneme gönder */
.btn-xl {
  height: 52px;
  padding: 0 30px;
  font-size: var(--fs-md);
  font-weight: 700;
}

/* ─── Üst gezinme ─── */
.landing-nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.landing-nav .logo-img { height: 30px; display: block; }
.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-link {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--ink-text); }
.nav-cta { height: 38px; padding: 0 18px; font-size: var(--fs-sm); }
.ink .nav-cta {
  background: transparent;
  color: var(--ink-text);
  border: 1px solid rgba(234, 243, 241, 0.28);
}
.ink .nav-cta:hover {
  background: rgba(234, 243, 241, 0.08);
  color: var(--ink-text);
  box-shadow: none;
}

/* Radar motifi — hero zemininde marka kimliği (dekoratif, aria-hidden) */
.hero-radar {
  position: absolute;
  top: -200px;
  right: -220px;
  width: 680px;
  height: 680px;
  max-width: 90vw;
  z-index: -1;
  pointer-events: none;
}
.hero-radar-rings { width: 100%; height: 100%; display: block; }
.hero-radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(198, 255, 58, 0.16), rgba(198, 255, 58, 0) 78deg);
  animation: radar-sweep 7s linear infinite;
}
@keyframes radar-sweep { to { transform: rotate(360deg); } }

/* ─── Hero ─── */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) 24px clamp(56px, 7vw, 100px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero-lead {
  margin: 0 0 18px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}
.hero h1 {
  margin: 0 0 22px;
  max-width: 18ch;
  font-size: clamp(2.25rem, 4.8vw, 3.5rem);
  font-weight: 700;
  line-height: var(--lh-display);
  letter-spacing: -0.035em;
  color: var(--ink-text);
}
.hero-sub {
  margin: 0 0 30px;
  max-width: 56ch;
  font-size: clamp(var(--fs-base), 1.5vw, var(--fs-md));
  line-height: var(--lh-body);
  color: var(--ink-muted);
}
.hero-sub .stat {
  color: var(--accent);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-cta-alt {
  color: var(--ink-muted);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--ink-muted);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}
.hero-cta-alt:hover { color: var(--ink-text); border-color: var(--ink-text); }
.hero-note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--ink-muted);
}
.hero-facts {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.hero-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  line-height: 1.4;
  color: var(--ink-muted);
}
.hero-facts li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Hero görseli: ürün penceresi (kaynak → çeviri → WordPress) */
.hero-vis {
  min-width: 0;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 18px 20px 22px;
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.hero-vis-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-vis-dots { display: inline-flex; gap: 6px; }
.hero-vis-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); }
.hero-vis-url {
  font-size: var(--fs-xs);
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}
.radar-ping {
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(198, 255, 58, 0.45);
  animation: radar-ping 2.4s ease-out infinite;
}
@keyframes radar-ping {
  0% { box-shadow: 0 0 0 0 rgba(198, 255, 58, 0.45); }
  70%, 100% { box-shadow: 0 0 0 11px rgba(198, 255, 58, 0); }
}
.hero-pipeline {
  display: flex;
  flex-direction: column;
}
.pipe-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.pipe-step { display: flex; flex-direction: column; gap: 8px; }
.pipe-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: var(--fs-sm);
  line-height: 1.5;
  color: var(--ink-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.pipe-step .pipe-card + .pipe-card { margin-left: 22px; }
.pipe-card .hero-flag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.pipe-card .hero-flag .ic { width: 14px; height: 14px; color: var(--ink-muted); }
.pipe-rail {
  width: 2px;
  height: 22px;
  margin: 10px 0 10px 22px;
  background: linear-gradient(180deg, var(--accent), var(--accent-soft));
  border-radius: 2px;
}
.pipe-card-ai {
  display: block;
  background: linear-gradient(180deg, rgba(198, 255, 58, 0.08), rgba(255, 255, 255, 0.04));
  border-color: rgba(198, 255, 58, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.pipe-card-ai .pipe-title { font-weight: 600; margin-bottom: 5px; }
.pipe-card-ai .pipe-meta {
  font-size: 11.5px;
  color: var(--ink-muted);
  font-variant-numeric: tabular-nums;
}
.pipe-card-wp { border-color: var(--accent-soft); }
.pipe-ok {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pipe-ok .ic { width: 12px; height: 12px; }

/* ─── Sosyal kanıt / sistem metrikleri (ink) ─── */
.proof .proof-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 6px 24px 44px;
  border-top: 1px solid rgba(234, 243, 241, 0.12);
}
.proof-kicker {
  margin: 0 0 22px;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--ink-muted);
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.proof-stat { display: flex; flex-direction: column; gap: 6px; }
.proof-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-2xl);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.proof-label { font-size: var(--fs-sm); line-height: 1.4; color: var(--ink-muted); }

/* ─── Canlı deneme ─── */
.trial {
  background: linear-gradient(180deg, var(--deep) 0, var(--bg) 80px);
  border-bottom: 1px solid var(--border);
}
.trial-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 92px) 24px;
}
.trial-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.trial-help {
  margin: 0 0 28px;
  max-width: 62ch;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-muted);
}
.trial-form { display: flex; flex-direction: column; gap: 12px; }
.trial-textarea {
  width: 100%;
  box-sizing: border-box;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 16px 18px;
  font: inherit;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  resize: vertical;
  outline: 0;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.trial-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.trial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trial-count {
  font-size: 13px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.trial-count.over { color: var(--danger, #b3261e); font-weight: 600; }
.btn-link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-hover);
  cursor: pointer;
}
.btn-link:hover { text-decoration: underline; }
.trial-submit { align-self: flex-start; }
.trial-error {
  background: var(--danger-soft, #fdecea);
  border: 1px solid var(--danger-border, #f3c1bb);
  color: var(--danger, #b3261e);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13.5px;
}

/* Deneme sonuçları */
.trial-result { margin-top: 36px; }
.trial-sources {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
}
.trial-source {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
}
.trial-source-status {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trial-source-status .ic { width: 12px; height: 12px; }
.trial-source.ok .trial-source-status { background: var(--success-soft, #e3f3e8); color: var(--success, #15803d); }
.trial-source.fail .trial-source-status { background: var(--danger-soft, #fdecea); color: var(--danger, #b3261e); }
.trial-source-name { font-weight: 600; }
.trial-source-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-hover);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 2px 9px;
}
.trial-source-count { margin-left: auto; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.trial-source-err { margin-left: auto; color: var(--danger, #b3261e); font-size: 12.5px; }

.trial-articles { display: flex; flex-direction: column; }
.trial-card {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.trial-card:first-child { border-top: 0; }
.trial-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
}
.trial-card-fav { width: 16px; height: 16px; border-radius: 4px; }
.trial-card-source { font-weight: 600; color: var(--text); }
.trial-card-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border-strong); }
.trial-card-time { font-variant-numeric: tabular-nums; }
.trial-card-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-hover);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 2px 9px;
}
.trial-card-title { margin: 0 0 6px; }
.trial-card-title a {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}
.trial-card-title a:hover { color: var(--accent-hover); }
.trial-card-summary {
  margin: 0;
  max-width: 72ch;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.trial-empty {
  text-align: center;
  padding: 44px 20px;
  color: var(--text-muted);
}
.trial-empty-icon {
  display: inline-flex;
  color: var(--text-faint);
  margin-bottom: 12px;
}
.trial-empty-icon .ic { width: 34px; height: 34px; }
.trial-empty-title { font-weight: 700; color: var(--text); margin-bottom: 6px; }
.trial-empty-help { font-size: 13.5px; max-width: 52ch; margin: 0 auto; }

.spinner {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: trial-spin 0.7s linear infinite;
}
@keyframes trial-spin { to { transform: rotate(360deg); } }

/* ─── Üç adım ─── */
.how { background: var(--surface); }
.how-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) 24px;
}
.how-title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.how-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: clamp(18px, 3vw, 36px);
  padding: 38px 0;
  border-top: 1px solid var(--border);
}
.how-row:first-of-type { border-top: 0; padding-top: 24px; }
.how-no {
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 800;
  line-height: 1;
  color: var(--text-muted);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  padding-top: 6px;
}
.how-body h3 {
  margin: 4px 0 10px;
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.how-body p {
  margin: 0 0 10px;
  max-width: var(--measure);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--text-muted);
}
.how-detail {
  font-size: 13.5px !important;
  color: var(--text-faint) !important;
}

/* ─── Ayrıntılar (künye) ─── */
.details { background: var(--bg); border-top: 1px solid var(--border); }
.details-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) 24px;
}
.details-inner h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.022em;
}
.details-list { margin: 0; }
.details-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.details-row:first-child { border-top: 0; padding-top: 24px; }
.details-row dt {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}
.details-row dd {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 64ch;
}

/* ─── Fiyat şeridi ─── */
.price-strip { background: var(--accent-soft); }
.price-strip-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.price-strip-line {
  margin: 0;
  font-size: 15px;
  color: var(--text);
}
.price-strip-line strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.price-strip-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-hover);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.price-strip-link:hover { color: var(--accent); }

/* ─── Final CTA ─── */
.final { text-align: center; }
.final-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) 24px;
}
.final h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink-text);
}
.final-sub {
  margin: 0 0 28px;
  font-size: var(--fs-md);
  color: var(--ink-muted);
}
.final-trust {
  margin: 18px 0 0;
  font-size: var(--fs-sm);
  color: var(--ink-muted);
}

/* ─── Footer ─── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 52px 24px 44px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
}
.footer-brand .logo-footer { height: 26px; display: block; margin-bottom: 14px; }
.footer-brand p {
  margin: 0 0 6px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.footer-copy { color: var(--text-faint) !important; font-size: 12.5px !important; }
.footer-col h4 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
}
.footer-col a:hover { color: var(--accent-hover); }

/* ─── Kayıt kapısı (kapatılabilir) ─── */
.trial-gate {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.trial-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 28, 24, 0.62);
}
.trial-gate-card {
  position: relative;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(10, 28, 24, 0.35);
  width: 100%;
  max-width: 420px;
  padding: 30px 28px 24px;
  animation: gate-in 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes gate-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.trial-gate-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: var(--bg);
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.trial-gate-close:hover { background: var(--border); color: var(--text); }
.trial-gate-close .ic { width: 16px; height: 16px; }
.trial-gate-head h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  padding-right: 28px;
}
.trial-gate-sub {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}
.trial-gate-form { display: flex; flex-direction: column; gap: 14px; }
.trial-gate-field { display: flex; flex-direction: column; gap: 6px; }
.trial-gate-field span { font-size: 13px; font-weight: 600; }
.trial-gate-field input {
  height: 44px;
  padding: 0 14px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font: inherit;
  font-size: 14.5px;
  color: var(--text);
  outline: 0;
}
.trial-gate-field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.trial-gate-submit { width: 100%; justify-content: center; }
.trial-gate-error {
  background: var(--danger-soft, #fdecea);
  border: 1px solid var(--danger-border, #f3c1bb);
  color: var(--danger, #b3261e);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
}
.trial-gate-foot {
  margin-top: 16px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
}
.trial-gate-foot a { color: var(--accent-hover); font-weight: 600; }
body.gate-open { overflow: hidden; }

/* Kapı kapatıldıysa: alt hatırlatma şeridi */
.trial-stickybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  background: var(--deep);
  color: var(--ink-text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -6px 24px rgba(10, 28, 24, 0.25);
  animation: sticky-in 0.25s ease-out;
}
@keyframes sticky-in {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.trial-stickybar-text { font-size: 14px; }
.trial-stickybar .btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  height: 38px;
  padding: 0 18px;
  font-size: 13.5px;
}
.trial-stickybar .btn-primary:hover { background: var(--accent-hover); }

/* ─── Cila: odak halkaları + birincil buton basışı ─── */
.landing-body a:focus-visible,
.landing-body button:focus-visible,
.landing-body .btn-link:focus-visible,
.landing-body .trial-gate-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.landing-body .btn-primary {
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
}
.landing-body .btn-primary:active { transform: translateY(1px); }

/* ─── Vitrin carousel'i (gerçek ekran görüntüleri) ─── */
.showcase {
  padding: clamp(56px, 8vw, 104px) 24px;
  border-top: 1px solid var(--border);
}
.showcase-inner { max-width: 1120px; margin: 0 auto; }
.showcase-title {
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 8px;
  text-align: center;
}
.showcase-sub {
  text-align: center;
  color: var(--text-muted);
  margin: 0 0 clamp(28px, 4vw, 44px);
  font-size: 15px;
}
.showcase-carousel { position: relative; }
.showcase-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px 18px;
  scrollbar-width: none;
}
.showcase-track::-webkit-scrollbar { display: none; }
.showcase-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.showcase-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #0b0f0d;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
/* Pencere üst şeridi — tarayıcı hissi */
.showcase-frame::before {
  content: "";
  display: block;
  height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-bottom: 1px solid var(--border);
}
.showcase-dots-deco {
  position: absolute; top: 12px; left: 16px; z-index: 2;
  display: flex; gap: 7px;
}
.showcase-dots-deco i {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
}
.showcase-dots-deco i:first-child { background: #ff6058; }
.showcase-dots-deco i:nth-child(2) { background: #ffbd2e; }
.showcase-dots-deco i:nth-child(3) { background: #28c840; }
.showcase-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 832;
  object-fit: cover;
  object-position: top center;
}
.showcase-slide figcaption {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.showcase-step {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--accent);
  margin-bottom: 6px;
}
.showcase-slide figcaption p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}
/* Oklar */
.showcase-arrow {
  position: absolute;
  top: calc(50% - 60px);
  transform: translateY(-50%);
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(6px);
  color: var(--text);
  cursor: pointer;
  z-index: 3;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.showcase-arrow:hover { border-color: var(--accent); color: var(--accent); }
.showcase-prev { left: -8px; }
.showcase-next { right: -8px; }
@media (min-width: 1180px) {
  .showcase-prev { left: -30px; }
  .showcase-next { right: -30px; }
}
/* Nokta göstergeleri */
.showcase-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.showcase-nav button {
  width: 9px; height: 9px; padding: 0;
  border: none; border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  transition: background 0.15s, width 0.15s;
}
.showcase-nav button.on { background: var(--accent); width: 26px; border-radius: 999px; }

@media (max-width: 640px) {
  .showcase-arrow { display: none; }
  .showcase-frame::before { height: 26px; }
  .showcase-dots-deco { top: 9px; }
  .showcase-dots-deco i { width: 8px; height: 8px; }
}

/* ─── Hero içindeki vitrin — kompakt varyant ───
   Tarayıcı şeridi hero-vis-bar'dan geliyor; slaytların kendi pencere
   süsü kapatılır, oklar kartın içinde kalır. */
.hero-vis .showcase-frame { border-radius: 10px; box-shadow: none; }
.hero-vis .showcase-frame::before { display: none; }
.hero-vis .showcase-track { gap: 18px; padding: 2px 2px 8px; }
.hero-vis .showcase-slide { gap: 11px; }
.hero-vis .showcase-slide figcaption { max-width: 100%; padding: 0 6px; }
.hero-vis .showcase-step { font-size: 15px; margin-bottom: 2px; }
.hero-vis .showcase-slide figcaption p { font-size: 13.5px; line-height: 1.5; }
.hero-vis .showcase-arrow { width: 38px; height: 38px; top: calc(50% - 52px); }
.hero-vis .showcase-prev { left: 10px; }
.hero-vis .showcase-next { right: 10px; }
.hero-vis .showcase-nav { margin-top: 12px; }
/* Son karttaki kayıt yönlendirmesi */
.showcase-cta {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 10px; padding: 11px 22px; font-size: 14px;
}
@media (max-width: 920px) {
  .hero-vis .showcase-arrow { display: none; } /* mobilde parmakla kaydırılır */
}

/* ─── Duyarlılık ─── */
@media (max-width: 920px) {
  .hero { grid-template-columns: 1fr; }
  .hero-pipeline { margin: 0 auto; }
  .landing-nav-actions { gap: 16px; }
  .nav-link:first-child { display: none; }
}
@media (max-width: 640px) {
  .hero-facts { gap: 10px 18px; }
  .proof-stats { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
  .how-row { grid-template-columns: 1fr; gap: 6px; }
  .how-no { font-size: 30px; }
  .details-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .price-strip-inner { flex-direction: column; align-items: flex-start; }
  .landing-nav .nav-link { display: none; }
  .trial-stickybar { flex-direction: column; gap: 10px; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .trial-gate-card, .trial-stickybar,
  .hero-radar-sweep, .radar-ping { animation: none; }
  .spinner { animation-duration: 1.4s; }
}
