/* ============================================================
   OZGUR — TR satış sayfaları (hizmetler / vaka / hakkımda)
   Ana siteyle aynı tokenlar; WebGL yok, reklam-landing hızında.
   ============================================================ */

@font-face {
  font-family: 'Anton';
  src: url('../assets/fonts/anton-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: block;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('../assets/fonts/space-grotesk-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../assets/fonts/jetbrains-mono-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --ink: #060606;
  --ink-2: #0c0c0c;
  --bone: #EDEDE8;
  --dim: #8a8a82;
  --line: rgba(237, 237, 232, 0.09);
  --line-strong: rgba(237, 237, 232, 0.2);
  /* accent = dolgu + display vurgusu. #4353FF, #060606 üzerinde 3.7:1 —
     büyük metinde (18px+) geçer, KÜÇÜK metinde geçmez. */
  --accent: #4353FF;
  /* accent-lt = küçük metin/etiket. #060606 üzerinde 6.4:1, WCAG AA. */
  --accent-lt: #7B87FF;
  --ok: #34c759;
  --pad: clamp(20px, 4vw, 64px);
  --display: 'Anton', Impact, sans-serif;
  --body: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

/* Klavye odağı — her sayfada görünür (eskiden yalnız style.css'te vardı) */
:focus-visible { outline: 2px solid var(--accent-lt); outline-offset: 3px; border-radius: 4px; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
li { list-style: none; }
a { color: inherit; text-decoration: none; }
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  color: var(--dim);
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 var(--pad); }

/* Nav */
.tnav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: rgba(6,6,6,.92);
  backdrop-filter: blur(8px); z-index: 50;
}
.tnav__logo { font-family: var(--mono); font-size: 13px; letter-spacing: .08em; }
.tnav__logo span { color: var(--accent-lt); }
.tnav__links { display: flex; gap: 22px; }
.tnav__links a { font-family: var(--mono); font-size: 11px; color: var(--dim); text-transform: lowercase;
  transition: color .15s ease; }
.tnav__links a:hover, .tnav__links a[aria-current="page"] { color: var(--bone); }
.tnav__cta {
  font-family: var(--mono); font-size: 11px; padding: 9px 16px;
  border: 1px solid var(--line-strong); border-radius: 999px;
  transition: background-color .15s ease, color .15s ease, transform 160ms var(--ease-out);
}
.tnav__cta:hover { background: var(--bone); color: var(--ink); }
.tnav__cta:active { transform: scale(0.97); }

/* Hamburger — eskiden mobilde linkler tamamen kayboluyordu (menü yoktu) */
/* Çubuklar mutlak konumlu: merkez sabit, açık durumda çizgiler tam üst üste gelir. */
.tnav__toggle {
  display: none; position: relative; background: none; border: 1px solid var(--line-strong);
  border-radius: 9px; width: 40px; height: 36px; cursor: pointer; padding: 0;
  transition: transform 160ms var(--ease-out);
}
.tnav__toggle:active { transform: scale(0.97); }
.tnav__toggle i {
  position: absolute; top: 50%; left: 50%; width: 16px; height: 1.5px;
  margin: -0.75px 0 0 -8px; background: var(--bone);
  transition: transform .2s var(--ease-out), opacity .2s var(--ease-out);
}
.tnav__toggle i:nth-child(1) { transform: translateY(-5px); }
.tnav__toggle i:nth-child(3) { transform: translateY(5px); }
.tnav__toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(0) rotate(45deg); }
.tnav__toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.tnav__toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(0) rotate(-45deg); }

@media (max-width: 640px) {
  .tnav { flex-wrap: wrap; }
  .tnav__toggle { display: grid; }
  .tnav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); box-shadow: 0 20px 40px rgba(0,0,0,.5);
    border-bottom: 1px solid var(--line); padding: 8px var(--pad) 16px; display: none;
  }
  .tnav__links[data-open] { display: flex; }
  .tnav__links a { padding: 14px 0; font-size: 13px; border-bottom: 1px solid var(--line); }
  .tnav__links a.tnav__cta { margin-top: 14px; text-align: center; border-bottom: 0; padding: 13px 16px; }
}

/* Hero */
.thero { padding: clamp(56px, 10vw, 120px) 0 clamp(36px, 6vw, 72px); }
.thero__eyebrow { margin-bottom: 18px; }
.thero h1 {
  font-family: var(--display);
  font-size: clamp(38px, 7vw, 86px);
  line-height: 1.02; text-transform: uppercase; letter-spacing: .01em;
  max-width: 15ch;
}
.thero h1 .hl { color: var(--accent); }
.thero__sub { margin-top: 24px; max-width: 58ch; color: #c9c9c2; font-size: clamp(16px, 1.6vw, 19px); }
.thero__actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .04em;
  padding: 14px 24px; border-radius: 999px; border: 1px solid var(--line-strong);
  cursor: pointer; background: none; color: var(--bone);
  /* `all` yerine açık liste: transform/filter kazara animasyona girmesin */
  transition: background-color .15s ease, color .15s ease, border-color .15s ease,
              transform 160ms var(--ease-out);
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn--primary:hover { background: #5a68ff; border-color: #5a68ff; }
/* #1faa53 + beyaz metin 3.0:1 idi (12px için AA altı) → koyulaştırıldı, 5.1:1 */
.btn--wa { background: #157F3D; border-color: #157F3D; color: #fff; }
.btn--wa:hover { background: #1a9449; border-color: #1a9449; }
.btn--ghost:hover { background: var(--bone); color: var(--ink); }

/* Proof bar */
.proof {
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.proof span { font-family: var(--mono); font-size: 11px; color: var(--dim); }
.proof b { color: var(--bone); font-weight: 400; }

/* Sections */
.sec { padding: clamp(48px, 8vw, 96px) 0; }
.sec__head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 34px; }
.sec__index { font-family: var(--mono); font-size: 11px; color: var(--accent-lt); }
.sec h2 {
  font-family: var(--display); font-size: clamp(26px, 4vw, 44px);
  text-transform: uppercase; letter-spacing: .01em;
}

/* Paket kartları */
.packs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .packs { grid-template-columns: 1fr; } }
.pack {
  border: 1px solid var(--line); border-radius: 14px; padding: 26px 24px;
  background: var(--ink-2); display: flex; flex-direction: column; gap: 14px;
}
.pack--hot { border-color: var(--accent); position: relative; }
.pack__badge {
  position: absolute; top: -11px; left: 22px; background: var(--accent); color: #fff;
  font-family: var(--mono); font-size: 10px; padding: 3px 10px; border-radius: 999px;
}
.pack__label { font-family: var(--mono); font-size: 11px; color: var(--dim); }
.pack h3 { font-size: 21px; font-weight: 500; line-height: 1.25; }
.pack__desc { color: #b9b9b1; font-size: 14.5px; }
.pack ul { display: flex; flex-direction: column; gap: 8px; margin-top: 2px; }
.pack ul li { font-size: 14px; color: #c9c9c2; padding-left: 18px; position: relative; }
.pack ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent-lt); }
.pack__price { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.pack__price b { display: block; font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent-lt); }
.pack__price span { display: block; font-family: var(--mono); font-size: 11px; color: var(--dim); margin-top: 3px; }

/* Adımlar */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step { border-top: 1px solid var(--line-strong); padding-top: 18px; }
.step__n { font-family: var(--mono); color: var(--accent-lt); font-size: 12px; }
.step h3 { font-size: 18px; font-weight: 500; margin: 8px 0 6px; }
.step p { font-size: 14.5px; color: #b9b9b1; }

/* Güvence */
.pledge {
  border: 1px dashed var(--line-strong); border-radius: 14px;
  padding: 26px; text-align: center; font-size: clamp(16px, 2vw, 20px);
}
.pledge b { color: var(--accent-lt); font-weight: 500; }

/* Vaka kartları */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .cases { grid-template-columns: 1fr; } }
.case {
  border: 1px solid var(--line); border-radius: 14px; padding: 24px;
  background: var(--ink-2);
}
.case__tag { font-family: var(--mono); font-size: 10px; color: var(--accent-lt); }
.case h3 { font-size: 19px; font-weight: 500; margin: 10px 0 8px; }
.case p { font-size: 14.5px; color: #b9b9b1; }
.case__facts { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.case__facts li { font-family: var(--mono); font-size: 11px; color: var(--dim); }
.case__facts b { color: var(--bone); font-weight: 400; }

/* Vaka detay (vaka.html) */
.case-full { border-top: 1px solid var(--line-strong); padding: 34px 0; display: grid; grid-template-columns: 240px 1fr; gap: 28px; }
@media (max-width: 760px) { .case-full { grid-template-columns: 1fr; gap: 12px; } }
.case-full h3 { font-family: var(--display); font-size: 24px; text-transform: uppercase; }
.case-full .meta { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.case-full .meta span { font-family: var(--mono); font-size: 11px; color: var(--dim); }
.case-full p { color: #c9c9c2; font-size: 15.5px; margin-bottom: 12px; }
.case-full ul { display: flex; flex-direction: column; gap: 8px; }
.case-full ul li { font-size: 14.5px; color: #c9c9c2; padding-left: 18px; position: relative; }
.case-full ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent-lt); }

/* SSS */
.faq { display: flex; flex-direction: column; }
.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-size: 16.5px; font-weight: 500; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::after { content: '+'; color: var(--accent-lt); font-family: var(--mono); }
.faq details[open] summary::after { content: '–'; }
.faq details p { margin-top: 10px; color: #b9b9b1; font-size: 14.5px; max-width: 70ch; }

/* Form */
.leadform { max-width: 620px; }
.leadform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .leadform .row { grid-template-columns: 1fr; } }
.leadform label { display: block; margin-bottom: 14px; }
.leadform label span { display: block; font-family: var(--mono); font-size: 11px; color: var(--dim); margin-bottom: 6px; }
.leadform input, .leadform select, .leadform textarea {
  width: 100%; background: var(--ink-2); border: 1px solid var(--line-strong);
  border-radius: 10px; color: var(--bone); font-family: var(--body); font-size: 15px;
  padding: 12px 14px;
  transition: border-color .15s ease;
}
/* `outline: none` idi: klavye kullanıcısı dönüşüm formunda nerede olduğunu göremiyordu.
   Fare tıklamasında halka çıkmasın diye :focus değil :focus-visible kullanılıyor. */
.leadform input:focus-visible, .leadform select:focus-visible, .leadform textarea:focus-visible {
  outline: 2px solid var(--accent-lt); outline-offset: 2px; border-color: var(--accent-lt);
}
.leadform input:focus, .leadform select:focus, .leadform textarea:focus { border-color: var(--accent-lt); }
.leadform textarea { min-height: 110px; resize: vertical; }
.leadform .hp { position: absolute; left: -9999px; opacity: 0; }
.leadform__msg { margin-top: 14px; font-family: var(--mono); font-size: 12px; display: none; }
.leadform__msg.ok { display: block; color: var(--ok); }
.leadform__msg.err { display: block; color: #ff6b5e; }

/* Hakkımda */
.bio { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 800px) { .bio { grid-template-columns: 1fr; } }
.bio p { color: #c9c9c2; font-size: clamp(15.5px, 1.6vw, 17.5px); margin-bottom: 16px; }
.bio .hl { color: var(--bone); background: rgba(67,83,255,.18); padding: 0 4px; }
.bio__meta { display: flex; flex-direction: column; gap: 10px; border: 1px solid var(--line); border-radius: 14px; padding: 22px; background: var(--ink-2); }
.bio__meta div { display: grid; grid-template-columns: 110px 1fr; gap: 10px; font-family: var(--mono); font-size: 12px; }
.bio__meta .k { color: var(--dim); }

/* Footer */
.tfoot { border-top: 1px solid var(--line); padding: 34px var(--pad); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.tfoot span, .tfoot a { font-family: var(--mono); font-size: 11px; color: var(--dim); }
.tfoot a:hover { color: var(--bone); }

/* CTA band */
.ctaband { background: var(--accent); color: #fff; border-radius: 16px; padding: clamp(28px, 5vw, 48px); display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ctaband h2 { font-family: var(--display); font-size: clamp(24px, 3.6vw, 40px); text-transform: uppercase; }
.ctaband .btn { background: #fff; color: var(--ink); border-color: #fff; }

/* ============================================================
   v2 — 2026-07-17: alche.studio çalışmasından öğrenilen teknikler,
   OZGUR·AI markasıyla: grid-oda, HUD, outline başlık, blueprint flip,
   perspektifli vaka ekranları, reveal animasyonları. (Kendi sistemimiz.)
   ============================================================ */

:root {
  --holo-1: #4353FF;
  --holo-2: #4aa8ff;
  --holo-3: #7dffc3;
}

/* ── grid-oda zemini (koyu) ── */
.gridroom {
  background-color: #050505;
  background-image:
    linear-gradient(rgba(237,237,232,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,237,232,0.05) 1px, transparent 1px),
    linear-gradient(rgba(237,237,232,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,237,232,0.018) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px, 24px 24px, 24px 24px;
}

/* ── açık blueprint zemini (tema flip bölümü) ── */
.blueprint {
  background-color: #e8eaec;
  background-image:
    radial-gradient(circle at center, rgba(6,6,6,0.25) 1px, transparent 1.6px),
    linear-gradient(rgba(6,6,6,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,6,6,0.05) 1px, transparent 1px);
  background-size: 250px 250px, 125px 125px, 125px 125px;
  color: #111;
}
.blueprint .mono { color: rgba(6,6,6,0.55); }

/* ── outline display başlık ── */
.outline-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.95;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(237,237,232,0.5);
  letter-spacing: 0.02em;
}
.blueprint .outline-title { -webkit-text-stroke-color: rgba(6,6,6,0.65); }

/* ── siyah bar vurgu (satır satır) ── */
.hl-bar {
  background: #060606; color: #EDEDE8;
  padding: 4px 14px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 2.05;
}

/* ── holo aksan ── */
.holo-bar {
  background: linear-gradient(160deg, var(--holo-1), var(--holo-2), var(--holo-3));
  box-shadow: 0 24px 70px rgba(67,83,255,0.35);
}
.holo-text {
  background: linear-gradient(120deg, var(--holo-1), var(--holo-2), var(--holo-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ── HUD (sağ üst sistem okumaları — bizim gerçek otomasyon durumumuz) ── */
.hud {
  position: fixed; right: clamp(16px, 3vw, 50px); top: 130px; z-index: 40;
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px;
  mix-blend-mode: difference; pointer-events: none;
}
.hud span { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: rgba(237,237,232,0.75); }
.hud .val { color: #fff; }
@media (max-width: 900px) { .hud { display: none; } }
/* Nokta eskiden 1.6s sonsuz yanıp sönüyordu. Sürekli görülen bir öğede sonsuz döngü
   dikkat çalar ve hiçbir şey iletmez; sabit yeşil zaten "çalışıyor" demek. */
.hud .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); display: inline-block; margin-right: 6px; }

/* ── sol kenar bölüm göstergesi ── */
.sideind {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%); z-index: 40;
  display: flex; flex-direction: column; gap: 20px; mix-blend-mode: difference;
}
.sideind div { display: flex; align-items: center; gap: 12px; }
.sideind i { display: block; height: 1px; width: 12px; background: #fff; opacity: .35; transition: width .3s var(--ease-out), opacity .3s ease; }
.sideind span { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; color: #fff; opacity: 0; transition: opacity .3s; text-transform: uppercase; }
.sideind div.on i { width: 22px; opacity: 1; }
.sideind div.on span { opacity: 1; }
@media (max-width: 900px) { .sideind { display: none; } }

/* ── nav'ı blend-difference yap (açık bölümde otomatik ters döner) ── */
.tnav--blend { background: transparent; backdrop-filter: none; border-bottom: 0; mix-blend-mode: difference; }

/* ── reveal (fade-up) ── */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.rv.in { opacity: 1; transform: none; }

/* ── dev hero wordmark + hayalet tekrar ── */
.bighero { position: relative; min-height: 92dvh; overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.bighero__ghost {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 2vw;
  opacity: .05; pointer-events: none; user-select: none;
}
.bighero__ghost span { font-family: var(--display); font-size: 15vw; line-height: 1; white-space: nowrap; letter-spacing: .1em; }
.bighero__glow {
  position: absolute; left: 50%; top: -10%; width: 90%; height: 120%; transform: translateX(-50%);
  background: radial-gradient(45% 55% at 50% 38%, rgba(67,83,255,0.4) 0%, rgba(67,83,255,0.12) 45%, transparent 72%);
  filter: blur(12px); pointer-events: none;
}
.bighero h1 { position: relative; font-family: var(--display); font-size: clamp(54px, 10vw, 150px); line-height: .98; text-transform: uppercase; letter-spacing: .01em; max-width: 14ch; }
.bighero h1 .hl { color: var(--accent); }

/* ── perspektifli "ekran" kart (vaka/paket medyası) ── */
.screenwrap { perspective: 1200px; }
.screen {
  border-radius: 12px; position: relative; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(237,237,232,0.1);
  transform: rotateY(-7deg); transition: transform .5s var(--ease-out);
}
.screen--r { transform: rotateY(7deg); }
/* Dokunmatikte tap sahte hover tetikleyip 3D dönüşü takılı bırakıyordu */
@media (hover: hover) and (pointer: fine) {
  .screenwrap:hover .screen { transform: rotateY(-2deg) scale(1.01); }
  .screenwrap:hover .screen--r { transform: rotateY(2deg) scale(1.01); }
}
.screen::after {
  content: ""; position: absolute; inset: 0; opacity: .35; mix-blend-mode: multiply;
  background-image: linear-gradient(rgba(0,0,0,0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.25) 1px, transparent 1px);
  background-size: 3px 3px;
}
.screen .no { position: absolute; bottom: 14px; right: 18px; font-family: var(--mono); font-size: 12px; letter-spacing: .2em; color: rgba(255,255,255,.75); z-index: 2; }

/* ── vaka pinned karuseli ── */
.vstage { position: relative; }
.vstage__sticky { position: sticky; top: 0; height: 100dvh; overflow: hidden; }
.vstage__scene { position: absolute; inset: 0; perspective: 1400px; perspective-origin: 50% 45%; }
.vcard {
  position: absolute; left: 50%; top: 42%; width: min(56vw, 780px); aspect-ratio: 16/9;
  border-radius: 12px; box-shadow: 0 40px 120px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(237,237,232,0.12);
  will-change: transform, opacity;
}
.vmeta { position: absolute; bottom: 62px; left: 6vw; max-width: 620px; }
.vmeta__item { transition: opacity .3s; }
.vmeta__item h3 { font-family: var(--display); font-size: clamp(26px, 2.8vw, 40px); font-weight: 500; line-height: 1.05; margin: 10px 0 14px; }
@media (max-width: 880px) {
  .vcard { width: 86vw; top: 38%; }
  .vmeta { bottom: 40px; }
}

/* nav tema-swap: açık bölge üzerinde koyu renkler */
.tnav { transition: background .3s ease; }
.tnav--dark { background: rgba(232,234,236,.9); border-bottom-color: rgba(6,6,6,.1); }
.tnav--dark .tnav__logo, .tnav--dark .tnav__links a:hover, .tnav--dark .tnav__links a[aria-current="page"], .tnav--dark .tnav__cta { color: #111; }
.tnav--dark .tnav__links a { color: rgba(6,6,6,.55); }
.tnav--dark .tnav__cta { border-color: rgba(6,6,6,.4); }
.tnav--dark .tnav__cta:hover { background: #111; color: #EDEDE8; }

/* ============================================================
   HAREKET AZALTMA
   Bu dosyada hiç prefers-reduced-motion yoktu: reveal'lar, Lenis smooth scroll,
   pinned karusel ve 3D dönüşler duyarlı kullanıcıda da tam güçte çalışıyordu.
   Kural (Emil Kowalski): "daha az ve daha yumuşak, sıfır değil" —
   opacity/renk geçişleri kalır, yer değiştiren hareket gider.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  /* reveal: içerik görünür başlasın, kaydırma yok */
  .rv { opacity: 1; transform: none; transition: none; }

  /* 3D / perspektif hareketleri düz */
  .screen, .screen--r { transform: none; transition: none; }
  .screenwrap:hover .screen, .screenwrap:hover .screen--r { transform: none; }

  /* pinned vaka karuseli: pin yok, kartlar normal akışta alt alta */
  .vstage__sticky { position: static; height: auto; overflow: visible; }
  .vstage__scene { position: static; perspective: none; }
  .vcard {
    position: static; left: auto; top: auto; width: 100%; transform: none !important;
    opacity: 1 !important; margin-bottom: 16px; will-change: auto;
  }
  .vmeta { position: static; margin-top: 20px; }
  .vmeta__item { position: static !important; visibility: visible !important;
    opacity: 1 !important; transition: none; }

  /* kenar göstergesi ve nav geçişleri sabit */
  .sideind i, .sideind span, .tnav, .vmeta__item { transition: none; }
  .tnav__toggle i { transition: none; }

  /* geriye kalan her şey için güvenlik ağı */
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
