﻿/* ============================================================
   EasyHR — Premium HR Platformu
   Aesop palette — kraft beyaz × grafit × toprak
   Yazan: TLS Yazılım · 2026
   ============================================================ */

/* -----  1. Tokens  ----- */
:root {
  /* Kağıt ölçeği — soğuk beyaz, açık mavi tonlar */
  --parchment-0: #FBFAF7;     /* kart yüzeyi, krem */     /* kart yüzeyi, saf */
  --parchment-1: #F6F5F0;     /* sayfa zemini, kırık beyaz */     /* sayfa zemini */
  --parchment-2: #E8E5DE;     /* aydınlık şerit, kraft */     /* aydınlık şerit */
  --parchment-3: #D5D2C8;     /* hafif gölge */     /* hafif gölge */
  --parchment-4: #B8B4A8;     /* ağır kâğıt */     /* ağır kağıt */

  /* Mürekkep ölçeği — navy / slate */
  --ink-1: #0F1A24;           /* en koyu grafit */           /* en koyu */
  --ink-2: #1F2A38;           /* gövde grafit */           /* gövde */
  --ink-3: #2A3343;           /* ikincil */           /* ikincil */
  --ink-4: #4A5663;           /* silik */           /* silik */
  --ink-5: #8D959E;           /* dumanlı */           /* dumanlı */

  /* EasyHR markası — mavi tonlar */
  --gold-1: #0070B0;          /* aksant — kraft kahverengi */          /* aksant — birincil mavi */
  --gold-2: #20A0E0;          /* aksant — açık kraft */          /* aksant — parlak */
  --gold-3: #6FB5DC;          /* aksant — uçuk */          /* aksant — açık */
  --rubric: #003E63;          /* vurgu — kırmızı mürekkep */          /* vurgu mavisi — eski "kırmızı mürekkep" rolü */
  --rubric-2: #002A45;
  --lapis:  #13202D;          /* koyu grafit — başlık/altbilgi */          /* koyu lacivert — başlık/altbilgi */
  --cyan-1: #20A0E0;          /* zeytin yeşili aksant */          /* turkuaz aksant */
  --cyan-2: #6FB5DC;          /* canlı turkuaz */

  /* Utility */
  --stain: rgba(107, 90, 69, 0.05);
  --hairline: rgba(42, 38, 32, 0.18);
  --hairline-strong: rgba(42, 38, 32, 0.42);
  --shadow-book: 0 30px 60px -40px rgba(42, 38, 32, 0.18);

  /* Type */
  --ff-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --ff-body:    "EB Garamond", "Cormorant Garamond", Georgia, serif;
  --ff-smallcaps: "Cormorant SC", "Cormorant Garamond", Georgia, serif;
  --ff-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Scale (fluid) — bumped ~+2px across the board for better readability */
  --fs-xs:  clamp(13px, 0.74vw + 10px, 15px);
  --fs-sm:  clamp(15px, 0.8vw + 11px, 17px);
  --fs-md:  clamp(18px, 0.5vw + 16px, 21px);
  --fs-lg:  clamp(21px, 0.8vw + 18px, 26px);
  --fs-xl:  clamp(28px, 2vw + 20px, 44px);
  --fs-2xl: clamp(40px, 4.5vw + 20px, 80px);
  --fs-3xl: clamp(56px, 7vw + 22px, 130px);
  --fs-giant: clamp(88px, 13vw + 22px, 242px);

  --leading-tight: 1.05;
  --leading-body: 1.62;
  --leading-loose: 1.78;

  /* Layout */
  --page-max: 1480px;
  --gutter: clamp(20px, 4vw, 64px);
  --folio-margin: clamp(28px, 6vw, 112px);
}

/* -----  2. Reset-ish  ----- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: var(--parchment-2);
}
body {
  font-family: var(--ff-body);
  font-size: var(--fs-md);
  line-height: var(--leading-body);
  font-weight: 500;
  color: var(--ink-1);
  font-feature-settings: "liga", "dlig", "onum" 1, "kern";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: var(--parchment-1);
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Parchment atmosphere — layered, not flat.
   We paint stains, grain, a faint vertical spine and
   warm tone variations. */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body::before {
  /* İnce dokuma — soğuk gri-mavi gürültü */
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06  0 0 0 0 0.12  0 0 0 0 0.22  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.28'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.35;
}
body::after {
  /* Mavi vignette — yumuşak atmosfer */
  background:
    radial-gradient(1200px 800px at 12% -8%, rgba(18,104,216,0.09), transparent 60%),
    radial-gradient(900px 700px at 92% 110%, rgba(24,174,202,0.08), transparent 55%),
    radial-gradient(700px 600px at 80% 22%, rgba(10,26,46,0.06), transparent 55%),
    linear-gradient(180deg, rgba(234,243,255,0.5), transparent 30%, rgba(220,233,246,0.25));
  mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

::selection {
  background: var(--cyan-2);
  color: var(--ink-1);
}

/* -----  3. Typography primitives  ----- */
.h-display {
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: var(--leading-tight);
  color: var(--ink-1);
}
.h-display--roman {
  font-style: normal;
  font-weight: 600;
}
.smallcaps {
  font-family: var(--ff-smallcaps);
  font-feature-settings: "smcp", "c2sc";
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: var(--fs-sm);
  color: var(--ink-3);
}
.mono { font-family: var(--ff-mono); letter-spacing: 0.02em; }
.italic { font-style: italic; }
.kicker {
  font-family: var(--ff-smallcaps);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  color: var(--rubric);
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--rubric);
}
.rubric {
  color: var(--rubric);
}
.rubric-caps {
  color: var(--rubric);
  font-variant: small-caps;
  letter-spacing: 0.12em;
  font-weight: 600;
}

/* Drop cap / illuminated initial */
.dropcap::first-letter,
.dropcap-letter {
  font-family: var(--ff-display);
  font-weight: 700;
  font-style: normal;
  color: var(--rubric);
  font-size: 4.8em;
  line-height: 0.82;
  float: left;
  margin: 0.06em 0.12em 0 0;
  padding: 0.15em 0.18em 0.05em 0;
  background:
    linear-gradient(135deg, var(--gold-3) 0%, var(--gold-1) 45%, var(--gold-2) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5),
    0 -1px 0 rgba(10, 26, 46, 0.18);
  position: relative;
}
.dropcap--rubric::first-letter {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--rubric);
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

/* İlumineli büyük harf — mavi/turkuaz gradyan */
.illum {
  position: relative;
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--rubric) !important;
  background: none !important;
  -webkit-text-fill-color: var(--rubric) !important;
  -webkit-background-clip: border-box !important;
          background-clip: border-box !important;
  padding: 0 0.06em;
  line-height: 0.95;
}
.illum::before {
  content: "";
  position: absolute;
  inset: -0.15em -0.18em;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(24, 174, 202, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(18, 104, 216, 0.08), rgba(18, 104, 216, 0.02));
  border: 1px solid var(--gold-1);
  z-index: -1;
  box-shadow:
    inset 0 0 0 1px rgba(123, 191, 249, 0.35),
    inset 0 0 24px rgba(10, 79, 184, 0.10);
}

/* -----  4. Page frame / folio  ----- */
.folio {
  position: relative;
  z-index: 1;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(24px, 3vw, 48px) var(--gutter) 0;
}

/* Sayfa çerçevesi, alt bölüm meta'sı ve üst köşe yazıları — kaldırıldı (2026-04-19) */
.folio-frame,
.folio-meta,
.folio-corner { display: none !important; }

/* Top corner ornaments */
.folio-corner {
  position: fixed;
  top: 28px;
  z-index: 6;
  font-family: var(--ff-smallcaps);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--ink-4);
  text-transform: uppercase;
  pointer-events: none;
}
.folio-corner.left { left: 48px; }
.folio-corner.right { right: 48px; }

/* -----  5. Header / Nav  ----- */
.codex-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: clamp(8px, 1.05vw, 16px) var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.8rem, 1.6vw, 2rem);
  border-bottom: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(234, 243, 255, 0.82), rgba(246, 249, 253, 0.62));
  backdrop-filter: blur(10px) saturate(1.05);
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.codex-header.is-scrolled {
  /* Yükseklik sabit bırakıldı; sadece gölge/border/arka plan değişiyor.
     Böylece scrollY=16 eşiğinde layout sıçraması ve titreme oluşmuyor. */
  border-bottom-color: var(--hairline);
  box-shadow: 0 14px 30px -26px rgba(10, 26, 46, 0.35);
  background:
    linear-gradient(180deg, rgba(246, 249, 253, 0.94), rgba(234, 243, 255, 0.88));
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .codex-header { background: var(--parchment-1); }
  .codex-header.is-scrolled { background: var(--parchment-1); }
}
.codex-header .seal {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  justify-self: end;
}
.codex-header .seal-logo {
  display: block;
  width: auto;
  height: clamp(52px, 4.2vw, 68px);
  max-width: 220px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 1px 0 rgba(8, 63, 145, 0.08));
}
.codex-header .seal:hover .seal-logo {
  transform: translateY(-1px) scale(1.02);
}
.codex-header .seal-word {
  display: flex; flex-direction: column; line-height: 1;
  padding-left: 0.6rem;
  border-left: 1px solid var(--hairline);
}
.codex-header .seal-word i {
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 4px;
  font-style: normal;
}
.codex-nav {
  justify-self: center;
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(0.6rem, 1.3vw, 1.7rem);
  font-family: var(--ff-smallcaps);
  font-size: clamp(12px, 0.4vw + 9.5px, 14px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  align-items: center;
  white-space: nowrap;
}
.codex-nav a {
  position: relative;
  padding: 8px 3px 10px;
  white-space: nowrap;
  transition: color 0.25s;
}
.codex-nav a::before {
  /* Bottom underline indicator — thin gold hairline, grows on hover/current */
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--rubric);
  transition: width 0.3s ease;
}
.codex-nav a:hover { color: var(--ink-1); }
.codex-nav a.is-current { color: var(--gold-1); }
.codex-nav a:hover::before,
.codex-nav a.is-current::before { width: 100%; background: var(--gold-1); }
.codex-cta {
  font-family: var(--ff-smallcaps);
  letter-spacing: 0.2em;
  font-size: 12.5px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 11px 18px;
  border: 1px solid var(--ink-1);
  color: var(--ink-1);
  background: var(--parchment-0);
  position: relative;
  transition: all 0.35s;
  display: inline-flex; align-items: center; gap: 0.8rem;
}
.codex-cta::after {
  content: "→";
  font-family: var(--ff-display);
  transition: transform 0.3s;
}
.codex-cta:hover {
  background: var(--ink-1);
  color: var(--parchment-0);
  box-shadow: 4px 4px 0 var(--gold-1);
}
.codex-cta:hover::after { transform: translateX(4px); }

/* mobile nav */
.nav-toggle { display: none; }
@media (max-width: 980px) {
  .codex-header { grid-template-columns: auto auto; }
  .codex-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 86vw);
    background: var(--parchment-0);
    border-left: 1px solid var(--hairline-strong);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 40px;
    transform: translateX(102%);
    transition: transform 0.4s ease;
    z-index: 30;
  }
  .codex-nav.is-open { transform: none; }
  .codex-cta { display: none; }
  .nav-toggle {
    display: inline-flex;
    background: transparent;
    border: 1px solid var(--ink-1);
    padding: 10px 16px;
    font-family: var(--ff-smallcaps);
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--ink-1);
    z-index: 40;
  }
}

/* -----  6a. Hero statue plate (Michelangelo · David)  ----- */
.opening-folio.has-statue { position: relative; }

.statue-plate {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 16%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border: none !important;
  border-left: 0 !important;
  border-right: 0 !important;
}
.statue-plate img {
  position: absolute;
  right: -4%;
  top: -2%;
  width: 78%;
  height: 108%;
  object-fit: cover;
  object-position: 40% 30%;
  filter: grayscale(1) contrast(1.08) brightness(1.06) sepia(0.08) hue-rotate(180deg) saturate(0.9);
  mix-blend-mode: multiply;
  opacity: 0.92;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 18%, rgba(0,0,0,0.55) 38%, #000 65%);
          mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 18%, rgba(0,0,0,0.55) 38%, #000 65%);
}
.statue-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(30% 28% at 82% 22%, rgba(24,174,202,0.22), transparent 70%),
    repeating-linear-gradient(0deg, rgba(10,26,46,0.05) 0 1px, transparent 1px 4px);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 18%, rgba(0,0,0,0.55) 38%, #000 65%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 18%, rgba(0,0,0,0.55) 38%, #000 65%);
}
.statue-plate::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.05  0 0 0 0 0.10  0 0 0 0 0.18  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.35'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.35;
}
.opening-folio.has-statue .verso,
.opening-folio.has-statue .recto,
.opening-folio.has-statue .marginalia { position: relative; z-index: 2; }
.opening-folio.has-statue .verso { text-shadow: 0 1px 0 rgba(246,249,253,0.8); }

@media (max-width: 1100px) {
  .statue-plate {
    position: relative;
    inset: auto;
    order: 4;
    height: 360px;
    margin-top: 1.2rem;
  }
  .statue-plate img {
    width: 100%;
    right: 0; top: 0;
    height: 100%;
    -webkit-mask-image: radial-gradient(ellipse 85% 85% at 60% 45%, #000 50%, transparent 92%);
            mask-image: radial-gradient(ellipse 85% 85% at 60% 45%, #000 50%, transparent 92%);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .statue-plate img {
    animation: statue-breathe 22s ease-in-out infinite;
  }
}
@keyframes statue-breathe {
  0%, 100% { transform: scale(1.0) translateY(0); }
  50%      { transform: scale(1.015) translateY(-6px); }
}

/* -----  6. Hero / Opening Folio  ----- */
.opening-folio {
  padding: clamp(80px, 14vw, 240px) var(--gutter);
  min-height: 88vh;
  display: grid;
  align-items: center;
  padding: clamp(40px, 6vw, 96px) 0 clamp(60px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(220px, 260px) 1fr minmax(180px, 220px);
  gap: clamp(24px, 4vw, 80px);
  align-items: stretch;
  position: relative;

}
.opening-folio::before {
  /* spine / rule — sadece sol margin'in bitiminde */
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: calc(260px + clamp(12px, 2vw, 40px));
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--hairline-strong) 20%, var(--hairline-strong) 80%, transparent);
  z-index: 1;
  pointer-events: none;
}
.opening-folio.has-statue::before {
  /* marginalia kaldırıldı; sol çizgiyi de kaldır */
  display: none;
}
/* Bölümler dizini (recto) heroda kaldırıldığında verso'nun daha ferah
   bir alana yayılması için iki-kolonlu variant; heykel hâlâ absolute
   yerleşimiyle sağ tarafı kaplar. */
.opening-folio.has-statue {
  grid-template-columns: minmax(0, 1fr);
  padding-right: clamp(320px, 52vw, 620px);
  align-items: start;
  padding-top: 0;
}

.marginalia {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-4);
  padding-top: clamp(12px, 3vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.marginalia .note {
  position: relative;
  padding-left: 18px;
}
.marginalia .note::before {
  content: "¶";
  position: absolute;
  left: 0; top: 0;
  color: var(--rubric);
  font-family: var(--ff-display);
  font-weight: 700;
  font-style: normal;
}
.marginalia .folio-num {
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-5);
}

.opening-folio .verso {
  display: flex; flex-direction: column; gap: 1.4rem;
  max-width: 44ch;
}
.opening-folio .verso .kicker { margin-bottom: 0.5rem; }

/* === Hero motto — Hero'nun ÜSTÜNDE, sayfa genişliğinde ortada === */
.hero-motto {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: clamp(-32px, -2vw, -16px) auto clamp(10px, 1.2vw, 20px);
  padding: 0 var(--gutter);
  font-family: var(--ff-smallcaps);
  font-size: clamp(10px, 0.6vw + 6px, 12px);
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink-4);
  line-height: 1;
  text-align: center;
}
.hero-motto-text {
  white-space: nowrap;
}
.hero-motto-text em {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--gold-1);
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.55em;
  margin-left: 0.35em;
  vertical-align: -0.08em;
}
.hero-motto-rule {
  display: inline-block;
  width: clamp(40px, 6vw, 96px);
  height: 1px;
  background: var(--ink-4);
  opacity: 0.45;
}
@media (max-width: 720px) {
  .hero-motto { gap: 12px; letter-spacing: 0.24em; }
  .hero-motto-rule { width: 28px; }
  .hero-motto-text em { font-size: 1.3em; }
}
.opening-folio .verso h1 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw + 20px, 140px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  word-spacing: -0.12em;
  color: var(--ink-1);
}
.opening-folio .verso h1 em {
  font-style: italic;
  color: var(--gold-1);
  font-weight: 500;
}
.opening-folio .verso h1 .h1-gap {
  display: inline-block;
  margin-top: 0.18em;
}
.opening-folio .verso h1 .illum { font-size: 1.05em; }

/* === İK kutu — "İK" tek kutuda, sola taşan pozisyon === */
.ik-grup {
  display: inline-block;
  vertical-align: baseline;
  margin-bottom: 0.18em;
  margin-left: clamp(-44px, -1.6vw - 8px, -18px);
}
.ik-kutu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-1);
  padding: 0.04em 0.22em 0.08em;
  line-height: 1;
  color: var(--gold-1);
  background: transparent;
  transition: border-color 0.4s ease, color 0.4s ease;
}
.ik-kutu:hover { border-color: var(--gold-2); color: var(--gold-2); }
.opening-folio .verso .lede {
  font-size: clamp(17px, 1vw + 12px, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  font-family: var(--ff-body);
  font-weight: 400;
  max-width: 52ch;
}

/* Hero font: tüm sayfa weight 500'den etkilenmesin, eski haline dön */
.opening-folio .verso,
.opening-folio .verso h1 { font-weight: 400; color: var(--ink-2); }
.opening-folio .verso .lede::first-letter {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 3.6em;
  line-height: 0.82;
  float: left;
  padding: 0.1em 0.14em 0 0;
  color: var(--rubric);
  text-shadow: 0 2px 0 rgba(234, 243, 255, 0.6);
}
.opening-folio .actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.6rem;
  flex-wrap: wrap;
}
.btn-ink {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 16px 28px;
  background: var(--ink-1);
  color: var(--parchment-0);
  font-family: var(--ff-smallcaps);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--ink-1);
  box-shadow: 5px 5px 0 var(--gold-1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-ink::after { content: "→"; font-family: var(--ff-display); }
.btn-ink:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--gold-1); }
.btn-quill {
  padding: 16px 24px;
  color: var(--ink-1);
  border: 1px solid var(--ink-1);
  font-family: var(--ff-smallcaps);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}
.btn-quill:hover { background: var(--ink-1); color: var(--parchment-0); }

.opening-folio .recto {
  display: flex; flex-direction: column;
  gap: 1.2rem;
  padding-top: clamp(12px, 3vw, 60px);
}
.recto-index {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 17.5px;
  line-height: 1.55;
}
.recto-index .line {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px dotted var(--hairline);
  color: var(--ink-3);
  transition: color 0.25s;
}
.recto-index .line:hover { color: var(--ink-1); }
.recto-index .line .num {
  font-family: var(--ff-smallcaps);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--rubric);
  text-transform: uppercase;
}
.recto-index .line .page {
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-align: right;
  color: var(--ink-5);
}

@media (max-width: 1100px) {
  .opening-folio {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  
  .marginalia { order: 3; }
  .opening-folio .recto { order: 2; }
}

/* -----  7. Section primitives  ----- */
.section { padding: clamp(80px, 12vw, 200px) var(--gutter); max-width: var(--page-max); margin: 0 auto;
  position: relative;
}
.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(24px, 4vw, 80px);
  margin-bottom: clamp(48px, 7vw, 120px);
  align-items: end;
}
.section-intro h2 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--fs-2xl);
  line-height: 0.98;
  color: var(--ink-1);
  letter-spacing: -0.015em;
}
.section-intro h2 em {
  font-style: italic;
  color: var(--rubric);
}
.section-intro .blurb {
  font-size: clamp(16px, 0.6vw + 14px, 19px);
  line-height: 1.66;
  color: var(--ink-3);
  max-width: 58ch;
}
.section-intro .blurb strong {
  font-weight: 500;
  color: var(--ink-1);
  background: linear-gradient(180deg, transparent 62%, rgba(123, 191, 249, 0.55) 62%);
  padding: 0 0.1em;
}
@media (max-width: 900px) {
  .section-intro { grid-template-columns: 1fr; }
}

.rule-gold {
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-1) 10%,
    var(--gold-3) 50%,
    var(--gold-1) 90%,
    transparent 100%);
  position: relative;
  margin: 0;
}
.rule-gold::before,
.rule-gold::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px; height: 6px;
  background: var(--gold-1);
  border: 1px solid var(--ink-1);
  transform: translateY(-50%) rotate(45deg);
}
.rule-gold::before { left: calc(50% - 40px); }
.rule-gold::after { left: calc(50% + 34px); }

/* Mavi ince bölüm ayracı */
.rule-blue {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    #0070B0 12%,
    #20A0E0 50%,
    #0070B0 88%,
    transparent 100%);
  margin: 0;
}

.ornament {
  display: block;
  margin: 1.6rem auto;
  color: var(--rubric);
  font-size: 22px;
  text-align: center;
  font-family: var(--ff-display);
  letter-spacing: 0.5em;
}

/* -----  8. Chapter cards (modules)  ----- */
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.6vw, 28px);
}
.chapter {
  grid-column: span 6;
  position: relative;
  padding: clamp(26px, 3vw, 44px) clamp(24px, 2.6vw, 40px);
  background: linear-gradient(180deg, var(--parchment-0), var(--parchment-1));
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-book);
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.chapter::before {
  /* corner ornament */
  content: "";
  position: absolute;
  top: 10px; left: 10px; right: 10px; bottom: 10px;
  border: 1px solid var(--hairline);
  pointer-events: none;
}
.chapter::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 70px; height: 70px;
  background:
    radial-gradient(circle at 100% 0%, rgba(24, 174, 202, 0.30), transparent 70%);
  pointer-events: none;
}
.chapter:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -50px rgba(12, 17, 32, 0.45);
}
.chapter .num {
  font-family: var(--ff-smallcaps);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--rubric);
  text-transform: uppercase;
}
.chapter h3 {
  margin: 0.6rem 0 1rem;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(24px, 1.6vw + 14px, 34px);
  line-height: 1.05;
  color: var(--ink-1);
  letter-spacing: -0.01em;
}
.chapter h3 em { font-style: italic; color: var(--rubric); }
.chapter p { margin: 0; color: var(--ink-3); max-width: 48ch; font-size: 17.5px; line-height: 1.6; }
.chapter .meta {
  display: flex;
  gap: 18px;
  margin-top: 1.6rem;
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.chapter .meta span {
  display: inline-flex; align-items: center; gap: 6px;
}
.chapter .meta span::before {
  content: "✦";
  color: var(--gold-1);
  font-size: 14px;
}
.chapter--wide { grid-column: span 12; }
.chapter--third { grid-column: span 4; }

@media (max-width: 900px) {
  .chapter, .chapter--third { grid-column: span 12; }
}

/* -----  9. Feature lists / dictionary  ----- */
.dictionary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(28px, 4vw, 80px);
  border-top: 1px solid var(--hairline);
}
.entry {
  padding: clamp(22px, 2.4vw, 32px) 0;
  border-bottom: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.2rem;
  align-items: baseline;
}
.entry .numeral {
  font-family: var(--ff-display);
  font-weight: 700;
  font-style: italic;
  color: var(--gold-1);
  font-size: 34px;
  line-height: 1;
}
.entry dt {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--ink-1);
  margin-bottom: 0.4rem;
  letter-spacing: -0.005em;
}
.entry dt em { font-style: italic; color: var(--rubric); }
.entry dd {
  margin: 0;
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.58;
}
@media (max-width: 900px) {
  .dictionary { grid-template-columns: 1fr; }
}

/* ----- 10. Pull quote / manifesto block ----- */
.manifesto {
  padding: clamp(40px, 6vw, 80px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 48px);
  align-items: center;
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
  background:
    radial-gradient(600px 320px at 50% 0%, rgba(24, 174, 202, 0.12), transparent 70%),
    radial-gradient(600px 320px at 50% 100%, rgba(18, 104, 216, 0.08), transparent 70%);
}
.manifesto blockquote {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(26px, 2.4vw + 14px, 52px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink-1);
  text-align: center;
  position: relative;
}
.manifesto blockquote::before,
.manifesto blockquote::after {
  font-family: var(--ff-display);
  color: var(--gold-1);
  font-size: 1.6em;
  line-height: 0;
  vertical-align: -0.25em;
  font-weight: 700;
}
.manifesto blockquote::before { content: "“"; margin-right: 0.12em; }
.manifesto blockquote::after  { content: "”"; margin-left: 0.12em; }
.manifesto blockquote em { color: var(--rubric); }
.manifesto cite {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--ff-smallcaps);
  font-size: 13px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--ink-4);
}
.manifesto .side {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-4);
  line-height: 1.5;
}
.manifesto .side.right { text-align: right; }
@media (max-width: 900px) {
  .manifesto { grid-template-columns: 1fr; }
  .manifesto .side { text-align: center; }
  .manifesto .side.right { text-align: center; }
}

/* ----- Sıkı dikey ritim (bölüm sayfaları) ----- */
.folio--tight .chapter-open {
  padding-top: clamp(8px, 2vw, 32px);
  padding-bottom: clamp(24px, 4vw, 56px);
}
.folio--tight .section {
  padding-top: clamp(44px, 6vw, 96px);
  padding-bottom: clamp(44px, 6vw, 96px);
}
.folio--tight .section-intro {
  margin-bottom: clamp(32px, 4.5vw, 72px);
}
/* Numara sütunu kaldırıldığında sözlük girişleri tek kolon */
.folio--tight .entry { grid-template-columns: 1fr; }
.entry:not(:has(.numeral)) { grid-template-columns: 1fr; }
/* Çizgisiz sözlük görünümü */
.dictionary--plain { border-top: none; }
.dictionary--plain .entry { border-bottom: none; }
/* Yanında mini animasyon olan sözlük girişleri — animasyon solda, yazı sağda */
.dictionary--plain .entry {
  grid-template-columns: 76px 1fr !important;
  align-items: start;
}
.entry-anim { width: 76px; padding-top: 4px; }
.entry-anim svg { width: 100%; height: auto; display: block; overflow: visible; }
/* Liste işareti: yıldız yerine yanıp sönen mavi nokta */
.folio--tight .list-illum li::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #0070B0;
  box-shadow: 0 0 8px rgba(0, 112, 176, 0.55);
  top: 18px;
  animation: signalBlink 1.8s ease-in-out infinite;
}
.folio--tight .list-illum li:nth-child(2)::before { animation-delay: 0.6s; }
.folio--tight .list-illum li:nth-child(3)::before { animation-delay: 1.2s; }
@media (prefers-reduced-motion: reduce) {
  .folio--tight .list-illum li::before { animation: none; }
}
/* Bölümler arası ince mavi ayraç */
.folio--tight > section + section {
  position: relative;
}
.folio--tight > section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 112, 176, 0.3), transparent);
}

/* Kart meta işaretleri: yıldız yerine mavi nokta */
.folio--tight .chapter .meta span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0070B0;
  flex-shrink: 0;
}

/* ----- İşe Alım: Yaşam Döngüsü Tasarımcısı animasyonu ----- */
.lc-anim .lc-node {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in .lc-anim .ln1 { transition-delay: 0.1s; }
.reveal.in .lc-anim .ln2 { transition-delay: 0.25s; }
.reveal.in .lc-anim .ln3 { transition-delay: 0.4s; }
.reveal.in .lc-anim .ln4 { transition-delay: 0.55s; }
.reveal.in .lc-anim .ln5 { transition-delay: 0.7s; }
.reveal.in .lc-anim .ln6 { transition-delay: 0.85s; }
.reveal.in .lc-anim .ln7 { transition-delay: 1s; }
.reveal.in .lc-anim .lc-node { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .lc-anim .lc-node { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ----- İşe Alım: Kanban aday tahtası ----- */
.kb-wrap {
  border: 1px solid var(--hairline-strong);
  background: var(--parchment-0);
  padding: clamp(20px, 2.6vw, 40px);
  box-shadow: var(--shadow-book);
}
/* Tahta üstü akış hattı — aşamalar boyunca akan noktalar */
.kb-flowline {
  position: relative;
  height: 2px;
  margin-bottom: 1.6rem;
  background: linear-gradient(90deg, rgba(0, 112, 176, 0.12), rgba(0, 112, 176, 0.5), rgba(0, 112, 176, 0.12));
}
.kb-dot {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
  opacity: 0;
}
.kb-wrap.in .kb-dot { animation: kbFlow 5s linear infinite; }
.kb-wrap.in .kb-dot.k2 { animation-delay: 1.7s; }
.kb-wrap.in .kb-dot.k3 { animation-delay: 3.4s; }
@keyframes kbFlow {
  0%   { left: 0; opacity: 0; }
  5%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { left: calc(100% - 8px); opacity: 0; }
}
.kb-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 13px;
}
/* Sütunlar — gerçek kanban şeridi hissi */
.kb-col {
  background: rgba(15, 26, 36, 0.025);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 10px 10px 6px;
}
.kb-head {
  font-family: var(--ff-smallcaps);
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--rubric);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--hairline-strong);
}
.kb-card {
  border: 1px solid var(--hairline);
  border-left: 2px solid rgba(0, 112, 176, 0.45);
  background: var(--parchment-1);
  padding: 10px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.kb-card:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(15, 26, 36, 0.12);
}
/* Etiket çipleri */
.kb-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 7px; }
.kb-tag {
  font-family: var(--ff-smallcaps);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 7px;
  border: 1px solid var(--hairline-strong);
  border-radius: 999px;
  color: var(--ink-3);
  background: var(--parchment-0);
}
/* Hayalet kartlar — üç senaryo, 15 sn'lik ortak döngüde sırayla oynar */
.kb-ghost {
  position: absolute;
  z-index: 3;
  width: calc((100% - 60px) / 6 - 20px);
  padding: 10px;
  border: 1px solid #0070B0;
  border-left: 2px solid #0070B0;
  background: var(--parchment-0);
  box-shadow: 0 10px 24px rgba(15, 26, 36, 0.18);
  pointer-events: none;
  opacity: 0;
  font-family: var(--ff-mono);
  font-size: 13px;
}
.kb-ghost b { font-family: var(--ff-display); font-style: italic; font-size: 16px; }

/* a — elle sürükleme: VİDEO → REFERANS */
.kb-ghost--a {
  top: 112px;
  left: calc(2 * ((100% - 60px) / 6 + 12px) + 10px);
}
/* b — AI otomatik geçiş: BAŞVURU → ÖN ELEME (kesik çerçeve, hızlı, düz) */
.kb-ghost--b {
  top: 168px;
  left: 10px;
  border-style: dashed;
  border-left-style: solid;
}
/* c — teklif kabul: TEKLİF → İŞE BAŞLADI (dolgulu teklif kartı) */
.kb-ghost--c {
  top: 50px;
  left: calc(4 * ((100% - 60px) / 6 + 12px) + 10px);
  background: #6FB5DC;
  border-color: #0F1A24;
  border-left-color: #0F1A24;
}

.kb-wrap.in .kb-ghost--a { animation: kbGhostA 15s ease-in-out 1.5s infinite; }
.kb-wrap.in .kb-ghost--b { animation: kbGhostB 15s ease-in-out 1.5s infinite; }
.kb-wrap.in .kb-ghost--c { animation: kbGhostC 15s ease-in-out 1.5s infinite; }

/* Elle sürükleme: kalkar, eğilir, taşınır, bırakılır */
@keyframes kbGhostA {
  0%    { opacity: 0; transform: translate(0, 0) scale(1) rotate(0deg); }
  3%    { opacity: 1; transform: translate(0, -5px) scale(1.04) rotate(1.4deg); }
  14%   { opacity: 1; transform: translate(calc(100% + 32px), -5px) scale(1.04) rotate(1.4deg); }
  17.5% { opacity: 1; transform: translate(calc(100% + 32px), 0) scale(1) rotate(0deg); }
  23%   { opacity: 0; transform: translate(calc(100% + 32px), 0) scale(1); }
  100%  { opacity: 0; transform: translate(calc(100% + 32px), 0) scale(1); }
}
/* AI otomatik geçiş: kalkmadan, düz ve hızlı kayar */
@keyframes kbGhostB {
  0%, 33% { opacity: 0; transform: translate(0, 0); }
  35%     { opacity: 0.95; transform: translate(0, 0); }
  41%     { opacity: 0.95; transform: translate(calc(100% + 32px), 0); }
  47%     { opacity: 0; transform: translate(calc(100% + 32px), 0); }
  100%    { opacity: 0; transform: translate(calc(100% + 32px), 0); }
}
/* Teklif kabul: kalkar, taşınır, yerleşirken hafifçe parlar */
@keyframes kbGhostC {
  0%, 66% { opacity: 0; transform: translate(0, 0) scale(1); box-shadow: 0 10px 24px rgba(15, 26, 36, 0.18); }
  69%     { opacity: 1; transform: translate(0, -5px) scale(1.04); }
  79%     { opacity: 1; transform: translate(calc(100% + 32px), -5px) scale(1.04); }
  82%     { opacity: 1; transform: translate(calc(100% + 32px), 0) scale(1); box-shadow: 0 0 18px rgba(0, 112, 176, 0.55); }
  89%     { opacity: 0; transform: translate(calc(100% + 32px), 0) scale(1); box-shadow: 0 10px 24px rgba(15, 26, 36, 0.18); }
  100%    { opacity: 0; transform: translate(calc(100% + 32px), 0) scale(1); }
}
.kb-card b {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 16px;
}
.kb-wrap.in .kb-card { animation: kbIn 0.55s ease var(--d, 0s) forwards; }
@keyframes kbIn { to { opacity: 1; transform: none; } }
.kb-more { color: var(--ink-5); }
/* AI skorlu kart */
.kb-card--ai { border-color: var(--gold-1); background: var(--parchment-0); }
.kb-score { color: var(--rubric); }
.kb-sdot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #0070B0;
  margin-right: 5px;
  vertical-align: 1px;
  animation: signalBlink 1.8s ease-in-out infinite;
}
/* Teklif aşamasındaki kart — nabız gibi atar */
.kb-card--offer {
  border: 1px solid #0F1A24;
  background: #6FB5DC;
  box-shadow: 2px 2px 0 #0070B0;
}
.kb-wrap.in .kb-card--offer {
  animation: kbIn 0.55s ease var(--d, 0s) forwards,
             kbOffer 2.6s ease-in-out calc(var(--d, 0s) + 0.8s) infinite;
}
@keyframes kbOffer {
  0%, 100% { box-shadow: 2px 2px 0 #0070B0; }
  50%      { box-shadow: 2px 2px 0 #0070B0, 0 0 16px rgba(0, 112, 176, 0.5); }
}
/* İşe başlamış kart — soluk */
.kb-card--done { }
.kb-wrap.in .kb-card--done { animation: kbInDim 0.55s ease var(--d, 0s) forwards; }
@keyframes kbInDim { to { opacity: 0.7; transform: none; } }
@media (max-width: 980px) {
  .kb-board { grid-template-columns: repeat(3, 1fr); }
  .kb-ghost { display: none; }
}
@media (max-width: 560px) {
  .kb-board { grid-template-columns: repeat(2, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  .kb-card { opacity: 1 !important; transform: none !important; animation: none !important; }
  .kb-card--done { opacity: 0.7 !important; }
  .kb-dot, .kb-sdot { display: none; }
  .kb-ghost { display: none; }
}

/* ----- İşe Alım: Bir gün — dikey omurga zaman çizelgesi ----- */
.gunflow {
  --spine-gap: clamp(24px, 4vw, 56px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  column-gap: var(--spine-gap);
  row-gap: clamp(24px, 3vw, 44px);
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.gunflow-spine {
  grid-column: 2;
  grid-row: 1 / span 4;
  position: relative;
}
.gunflow.in .spine-line { animation: spineDraw 1.4s cubic-bezier(0.65, 0, 0.35, 1) forwards; }
.gunflow.in .spine-pulse { animation: spineFlow 4.5s linear infinite; }
.gunflow.in .spine-pulse.sp2 { animation-delay: 1.5s; }
.gunflow.in .spine-pulse.sp3 { animation-delay: 3s; }

.gun-card {
  position: relative;
  background: linear-gradient(135deg, #FBFAF7, #F2EEE6);
  border: 1px solid rgba(15, 26, 36, 0.22);
  border-radius: 4px;
  padding: clamp(16px, 2vw, 24px) clamp(16px, 2.2vw, 26px);
}
.gun-card:nth-of-type(1) { grid-row: 1; }
.gun-card:nth-of-type(2) { grid-row: 2; }
.gun-card:nth-of-type(3) { grid-row: 3; }
.gun-card:nth-of-type(4) { grid-row: 4; }
.gun-card:nth-of-type(odd)  { grid-column: 1; text-align: right; }
.gun-card:nth-of-type(even) { grid-column: 3; }

.gun-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #0070B0;
  margin-bottom: 0.4rem;
}
.gun-card h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 1.7vw, 26px);
  color: var(--ink-1);
  margin: 0 0 0.5rem;
}
.gun-card p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

/* Karttan omurgaya dal hattı */
.gun-card::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  width: var(--spine-gap);
}
.gun-card:nth-of-type(odd)::after  { left: 100%;  background: linear-gradient(90deg, rgba(0, 112, 176, 0.45), #0070B0); }
.gun-card:nth-of-type(even)::after { right: 100%; background: linear-gradient(90deg, #0070B0, rgba(0, 112, 176, 0.45)); }

/* Omurgadan karta akan nokta */
.gun-card::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0070B0;
  filter: drop-shadow(0 0 3px rgba(0, 112, 176, 0.55));
  opacity: 0;
}
.gun-card:nth-of-type(odd)::before  { right: calc(-1 * var(--spine-gap)); }
.gun-card:nth-of-type(even)::before { left: calc(-1 * var(--spine-gap)); }
.gunflow.in .gun-card:nth-of-type(odd)::before  { animation: ajandaPulse 4.5s linear infinite; }
.gunflow.in .gun-card:nth-of-type(even)::before { animation: ajandaPulseM 4.5s linear infinite; }
.gunflow.in .gun-card:nth-of-type(1)::before { animation-delay: 0.5s; }
.gunflow.in .gun-card:nth-of-type(2)::before { animation-delay: 1.6s; }
.gunflow.in .gun-card:nth-of-type(3)::before { animation-delay: 2.7s; }
.gunflow.in .gun-card:nth-of-type(4)::before { animation-delay: 3.8s; }

@media (max-width: 720px) {
  .gunflow { grid-template-columns: 2px 1fr; }
  .gunflow-spine { grid-column: 1; }
  .gun-card:nth-of-type(odd),
  .gun-card:nth-of-type(even) { grid-column: 2; text-align: left; }
  .gun-card:nth-of-type(odd)::after {
    left: auto;
    right: 100%;
    background: linear-gradient(90deg, #0070B0, rgba(0, 112, 176, 0.45));
  }
  .gun-card:nth-of-type(odd)::before { right: auto; left: calc(-1 * var(--spine-gap)); }
  .gunflow.in .gun-card:nth-of-type(odd)::before { animation-name: ajandaPulseM; }
}
@media (prefers-reduced-motion: reduce) {
  .gunflow .spine-line { animation: none !important; transform: scaleY(1); }
  .gunflow .spine-pulse { display: none; }
  .gun-card::before { display: none; }
}

/* ----- İşe Alım: süreç hunisi ----- */
.huni {
  max-width: 1080px;
  margin: 0 auto;
}
.huni svg { width: 100%; height: auto; display: block; overflow: visible; }

/* ----- Platform: gösterge paneli rotatoru — 5 panel, akarak döner ----- */
.dash-rotator {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 340;
}
.dash-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(60px);
}
.dash-slide svg { width: 100%; height: 100%; display: block; overflow: visible; }
.dash-slide.s1 { animation: dashS1 45s ease-in-out infinite; }
.dash-slide.s2 { animation: dashS2 45s ease-in-out infinite; }
.dash-slide.s3 { animation: dashS3 45s ease-in-out infinite; }
.dash-slide.s4 { animation: dashS4 45s ease-in-out infinite; }
.dash-slide.s5 { animation: dashS5 45s ease-in-out infinite; }
@keyframes dashS1 {
  0%       { opacity: 0; visibility: visible; transform: translateX(60px); }
  2%, 18%  { opacity: 1; visibility: visible; transform: translateX(0); }
  20%, 99% { opacity: 0; visibility: hidden; transform: translateX(-60px); }
  100%     { opacity: 0; visibility: visible; transform: translateX(60px); }
}
@keyframes dashS2 {
  0%, 20%  { opacity: 0; visibility: hidden; transform: translateX(60px); }
  22%, 38% { opacity: 1; visibility: visible; transform: translateX(0); }
  40%, 100%{ opacity: 0; visibility: hidden; transform: translateX(-60px); }
}
@keyframes dashS3 {
  0%, 40%  { opacity: 0; visibility: hidden; transform: translateX(60px); }
  42%, 58% { opacity: 1; visibility: visible; transform: translateX(0); }
  60%, 100%{ opacity: 0; visibility: hidden; transform: translateX(-60px); }
}
@keyframes dashS4 {
  0%, 60%  { opacity: 0; visibility: hidden; transform: translateX(60px); }
  62%, 78% { opacity: 1; visibility: visible; transform: translateX(0); }
  80%, 100%{ opacity: 0; visibility: hidden; transform: translateX(-60px); }
}
@keyframes dashS5 {
  0%, 80%  { opacity: 0; visibility: hidden; transform: translateX(60px); }
  82%, 98% { opacity: 1; visibility: visible; transform: translateX(0); }
  100%     { opacity: 0; visibility: hidden; transform: translateX(-60px); }
}
@media (prefers-reduced-motion: reduce) {
  .dash-slide { animation: none !important; }
  .dash-slide.s1 { opacity: 1; visibility: visible; transform: none; }
}

/* ----- Çalışan Yaşamı: gelişim/ölçüm/veda — kutusuz, açık dizilim ----- */
.veda-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  max-width: 1240px;
  margin: 0 auto;
  text-align: left;
}
.veda-item {
  border-top: 1px solid rgba(0, 112, 176, 0.3);
  padding-top: 1.2rem;
}
.veda-item h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(21px, 1.7vw, 27px);
  color: var(--ink-1);
  margin: 0 0 0.7rem;
  letter-spacing: -0.2px;
}
.veda-item h3 em { color: var(--rubric); }
.veda-item p {
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.veda-item .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 1.1rem;
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.veda-item:nth-child(2) .signal-dot { animation-delay: 0.6s; }
.veda-item:nth-child(3) .signal-dot { animation-delay: 1.2s; }
.veda-item:nth-child(4) .signal-dot { animation-delay: 1.8s; }
@media (max-width: 900px) {
  .veda-list { grid-template-columns: 1fr; }
}

/* ----- Çalışan Yaşamı: performans radarı + çevre kutuları ----- */
.perf-stage {
  --spine-gap: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-areas:
    "b1 radar b3"
    "b2 radar b4";
  grid-template-columns: 1fr minmax(320px, 480px) 1fr;
  column-gap: var(--spine-gap);
  row-gap: clamp(24px, 3vw, 40px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  text-align: left;
}
.perf-radar { grid-area: radar; }
.perf-box.pb1 { grid-area: b1; }
.perf-box.pb2 { grid-area: b2; }
.perf-box.pb3 { grid-area: b3; }
.perf-box.pb4 { grid-area: b4; }
.perf-box {
  position: relative;
  background: linear-gradient(135deg, #FBFAF7, #F2EEE6);
  border: 1px solid rgba(15, 26, 36, 0.22);
  border-radius: 4px;
  padding: clamp(14px, 1.8vw, 22px) clamp(14px, 2vw, 24px);
}
.perf-box h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--ink-1);
  margin: 0 0 0.5rem;
}
.perf-box h4 em { font-style: italic; color: var(--rubric); }
.perf-box p {
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
/* Kutudan radara uzanan hat */
.perf-box::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  width: var(--spine-gap);
}
.perf-box.pb1::after, .perf-box.pb2::after { left: 100%;  background: linear-gradient(90deg, rgba(0, 112, 176, 0.45), rgba(0, 112, 176, 0.1)); }
.perf-box.pb3::after, .perf-box.pb4::after { right: 100%; background: linear-gradient(90deg, rgba(0, 112, 176, 0.1), rgba(0, 112, 176, 0.45)); }
/* Hat üzerinde radara akan nokta */
.perf-box::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0070B0;
  filter: drop-shadow(0 0 3px rgba(0, 112, 176, 0.55));
  opacity: 0;
}
.perf-box.pb1::before, .perf-box.pb2::before { right: calc(-1 * var(--spine-gap)); }
.perf-box.pb3::before, .perf-box.pb4::before { left: calc(-1 * var(--spine-gap)); }
.perf-stage.in .perf-box.pb1::before, .perf-stage.in .perf-box.pb2::before { animation: ajandaPulse 4.5s linear infinite; }
.perf-stage.in .perf-box.pb3::before, .perf-stage.in .perf-box.pb4::before { animation: ajandaPulseM 4.5s linear infinite; }
.perf-stage.in .perf-box.pb1::before { animation-delay: 0.4s; }
.perf-stage.in .perf-box.pb2::before { animation-delay: 1.5s; }
.perf-stage.in .perf-box.pb3::before { animation-delay: 2.6s; }
.perf-stage.in .perf-box.pb4::before { animation-delay: 3.7s; }
@media (max-width: 960px) {
  .perf-stage {
    grid-template-areas: "radar" "b1" "b2" "b3" "b4";
    grid-template-columns: 1fr;
  }
  .perf-box::after, .perf-box::before { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .perf-box::before { display: none; }
}

/* ----- Referanslar — daire logolar, tek satır kayan şerit ----- */
.referanslar {
  padding-top: 0;
  padding-bottom: clamp(40px, 5vw, 80px);
  text-align: center;
}

/* Omurganın devamı: manifest'teki dikey çizgi şeride kadar iner */
.ref-bag {
  position: relative;
  width: 2px;
  /* manifest'in alt padding'ini (inline clamp) geriye sarar + kendi yüksekliği */
  height: calc(clamp(40px, 4.5vw, 80px) + clamp(48px, 6vw, 88px));
  margin: calc(-1 * clamp(40px, 4.5vw, 80px)) auto -1px;
}
.ref-bag-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 112, 176, 0.25), #0070B0);
  transform: scaleY(0);
  transform-origin: top center;
}
.referanslar.in .ref-bag-line { animation: spineDraw 1s ease-out 0.2s forwards; }
/* Çizgi boyunca şeride akan noktalar */
.ref-bag-pulse {
  position: absolute;
  top: 0;
  left: -3px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
  opacity: 0;
}
.referanslar.in .ref-bag-pulse { animation: refBagFlow 2.25s linear infinite; }
.referanslar.in .ref-bag-pulse.rb2 { animation-delay: 1.1s; }
@keyframes refBagFlow {
  0%   { top: 0; opacity: 0; }
  12%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: calc(100% - 8px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ref-bag-line { animation: none !important; transform: scaleY(1); }
  .ref-bag-pulse { display: none; }
}
/* Mobilde omurga solda olduğundan merkez bağlantı gizlenir */
@media (max-width: 720px) {
  .ref-bag { display: none; }
}
.ref-strip {
  overflow: hidden;
  max-width: var(--page-max);
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ref-track {
  display: flex;
  width: max-content;
  animation: refScroll 40s linear infinite;
}
.ref-strip:hover .ref-track { animation-play-state: paused; }
@keyframes refScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ref-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(20px, 2.5vw, 36px);
  padding-right: clamp(20px, 2.5vw, 36px);
}
.ref-logo {
  width: clamp(84px, 8vw, 120px);
  height: clamp(84px, 8vw, 120px);
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(15, 26, 36, 0.18);
  box-shadow: 0 1px 6px rgba(15, 26, 36, 0.07);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.ref-logo img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: auto;
  filter: grayscale(1);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
.ref-logo:hover img { filter: none; opacity: 1; }
/* Omurganın değdiği halka — çerçevesi mavileşir, logosu renklenir */
.ref-logo.lit {
  border-color: #0070B0;
}
.ref-logo.lit img { filter: none; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .ref-track { animation: none; width: 100%; justify-content: center; }
  .ref-row { flex-wrap: wrap; justify-content: center; }
  .ref-row[aria-hidden="true"] { display: none; }
}

/* ----- 11. Footer — Colophon ----- */
.colophon {
  position: relative;
  z-index: 1;
  margin-top: 120px;
  padding: clamp(60px, 8vw, 120px) var(--gutter) 60px;
  background:
    radial-gradient(1000px 500px at 50% 0%, rgba(18, 104, 216, 0.08), transparent 70%),
    linear-gradient(180deg, var(--parchment-2), var(--parchment-3));
  border-top: 1px solid var(--hairline-strong);
}
.colophon::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-1), var(--gold-3), var(--gold-1), transparent);
}
.colophon-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 2fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: start;
}
.colophon-mark {
  display: flex; flex-direction: column; gap: 1rem;
}
.colophon-mark h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: italic;
  font-size: var(--fs-xl);
  margin: 0;
  color: var(--ink-1);
}
.colophon-mark h4 em { color: var(--rubric); }
.colophon-mark p {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 16.5px;
  color: var(--ink-4);
  margin: 0;
  max-width: 40ch;
}
.colophon-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 36px);
}
.colophon-cols h5 {
  font-family: var(--ff-smallcaps);
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--hairline);
}
.colophon-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
/* Başlıksız gezinme bloğu: tek çizgi altında iki kolon */
.colophon-nav { grid-column: span 2; }
.colophon-nav ul {
  display: block;
  columns: 2;
  column-gap: clamp(20px, 3vw, 48px);
}
.colophon-nav li { margin-bottom: 0.5rem; break-inside: avoid; }
@media (max-width: 820px) {
  .colophon-nav { grid-column: span 2; }
}
.colophon-cols a {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--ink-3);
  font-size: 17.5px;
  transition: color 0.25s;
}
.colophon-cols a:hover { color: var(--rubric); }
.colophon-foot {
  max-width: var(--page-max);
  margin: 60px auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.colophon-foot em { color: var(--rubric); font-style: normal; }
@media (max-width: 820px) {
  .colophon-inner { grid-template-columns: 1fr; }
  .colophon-cols { grid-template-columns: 1fr 1fr; }
}

/* ----- 12. Hand-drawn atlas / astrolabe ----- */
.atlas {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  display: grid; place-items: center;
}
.atlas svg { width: 100%; height: 100%; }
.atlas .ring { transform-origin: 50% 50%; animation: rotate-slow 140s linear infinite; }
.atlas .ring-2 { animation-duration: 220s; animation-direction: reverse; }
.atlas .ring-3 { animation-duration: 90s; }
@keyframes rotate-slow { to { transform: rotate(360deg); } }

/* 12.1 — Dış halka etiketleri: merkez etrafında yörüngede dönerler,
   her etiket kendi merkezinde ters yönde döndürülerek daima dik kalır
   (yani yazı okuyucuya her zaman paralel gözükür, ters dönmez). */
.atlas .ring-labels { transform-origin: 50% 50%; animation: rotate-slow 140s linear infinite; }
.atlas .ring-label {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: rotate-slow 140s linear infinite reverse;
}

/* ----- 13. Footnote ----- */
.footnotes {
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-4);
  line-height: 1.55;
  columns: 2;
  column-gap: 3rem;
}
.footnotes p { margin: 0 0 0.6rem; }
.footnotes sup { color: var(--rubric); font-style: normal; font-family: var(--ff-smallcaps); font-size: 12px; margin-right: 4px; }
@media (max-width: 780px) { .footnotes { columns: 1; } }

/* ----- 14. Data tablet / specs ----- */
.tablet {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--hairline-strong);
  background: var(--parchment-0);
  box-shadow: var(--shadow-book);
}
.tablet .cell {
  padding: clamp(18px, 2vw, 28px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  background:
    radial-gradient(220px 80px at 0% 0%, rgba(24, 174, 202, 0.14), transparent 70%);
}
.tablet .cell:last-child { border-right: none; }
.tablet .cell .big {
  font-family: var(--ff-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(38px, 3.4vw + 8px, 64px);
  line-height: 1;
  color: var(--ink-1);
  letter-spacing: -0.02em;
}
.tablet .cell .big em { color: var(--rubric); font-style: italic; }
.tablet .cell .lbl {
  margin-top: 0.6rem;
  font-family: var(--ff-smallcaps);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-4);
}
@media (max-width: 900px) {
  .tablet { grid-template-columns: 1fr 1fr; }
  .tablet .cell:nth-child(2n) { border-right: none; }
}

/* ----- 15. Inline glyph / bullets ----- */
.list-illum { list-style: none; padding: 0; margin: 0; }
.list-illum li {
  padding: 10px 0 10px 38px;
  position: relative;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.58;
  border-bottom: 1px dotted var(--hairline);
}
.list-illum li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 12px;
  color: var(--gold-1);
  font-size: 19.5px;
  font-family: var(--ff-display);
}
.list-illum li strong {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--ink-1);
  font-style: italic;
  font-size: 18.5px;
  display: block;
  margin-bottom: 4px;
}

/* ----- 16. Chapter opener (hero of sub-pages) ----- */
.chapter-open {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 80px);
  padding: clamp(40px, 6vw, 100px) 0;
  align-items: center;
}
.chapter-open .text .folio-tag {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--ff-smallcaps);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--rubric);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}
.chapter-open .text .folio-tag::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--rubric);
}
.chapter-open .text h1 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: var(--fs-3xl);
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--ink-1);
}
.chapter-open .text h1 em { font-style: italic; color: var(--rubric); }
.chapter-open .text h1 .illum { font-size: 1.05em; }
.chapter-open .text .argumentum {
  margin-top: 1.6rem;
  font-size: clamp(16px, 0.6vw + 14px, 20px);
  line-height: 1.62;
  color: var(--ink-3);
  max-width: 54ch;
  font-family: var(--ff-body);
}
.chapter-open .text .argumentum::first-letter {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 3.4em;
  line-height: 0.82;
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--rubric);
}
.chapter-open .diagram {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}
@media (max-width: 980px) {
  .chapter-open { grid-template-columns: 1fr; }
  .chapter-open .diagram { max-width: 420px; justify-self: center; }
}

/* ----- 17. Reveal / scroll ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d-1 { transition-delay: 0.08s; }
.reveal.d-2 { transition-delay: 0.16s; }
.reveal.d-3 { transition-delay: 0.24s; }
.reveal.d-4 { transition-delay: 0.32s; }
.reveal.d-5 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .atlas .ring { animation: none; }
  .atlas .ring-labels, .atlas .ring-label { animation: none; }
}

/* ----- 18. Forms (colophon / iletisim) ----- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2vw, 28px);
}
.form-grid .full { grid-column: 1 / -1; }
.field {
  display: flex; flex-direction: column; gap: 8px;
}
.field label {
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.field input,
.field select,
.field textarea {
  appearance: none;
  border: none;
  border-bottom: 1px solid var(--ink-3);
  background: transparent;
  padding: 10px 2px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  color: var(--ink-1);
  line-height: 1.2;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-5);
  opacity: 0.7;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--rubric);
}
.field textarea { min-height: 160px; resize: vertical; }
@media (max-width: 760px) { .form-grid { grid-template-columns: 1fr; } }

/* Patika chips — radio group styled as codex tabs */
.patika-chip {
  display: block;
  position: relative;
  cursor: pointer;
  font-family: var(--ff-smallcaps);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 12px 14px 12px 16px;
  border: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--parchment-0), var(--parchment-1));
  transition: border-color 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.patika-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.patika-chip span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.patika-chip em {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 14px;
  color: var(--rubric);
  letter-spacing: 0;
  text-transform: none;
}
.patika-chip:hover {
  border-color: var(--ink-3);
  color: var(--ink-1);
  transform: translateY(-1px);
}
.patika-chip:has(input:checked) {
  border-color: var(--ink-1);
  color: var(--ink-1);
  box-shadow: inset 0 -3px 0 var(--rubric);
  background: linear-gradient(180deg, #fbf7eb, #f4e9cb);
}
.patika-chip:has(input:focus-visible) {
  outline: 2px solid var(--rubric);
  outline-offset: 3px;
}

/* ----- 19. Utilities ----- */
.hidden-until-md { display: none; }
@media (min-width: 760px) { .hidden-until-md { display: block; } }
.center { text-align: center; }

/* spacing tokens */
.mt-xs { margin-top: 0.4rem; } .mt-sm { margin-top: 0.8rem; } .mt-md { margin-top: 1.6rem; } .mt-lg { margin-top: 2.6rem; } .mt-xl { margin-top: 4rem; }
.mb-xs { margin-bottom: 0.4rem; } .mb-sm { margin-bottom: 0.8rem; } .mb-md { margin-bottom: 1.6rem; } .mb-lg { margin-bottom: 2.6rem; }

/* ----- 20. İmleç — normal sistem imleci ----- */
/* Özel imleç kaldırıldı; tarayıcı/işletim sisteminin varsayılan imleci kullanılır. */

/* ============================================================
   21. DIGITAL LAYER — dijital dokunuşlar
   Klasik kodeks estetiğinin üzerine bindirilmiş
   modern HUD / terminal / veri akışı katmanı.
   ============================================================ */

/* 21.1 — Global HUD status strip (header altına) */
.hud-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  padding: 10px clamp(16px, 4vw, 56px);
  background: linear-gradient(90deg,
    rgba(10,26,46,0.96) 0%,
    rgba(20,32,51,0.92) 50%,
    rgba(10,26,46,0.96) 100%);
  color: var(--parchment-2);
  font-family: var(--ff-mono);
  font-size: 13.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid rgba(24,174,202,0.28);
  border-bottom: 1px solid rgba(24,174,202,0.22);
  overflow: hidden;
}
.hud-strip::before,
.hud-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hud-strip::before {
  /* ince dikey tarama çizgileri */
  background-image: repeating-linear-gradient(
    90deg,
    rgba(123,191,249,0.06) 0 1px,
    transparent 1px 3px);
  opacity: 0.6;
}
.hud-strip::after {
  /* yatay tarama ışığı */
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.18), transparent);
  transform: translateX(-100%);
  animation: hud-scan 9s linear infinite;
}
@keyframes hud-scan {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(120%); }
}
.hud-strip > * { position: relative; z-index: 1; }
.hud-strip .hud-left,
.hud-strip .hud-center,
.hud-strip .hud-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hud-strip .hud-center {
  justify-content: center;
  color: #6FB5DC;
  letter-spacing: 0.22em;
}
.hud-strip .hud-right { justify-content: flex-end; }
.hud-strip .hud-label { color: rgba(234,243,255,0.46); }
.hud-strip .hud-value { color: #cfe4ff; font-weight: 500; }
.hud-strip .hud-sep {
  width: 1px; height: 12px;
  background: rgba(123,191,249,0.28);
}

@media (max-width: 780px) {
  .hud-strip {
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 12.5px;
    padding: 8px 18px;
  }
  .hud-strip .hud-center { display: none; }
  .hud-strip .hud-right { justify-content: flex-start; }
}

/* 21.2 — Live pulse dot */
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #20A0E0;
  box-shadow: 0 0 0 0 rgba(24,174,202,0.85);
  animation: live-pulse 1.8s ease-out infinite;
  vertical-align: middle;
  margin-right: 6px;
}
.live-dot.is-warn { background: #f59e0b; box-shadow: 0 0 0 0 rgba(245,158,11,0.75); }
.live-dot.is-ok   { background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.75); }
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(24,174,202,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(24,174,202,0); }
  100% { box-shadow: 0 0 0 0 rgba(24,174,202,0); }
}

/* 21.3 — Mono chip / digital badge */
.mono-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rubric);
  background: rgba(18,104,216,0.08);
  border: 1px solid rgba(18,104,216,0.24);
  border-radius: 2px;
}
.mono-chip.is-ghost {
  color: var(--ink-4);
  background: transparent;
  border-color: var(--hairline);
}
.mono-chip.is-accent {
  color: #002A45;
  background: rgba(24,174,202,0.10);
  border-color: rgba(24,174,202,0.38);
}

/* 21.4 — Terminal / console card */
.terminal-card {
  position: relative;
  background: linear-gradient(180deg, #0b1630 0%, #0F1A24 100%);
  color: #cfe4ff;
  border: 1px solid rgba(24,174,202,0.28);
  border-radius: 6px;
  box-shadow:
    0 30px 60px -40px rgba(10,26,46,0.45),
    0 0 0 1px rgba(123,191,249,0.06) inset;
  overflow: hidden;
  font-family: var(--ff-mono);
  font-size: 15px;
  line-height: 1.7;
}
.terminal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(123,191,249,0.03) 0 1px, transparent 1px 3px),
    radial-gradient(600px 300px at 100% 0%, rgba(24,174,202,0.12), transparent 60%);
  pointer-events: none;
}
.terminal-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: rgba(10,20,38,0.7);
  border-bottom: 1px solid rgba(123,191,249,0.18);
  font-size: 13.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6FB5DC;
  position: relative;
  z-index: 1;
}
.terminal-head .dots {
  display: inline-flex;
  gap: 6px;
}
.terminal-head .dots i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #334155;
}
.terminal-head .dots i:nth-child(1) { background: #ef4444; }
.terminal-head .dots i:nth-child(2) { background: #f59e0b; }
.terminal-head .dots i:nth-child(3) { background: #22c55e; }
.terminal-head .path { color: rgba(234,243,255,0.54); letter-spacing: 0.06em; text-transform: none; font-family: var(--ff-mono); }
.terminal-body {
  padding: 18px 20px;
  position: relative;
  z-index: 1;
}
.terminal-body .line {
  display: block;
  padding: 2px 0;
  white-space: pre-wrap;
  word-break: break-word;
}
.terminal-body .prompt { color: #20A0E0; margin-right: 8px; }
.terminal-body .cmd { color: #E8E5DE; }
.terminal-body .out { color: rgba(207,228,255,0.72); }
.terminal-body .ok  { color: #22c55e; }
.terminal-body .warn { color: #f59e0b; }
.terminal-body .err { color: #ef4444; }
.terminal-body .dim { color: rgba(207,228,255,0.42); }
.terminal-body .key { color: #6FB5DC; }
.terminal-body .str { color: #c4e8ff; }
.terminal-body .num { color: #20A0E0; }
.terminal-body .hl  { color: #6FB5DC; background: rgba(24,174,202,0.10); padding: 0 4px; border-radius: 2px; }

.cursor-blink::after {
  content: "▊";
  color: #6FB5DC;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* 21.5 — Digital grid background (overlay utility) */
.digital-grid {
  position: relative;
  isolation: isolate;
}
.digital-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(18,104,216,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,104,216,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  z-index: 0;
}
.digital-grid > * { position: relative; z-index: 1; }

/* 21.6 — Holo border (shine) */
.holo-border {
  position: relative;
}
.holo-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg,
    rgba(18,104,216,0) 0%,
    rgba(24,174,202,0.45) 25%,
    rgba(123,191,249,0.65) 50%,
    rgba(24,174,202,0.45) 75%,
    rgba(18,104,216,0) 100%);
  background-size: 300% 100%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: holo-slide 7s linear infinite;
  pointer-events: none;
}
@keyframes holo-slide {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* 21.7 — Big animated counter */
.counter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(20px, 3vw, 32px);
  background:
    linear-gradient(180deg, rgba(18,104,216,0.04), transparent 80%),
    var(--parchment-0);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  box-shadow: var(--shadow-book);
}
.counter-cell {
  padding: 8px 14px;
  border-left: 2px solid rgba(18,104,216,0.18);
  position: relative;
}
.counter-cell:first-child { border-left-color: rgba(24,174,202,0.6); }
.counter-cell .c-label {
  font-family: var(--ff-smallcaps);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 6px;
}
.counter-cell .c-value {
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: clamp(32px, 3.8vw, 54px);
  line-height: 1;
  color: var(--ink-1);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.counter-cell .c-value .unit {
  color: var(--rubric);
  font-size: 0.48em;
  margin-left: 4px;
  font-weight: 400;
}
.counter-cell .c-delta {
  margin-top: 6px;
  font-family: var(--ff-mono);
  font-size: 13.5px;
  color: #22c55e;
  letter-spacing: 0.06em;
}
.counter-cell .c-delta.is-warn { color: #f59e0b; }
.counter-cell .c-delta.is-neg  { color: #ef4444; }

/* 21.8 — Progress / capacity bars */
.metric-bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  align-items: baseline;
  padding: 10px 0;
}
.metric-bar + .metric-bar { border-top: 1px dotted var(--hairline); }
.metric-bar .label {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--ink-2);
  font-size: 18.5px;
}
.metric-bar .value {
  font-family: var(--ff-mono);
  color: var(--rubric);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.metric-bar .track {
  grid-column: 1 / -1;
  height: 6px;
  background: rgba(18,104,216,0.10);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.metric-bar .fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #0070B0 0%, #20A0E0 100%);
  border-radius: inherit;
  transition: width 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  position: relative;
}
.metric-bar .fill::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 12px;
  background: rgba(255,255,255,0.55);
  filter: blur(6px);
}
.metric-bar.is-visible .fill { width: var(--to, 50%); }

/* 21.9 — Data stream (ticker) */
.data-stream {
  display: flex;
  gap: 28px;
  padding: 10px 0;
  overflow: hidden;
  font-family: var(--ff-mono);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.data-stream-track {
  display: flex;
  gap: 36px;
  flex-shrink: 0;
  animation: data-slide 45s linear infinite;
  white-space: nowrap;
}
.data-stream-track span i {
  color: var(--rubric);
  font-style: normal;
  margin-right: 4px;
}
@keyframes data-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 21.10 — API / JSON / code snippet */
.code-card {
  background: #0F1A24;
  color: #cfe4ff;
  border-radius: 6px;
  border: 1px solid rgba(24,174,202,0.28);
  padding: 18px 22px;
  font-family: var(--ff-mono);
  font-size: 14.5px;
  line-height: 1.75;
  overflow-x: auto;
  box-shadow: var(--shadow-book);
}
.code-card .tag-method {
  display: inline-block;
  padding: 2px 8px;
  background: #20A0E0;
  color: #0F1A24;
  border-radius: 3px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-right: 8px;
}
.code-card .tag-method.post { background: #22c55e; }
.code-card .tag-method.get  { background: #6FB5DC; }
.code-card .tag-method.put  { background: #f59e0b; color: #0F1A24; }
.code-card .tag-method.del  { background: #ef4444; color: #fff; }
.code-card .k { color: #6FB5DC; }
.code-card .s { color: #c4e8ff; }
.code-card .n { color: #20A0E0; }
.code-card .c { color: rgba(207,228,255,0.36); font-style: italic; }
.code-card .b { color: #f59e0b; }

/* 21.11 — Digital badge kicker */
.kicker-digital {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 13.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rubric);
  padding: 6px 12px 6px 10px;
  background: rgba(18,104,216,0.06);
  border: 1px solid rgba(18,104,216,0.22);
  border-radius: 999px;
}
.kicker-digital::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #20A0E0;
  box-shadow: 0 0 10px #20A0E0;
  flex: 0 0 6px;
}

/* 21.12 — Glitch-free digital heading gradient */
.h-digital {
  background: linear-gradient(120deg,
    var(--ink-1) 0%,
    var(--ink-1) 40%,
    #0070B0 55%,
    #20A0E0 70%,
    var(--ink-1) 90%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  animation: h-slide 12s ease-in-out infinite;
}
@keyframes h-slide {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* 21.13 — Dashboard mockup frame */
.dashboard-frame {
  position: relative;
  background: var(--parchment-0);
  border: 1px solid var(--hairline-strong);
  border-radius: 10px;
  box-shadow: var(--shadow-book), 0 0 0 6px rgba(234,243,255,0.6);
  overflow: hidden;
}
.dashboard-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: linear-gradient(180deg, #E8E5DE, #D5D2C8);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--ff-mono);
  font-size: 13.5px;
  color: var(--ink-4);
}
.dashboard-chrome .dots { display: inline-flex; gap: 6px; }
.dashboard-chrome .dots i {
  width: 10px; height: 10px; border-radius: 50%;
  background: #cbd5e1;
}
.dashboard-chrome .dots i:nth-child(1) { background: #ef4444; }
.dashboard-chrome .dots i:nth-child(2) { background: #f59e0b; }
.dashboard-chrome .dots i:nth-child(3) { background: #22c55e; }
.dashboard-chrome .url {
  flex: 1;
  text-align: center;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.dashboard-body { padding: clamp(18px, 2.4vw, 28px); }

/* 21.14 — Scan line overlay on diagrams */
.scan-overlay {
  position: relative;
}
.scan-overlay::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,0.55), transparent);
  filter: blur(1.5px);
  animation: scan-line 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes scan-line {
  0%   { transform: translateY(0); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* 21.15 — Utility: corner brackets (crosshair) */
.crosshair {
  position: relative;
}
.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid rgba(18,104,216,0.45);
  pointer-events: none;
}
.crosshair::before {
  top: -6px; left: -6px;
  border-right: none; border-bottom: none;
}
.crosshair::after {
  bottom: -6px; right: -6px;
  border-left: none; border-top: none;
}

/* 21.16 — Inline nabız şeridi (hero integration) */
.pulse-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 14px 0;
  position: relative;
}
.pulse-strip::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18,104,216,0.4), transparent);
  pointer-events: none;
}
.pulse-cell {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 16px;
  border-right: 1px dotted var(--hairline);
  font-family: var(--ff-body);
  line-height: 1.3;
  min-width: 0;
}
.pulse-cell:last-child { border-right: none; }
.pulse-cell .live-dot { position: relative; top: -1px; flex-shrink: 0; }
.pulse-cell .pulse-label {
  font-family: var(--ff-smallcaps);
  font-size: 11.5px;
  letter-spacing: 2.2px;
  color: var(--ink-4);
  text-transform: uppercase;
  white-space: nowrap;
}
.pulse-cell .pulse-value {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 19.5px;
  color: var(--ink-1);
  margin-left: auto;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.pulse-cell .pulse-value em {
  font-style: italic;
  color: var(--rubric);
}

/* 21.17 — Bölüm kartı için canlı durum rozeti */
.chapter-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
  text-transform: lowercase;
  margin-left: 0.6em;
  font-weight: 400;
}
.chapter-status .live-dot {
  width: 6px; height: 6px;
  box-shadow: none;
  animation: none;
}
.chapter .num {
  display: flex;
  align-items: center;
  gap: 0.4em;
  flex-wrap: wrap;
}

/* 21.18 — Atlas beraberi alıntı bloğu */
.atlas-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 1.6vw + 16px, 32px);
  line-height: 1.22;
  color: var(--ink-1);
  margin: 0;
  padding: 0 0 0 1.6rem;
  border-left: 2px solid var(--rubric);
  position: relative;
}
.atlas-quote em { color: var(--rubric); font-style: italic; }
.atlas-quote cite {
  display: block;
  margin-top: 0.9rem;
  font-size: 14px;
  font-family: var(--ff-smallcaps);
  font-style: normal;
  letter-spacing: 3px;
  color: var(--ink-4);
  text-transform: uppercase;
}

/* 21.19 — Demo vaat listesi */
.demo-pledge {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.demo-pledge li {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-3);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.demo-pledge li em.numeral {
  flex-shrink: 0;
  color: var(--rubric);
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 2.4px;
  font-style: normal;
  min-width: 26px;
}

/* 21.20 — Chapter-open içinde pulse-strip 2×2 ızgarası (dar sütun) */
.chapter-open .pulse-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 52ch;
}
.chapter-open .pulse-strip .pulse-cell:nth-child(2n) { border-right: none; }
.chapter-open .pulse-strip .pulse-cell:nth-child(-n+2) { border-bottom: 1px dotted var(--hairline); padding-bottom: 10px; }
.chapter-open .pulse-strip .pulse-cell:nth-child(n+3) { padding-top: 10px; }

/* 21.21 — Responsive: homepage grids */
@media (max-width: 960px) {
  .hero-atlas-grid { grid-template-columns: 1fr !important; }
  .pulse-strip { grid-template-columns: repeat(2, 1fr); }
  .pulse-cell:nth-child(2n) { border-right: none; }
  .pulse-cell:nth-child(-n+2) { border-bottom: 1px dotted var(--hairline); }
}
@media (max-width: 560px) {
  .pulse-strip { grid-template-columns: 1fr; }
  .pulse-cell { border-right: none !important; border-bottom: 1px dotted var(--hairline); }
  .pulse-cell:last-child { border-bottom: none; }
  .chapter-open .pulse-strip .pulse-cell:nth-child(-n+2) { padding-bottom: 10px; }
}

/* 21.99 — Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hud-strip::after,
  .live-dot,
  .data-stream-track,
  .holo-border::before,
  .h-digital,
  .scan-overlay::after { animation: none !important; }
  .metric-bar .fill { transition: none !important; }
}

/* ============================================================
   Geçiş animasyonu — 6 bölüm → tek akış
   ============================================================ */
.transition-stage {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 48px) clamp(20px, 3vw, 40px) 0;
}
.transition-stage svg {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: 0 auto;
  overflow: visible;
}

/* Üst noktalar — 6 bölüm temsili */
.transition-stage .tr-src {
  fill: #0070B0;
  opacity: 0;
  animation: trSrcAppear 6s ease-in-out infinite;
}
.transition-stage .ts1 { animation-delay: 0s;    }
.transition-stage .ts2 { animation-delay: 0.08s; }
.transition-stage .ts3 { animation-delay: 0.16s; }
.transition-stage .ts4 { animation-delay: 0.24s; }
.transition-stage .ts5 { animation-delay: 0.32s; }
.transition-stage .ts6 { animation-delay: 0.40s; }
@keyframes trSrcAppear {
  0%, 3%    { opacity: 0; }
  10%, 100% { opacity: 0.85; }
}

/* Eğri hatlar — junction'a iniş */
.transition-stage .tr-line {
  fill: none;
  stroke: rgba(0, 112, 176, 0.4);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: trLineDraw 6s ease-in-out infinite;
}
.transition-stage .tl1 { animation-delay: 0.4s; }
.transition-stage .tl2 { animation-delay: 0.55s; }
.transition-stage .tl3 { animation-delay: 0.70s; }
.transition-stage .tl4 { animation-delay: 0.85s; }
.transition-stage .tl5 { animation-delay: 1.00s; }
.transition-stage .tl6 { animation-delay: 1.15s; }
@keyframes trLineDraw {
  0%, 5%    { stroke-dashoffset: 320; opacity: 0; }
  15%       { opacity: 0.55; }
  35%, 100% { stroke-dashoffset: 0; opacity: 0.55; }
}

/* Akan mavi noktalar */
.transition-stage .tr-pulse {
  fill: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
}

/* Junction (birleşme noktası) */
.transition-stage .tr-hub {
  fill: #0070B0;
  opacity: 0;
  animation: trHubPulse 6s ease-in-out infinite;
}
@keyframes trHubPulse {
  0%, 30%   { opacity: 0; r: 0; }
  40%       { opacity: 1; r: 7; }
  44%       { opacity: 1; r: 10; }
  52%, 100% { opacity: 1; r: 7; }
}
.transition-stage .tr-hub-glow {
  stroke: #0070B0;
  stroke-width: 1;
  opacity: 0;
  animation: trHubGlow 6s ease-in-out infinite;
}
@keyframes trHubGlow {
  0%, 38% { r: 7; opacity: 0; }
  44%     { r: 7; opacity: 0.45; }
  62%     { r: 28; opacity: 0; }
  100%    { opacity: 0; }
}

/* Aşağıya tek akış — manifest'e bağlanır */
.transition-stage .tr-spine {
  stroke: #0070B0;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  opacity: 0;
  animation: trSpineDraw 6s ease-in-out infinite;
  animation-delay: 0s;
}
@keyframes trSpineDraw {
  0%, 48%   { stroke-dashoffset: 70; opacity: 0; }
  56%       { opacity: 0.9; }
  72%, 100% { stroke-dashoffset: 0; opacity: 0.9; }
}
.transition-stage .tr-flow {
  fill: #0070B0;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
  animation: trFlowDown 6s ease-in-out infinite;
}
@keyframes trFlowDown {
  0%, 60%   { transform: translateY(0); opacity: 0; }
  65%       { transform: translateY(0); opacity: 1; }
  90%       { transform: translateY(70px); opacity: 1; }
  95%, 100% { transform: translateY(70px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .transition-stage * { animation: none !important; opacity: 1 !important; }
}

/* Başlık altı: dikey omurga — h2 altından adımların sonuna kadar iner,
   Karar / Kayıt / Rapor adımları çizginin sağında */
.manifest-flow {
  --spine-gap: clamp(24px, 4vw, 56px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.manifest-spine {
  position: relative;
  height: 100%;
  grid-column: 2;
}
.spine-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0070B0 0%, #0070B0 70%, rgba(0, 112, 176, 0.25) 100%);
  transform: scaleY(0);
  transform-origin: top center;
}
.manifest-flow.in .spine-line {
  animation: spineDraw 1.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes spineDraw { to { transform: scaleY(1); } }

/* Omurga boyunca aşağı akan pulse'lar */
.spine-pulse {
  position: absolute;
  top: 0;
  left: -3px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
  opacity: 0;
}
.manifest-flow.in .spine-pulse { animation: spineFlow 4.5s linear infinite; }
.manifest-flow.in .spine-pulse.sp2 { animation-delay: 1.5s; }
.manifest-flow.in .spine-pulse.sp3 { animation-delay: 3s; }
@keyframes spineFlow {
  0%   { top: 0; opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 1; }
  100% { top: calc(100% - 8px); opacity: 0; }
}

/* === Ajanda — çizginin solunda, 5 rolün günü dönüşümlü === */
.ajanda {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding-right: var(--spine-gap);
  text-align: right;
}
.ajanda-deck { display: grid; }
.ajanda-card {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(10px);
}
.manifest-flow.in .ajanda-card { animation: ajandaCycle 30s ease-in-out infinite; }
.manifest-flow.in .ajanda-card:nth-child(1) { animation-delay: 0s; }
.manifest-flow.in .ajanda-card:nth-child(2) { animation-delay: 6s; }
.manifest-flow.in .ajanda-card:nth-child(3) { animation-delay: 12s; }
.manifest-flow.in .ajanda-card:nth-child(4) { animation-delay: 18s; }
.manifest-flow.in .ajanda-card:nth-child(5) { animation-delay: 24s; }
@keyframes ajandaCycle {
  0%        { opacity: 0; transform: translateY(10px); }
  2.5%      { opacity: 1; transform: translateY(0); }
  19%       { opacity: 1; transform: translateY(0); }
  21.5%     { opacity: 0; transform: translateY(-10px); }
  100%      { opacity: 0; transform: translateY(-10px); }
}
.ajanda-rol {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 26px);
  color: var(--ink-1);
  margin: 0 0 0.9rem;
}
.ajanda-card ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(18px, 2vw, 28px);
}
/* Her saat ayrı bir kutu — hepsi eşit genişlikte, omurgaya dal hattıyla bağlı */
.ajanda-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, #FBFAF7, #F2EEE6);
  border: 1px solid rgba(15, 26, 36, 0.22);
  border-radius: 4px;
}
/* Kutudan omurgaya uzanan dal */
.ajanda-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -1px;
  width: var(--spine-gap);
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 112, 176, 0.45), #0070B0);
}
/* Omurgadan kutuya akan nokta */
.ajanda-item::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0070B0;
  filter: drop-shadow(0 0 3px rgba(0, 112, 176, 0.55));
  opacity: 0;
  right: calc(-1 * var(--spine-gap));
}
.manifest-flow.in .ajanda-item::before { animation: ajandaPulse 4.5s linear infinite; }
.manifest-flow.in .ajanda-item:nth-child(1)::before { animation-delay: 0.4s; }
.manifest-flow.in .ajanda-item:nth-child(2)::before { animation-delay: 1.3s; }
.manifest-flow.in .ajanda-item:nth-child(3)::before { animation-delay: 2.2s; }
.manifest-flow.in .ajanda-item:nth-child(4)::before { animation-delay: 3.1s; }
.manifest-flow.in .ajanda-item:nth-child(5)::before { animation-delay: 4.0s; }
@keyframes ajandaPulse {
  0%        { right: calc(-1 * var(--spine-gap)); opacity: 0; }
  5%        { opacity: 1; }
  20%       { right: -3px; opacity: 1; }
  24%, 100% { right: -3px; opacity: 0; }
}
.ajanda-saat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: #0070B0;
  flex-shrink: 0;
}
.ajanda-text {
  font-size: clamp(14.5px, 1vw, 16.5px);
  line-height: 1.45;
  color: var(--ink-2);
}

@media (max-width: 720px) {
  .manifest-flow { grid-template-columns: 2px 1fr; }
  .manifest-spine { grid-column: 1; grid-row: 1 / 3; }
  .ajanda {
    grid-column: 2;
    grid-row: 1;
    padding-right: 0;
    padding-left: var(--spine-gap);
    padding-bottom: clamp(28px, 5vw, 40px);
    text-align: left;
  }
  .ajanda-item .ajanda-saat { order: -1; }
  .ajanda-item { justify-content: flex-start; }
  .ajanda-item::after {
    left: auto;
    right: 100%;
    background: linear-gradient(90deg, #0070B0, rgba(0, 112, 176, 0.45));
  }
  .ajanda-item::before {
    right: auto;
    left: calc(-1 * var(--spine-gap));
  }
  .manifest-flow.in .ajanda-item::before { animation-name: ajandaPulseM; }
  .manifest-flow .manifest-steps { grid-column: 2; grid-row: 2; }
}
@keyframes ajandaPulseM {
  0%        { left: calc(-1 * var(--spine-gap)); opacity: 0; }
  5%        { opacity: 1; }
  20%       { left: -3px; opacity: 1; }
  24%, 100% { left: -3px; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .spine-line { animation: none !important; transform: scaleY(1); }
  .spine-pulse { display: none; }
  .ajanda-card { animation: none !important; }
  .ajanda-card:first-child { opacity: 1; transform: none; }
  .ajanda-item::before { display: none; }
}

/* ============================================================
   Manifest section — Dağınıktan tek omurgaya
   ============================================================ */
.manifest {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.manifest-head { margin-bottom: clamp(20px, 2.5vw, 40px); }
.manifest-head { max-width: 760px; margin: 0 auto; text-align: center; }
.manifest-head h2 {
  font-size: clamp(36px, 4.5vw + 10px, 78px);
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: var(--ink-1);
  margin: 1rem 0 1.5rem;
}
.manifest-head h2 em { color: var(--gold-1); font-style: italic; }
.manifest-lead {
  font-weight: 500;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(19px, 1.5vw, 24px);
  color: var(--ink-4);
  margin: 0;
  letter-spacing: -0.1px;
}

/* === Animasyon sahnesi === */
.manifest-stage {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 64px) clamp(20px, 3vw, 40px);
  display: none; /* Animasyon gizli — markup korunur, gerektiğinde açılır */
}
.manifest-stage svg { width: 100%; max-width: 760px; height: auto; display: block; margin: 0 auto; overflow: visible; min-height: 360px; }

/* ============================================================
   Manifest stage — v2: dağınıktan tek omurgaya akış
   8 saniyelik döngü
   ============================================================ */

/* Arka plan ızgara — sabit ama yumuşak */
.manifest-stage svg .m-bg { opacity: 0.4; }

/* === KAYNAK NOKTALARI (12) === */
.manifest-stage svg .m-src {
  fill: rgba(0, 112, 176, 0.85);
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: mSrcAppear 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.manifest-stage svg .m-src.s1  { animation-delay: 0.00s; }
.manifest-stage svg .m-src.s2  { animation-delay: 0.08s; }
.manifest-stage svg .m-src.s3  { animation-delay: 0.16s; }
.manifest-stage svg .m-src.s4  { animation-delay: 0.24s; }
.manifest-stage svg .m-src.s5  { animation-delay: 0.32s; }
.manifest-stage svg .m-src.s6  { animation-delay: 0.40s; }
.manifest-stage svg .m-src.s7  { animation-delay: 0.48s; }
.manifest-stage svg .m-src.s8  { animation-delay: 0.56s; }
.manifest-stage svg .m-src.s9  { animation-delay: 0.64s; }
.manifest-stage svg .m-src.s10 { animation-delay: 0.72s; }
.manifest-stage svg .m-src.s11 { animation-delay: 0.80s; }
.manifest-stage svg .m-src.s12 { animation-delay: 0.88s; }
.manifest-stage svg .m-src.s13 { animation-delay: 0.96s; }
.manifest-stage svg .m-src.s14 { animation-delay: 1.04s; }
.manifest-stage svg .m-src.s15 { animation-delay: 1.12s; }
.manifest-stage svg .m-src.s16 { animation-delay: 1.20s; }
.manifest-stage svg .m-src.s17 { animation-delay: 1.28s; }
.manifest-stage svg .m-src.s18 { animation-delay: 1.36s; }
.manifest-stage svg .m-src.s19 { animation-delay: 1.44s; }
.manifest-stage svg .m-src.s20 { animation-delay: 1.52s; }
@keyframes mSrcAppear {
  0%, 5%    { opacity: 0; transform: scale(0); }
  18%       { opacity: 1; transform: scale(1.2); }
  25%, 70%  { opacity: 0.85; transform: scale(1); }
  85%       { opacity: 0.5; transform: scale(0.8); }
  95%, 100% { opacity: 0; transform: scale(0); }
}

/* === ETİKETLER === */
.manifest-stage svg .m-lbl {
  opacity: 0;
  animation: mLblFade 8s ease-in-out infinite;
}
.manifest-stage svg .m-lbl.l1  { animation-delay: 0.2s; }
.manifest-stage svg .m-lbl.l2  { animation-delay: 0.3s; }
.manifest-stage svg .m-lbl.l3  { animation-delay: 0.4s; }
.manifest-stage svg .m-lbl.l5  { animation-delay: 0.5s; }
.manifest-stage svg .m-lbl.l7  { animation-delay: 0.6s; }
.manifest-stage svg .m-lbl.l9  { animation-delay: 0.7s; }
.manifest-stage svg .m-lbl.l10 { animation-delay: 0.8s; }
.manifest-stage svg .m-lbl.l11 { animation-delay: 0.9s; }
.manifest-stage svg .m-lbl.l13 { animation-delay: 1.0s; }
.manifest-stage svg .m-lbl.l15 { animation-delay: 1.1s; }
.manifest-stage svg .m-lbl.l17 { animation-delay: 1.2s; }
.manifest-stage svg .m-lbl.l18 { animation-delay: 1.3s; }
@keyframes mLblFade {
  0%, 12%   { opacity: 0; }
  25%, 65%  { opacity: 0.95; }
  78%       { opacity: 0.5; }
  90%, 100% { opacity: 0; }
}

/* === AKIŞ EĞRİLERİ — birleşmeye doğru çizilir === */
.manifest-stage svg .m-ray {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  opacity: 0;
  animation: mRayDraw 8s ease-in-out infinite;
}
.manifest-stage svg .m-ray.r1  { animation-delay: 0.4s; }
.manifest-stage svg .m-ray.r2  { animation-delay: 0.5s; }
.manifest-stage svg .m-ray.r3  { animation-delay: 0.6s; }
.manifest-stage svg .m-ray.r4  { animation-delay: 0.7s; }
.manifest-stage svg .m-ray.r5  { animation-delay: 0.8s; }
.manifest-stage svg .m-ray.r6  { animation-delay: 0.9s; }
.manifest-stage svg .m-ray.r7  { animation-delay: 1.0s; }
.manifest-stage svg .m-ray.r8  { animation-delay: 1.1s; }
.manifest-stage svg .m-ray.r9  { animation-delay: 1.2s; }
.manifest-stage svg .m-ray.r10 { animation-delay: 1.3s; }
.manifest-stage svg .m-ray.r11 { animation-delay: 1.4s; }
.manifest-stage svg .m-ray.r12 { animation-delay: 1.5s; }
.manifest-stage svg .m-ray.r13 { animation-delay: 1.6s; }
.manifest-stage svg .m-ray.r14 { animation-delay: 1.7s; }
.manifest-stage svg .m-ray.r15 { animation-delay: 1.8s; }
.manifest-stage svg .m-ray.r16 { animation-delay: 1.9s; }
.manifest-stage svg .m-ray.r17 { animation-delay: 2.0s; }
.manifest-stage svg .m-ray.r18 { animation-delay: 2.1s; }
.manifest-stage svg .m-ray.r19 { animation-delay: 2.2s; }
.manifest-stage svg .m-ray.r20 { animation-delay: 2.3s; }
@keyframes mRayDraw {
  0%, 5%    { stroke-dashoffset: 500; opacity: 0; }
  15%       { opacity: 0.65; }
  35%       { stroke-dashoffset: 0; opacity: 0.65; }
  55%       { stroke-dashoffset: 0; opacity: 0.35; }
  78%       { stroke-dashoffset: 0; opacity: 0.15; }
  95%, 100% { stroke-dashoffset: 0; opacity: 0; }
}

/* === AKIŞ PARÇACIKLARI (animateMotion SMIL ile çalışır, sadece görünürlük) === */
.manifest-stage svg .m-particle {
  opacity: 0;
  animation: mParticleFade 8s ease-in-out infinite;
  filter: drop-shadow(0 0 3px rgba(0, 112, 176, 0.7));
}
.manifest-stage svg .m-particle.p1 { animation-delay: 1.6s; }
.manifest-stage svg .m-particle.p2 { animation-delay: 1.8s; }
.manifest-stage svg .m-particle.p3 { animation-delay: 2.0s; }
.manifest-stage svg .m-particle.p4 { animation-delay: 1.7s; }
.manifest-stage svg .m-particle.p5 { animation-delay: 1.9s; }
.manifest-stage svg .m-particle.p6 { animation-delay: 2.1s; }
.manifest-stage svg .m-particle.p7  { animation-delay: 1.65s; }
.manifest-stage svg .m-particle.p8  { animation-delay: 1.75s; }
.manifest-stage svg .m-particle.p9  { animation-delay: 1.85s; }
.manifest-stage svg .m-particle.p10 { animation-delay: 1.95s; }
@keyframes mParticleFade {
  0%, 18%  { opacity: 0; }
  25%      { opacity: 1; }
  68%      { opacity: 1; }
  82%, 100%{ opacity: 0; }
}

/* === BİRLEŞME NOKTASI === */
.manifest-stage svg .m-junction-glow {
  opacity: 0;
  transform-origin: 400px 320px;
  animation: mJunctionGlow 8s ease-in-out infinite;
  animation-delay: 1.8s;
}
@keyframes mJunctionGlow {
  0%, 18%  { opacity: 0; transform: scale(0.4); }
  30%      { opacity: 1; transform: scale(1.1); }
  45%      { opacity: 0.7; transform: scale(0.95); }
  60%      { opacity: 1; transform: scale(1.05); }
  78%      { opacity: 0.6; transform: scale(1); }
  92%, 100%{ opacity: 0; transform: scale(0.4); }
}

.manifest-stage svg .m-junction {
  opacity: 0;
  transform-origin: 400px 320px;
  animation: mJunctionCore 8s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
  animation-delay: 1.9s;
}
@keyframes mJunctionCore {
  0%, 20%  { opacity: 0; transform: scale(0); }
  30%      { opacity: 1; transform: scale(1); }
  80%      { opacity: 1; transform: scale(1); }
  92%, 100%{ opacity: 0; transform: scale(0); }
}

.manifest-stage svg .m-junction-ring {
  opacity: 0;
  transform-origin: 400px 320px;
  animation: mJunctionRing 8s ease-out infinite;
  animation-delay: 2.0s;
}
@keyframes mJunctionRing {
  0%, 22%  { opacity: 0; transform: scale(0.4); }
  35%      { opacity: 0.5; transform: scale(1); }
  55%      { opacity: 0.2; transform: scale(1.6); }
  70%      { opacity: 0.5; transform: scale(1); }
  85%      { opacity: 0.2; transform: scale(1.6); }
  92%, 100%{ opacity: 0; transform: scale(0.4); }
}

/* === OMURGA === */
.manifest-stage svg .m-spine {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  opacity: 0;
  animation: mSpineDraw 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 2.4s;
}
@keyframes mSpineDraw {
  0%, 28%  { stroke-dashoffset: 320; opacity: 0; }
  38%      { opacity: 1; }
  55%      { stroke-dashoffset: 0; opacity: 1; }
  82%      { stroke-dashoffset: 0; opacity: 1; }
  95%, 100%{ stroke-dashoffset: 0; opacity: 0; }
}

/* === OMURGA AKIŞ GÖSTERGESİ — parlak parça sağa doğru kayar === */
.manifest-stage svg .m-spine-flow {
  opacity: 0;
  animation: mSpineFlow 8s ease-in-out infinite;
  animation-delay: 3.0s;
  filter: drop-shadow(0 0 6px rgba(0, 112, 176, 0.7));
}
@keyframes mSpineFlow {
  0%, 33%  { opacity: 0; transform: translateY(0); }
  40%      { opacity: 1; transform: translateY(0); }
  65%      { opacity: 1; transform: translateY(240px); }
  72%      { opacity: 0; transform: translateY(280px); }
  100%     { opacity: 0; transform: translateY(0); }
}

/* === ÇIKTI HALKALARI === */
.manifest-stage svg .m-out {
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
  animation: mOutBloom 8s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}
.manifest-stage svg .m-out.o1 { animation-delay: 3.8s; }
.manifest-stage svg .m-out.o2 { animation-delay: 4.1s; }
.manifest-stage svg .m-out.o3 { animation-delay: 4.4s; }
@keyframes mOutBloom {
  0%, 45%  { opacity: 0; transform: scale(0); }
  56%      { opacity: 1; transform: scale(1.15); }
  65%, 82% { opacity: 1; transform: scale(1); }
  95%, 100%{ opacity: 0; transform: scale(0); }
}

/* === ÇIKTI ETİKETLERİ === */
.manifest-stage svg .m-ol {
  opacity: 0;
  animation: mOlFade 8s ease-in-out infinite;
}
.manifest-stage svg .m-ol.l-out1 { animation-delay: 4.0s; }
.manifest-stage svg .m-ol.l-out2 { animation-delay: 4.3s; }
.manifest-stage svg .m-ol.l-out3 { animation-delay: 4.6s; }
@keyframes mOlFade {
  0%, 48%  { opacity: 0; transform: translateY(-4px); }
  58%      { opacity: 0.95; transform: translateY(0); }
  85%      { opacity: 0.95; transform: translateY(0); }
  95%, 100%{ opacity: 0; transform: translateY(-4px); }
}

/* === Üç adım grid === */
.manifest-steps {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 56px);
  padding: clamp(8px, 1.5vw, 16px) 0 clamp(8px, 1.5vw, 16px) var(--spine-gap);
  text-align: left;
}
.m-step {
  --step-pad: clamp(8px, 1.5vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0 var(--step-pad);
  padding-top: 0.4rem;
  position: relative;
}

/* Omurgadan başlık noktasına uzanan dal hattı */
.m-step h3 { position: relative; }
.m-step h3::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -1px;
  width: calc(var(--spine-gap) + var(--step-pad));
  height: 2px;
  background: linear-gradient(90deg, #0070B0, rgba(0, 112, 176, 0.45));
  transform: scaleX(0);
  transform-origin: left center;
}
.manifest-flow.in .m-step h3::before { animation: branchDraw 0.6s ease-out forwards; }
.manifest-flow.in .m-step:nth-child(1) h3::before { animation-delay: 0.5s; }
.manifest-flow.in .m-step:nth-child(2) h3::before { animation-delay: 0.85s; }
.manifest-flow.in .m-step:nth-child(3) h3::before { animation-delay: 1.2s; }
@keyframes branchDraw { to { transform: scaleX(1); } }

/* Dal boyunca omurgadan noktaya akan pulse */
.m-step h3::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -3px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #0070B0;
  filter: drop-shadow(0 0 3px rgba(0, 112, 176, 0.55));
  opacity: 0;
  right: calc(100% + var(--spine-gap) + var(--step-pad) - 6px);
}
.manifest-flow.in .m-step h3::after { animation: branchPulse 4.5s linear infinite; }
.manifest-flow.in .m-step:nth-child(1) h3::after { animation-delay: 1.1s; }
.manifest-flow.in .m-step:nth-child(2) h3::after { animation-delay: 2.6s; }
.manifest-flow.in .m-step:nth-child(3) h3::after { animation-delay: 4.1s; }
@keyframes branchPulse {
  0%        { right: calc(100% + var(--spine-gap) + var(--step-pad) - 6px); opacity: 0; }
  6%        { opacity: 1; }
  22%       { right: calc(100% + 2px); opacity: 1; }
  26%, 100% { right: calc(100% + 2px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .m-step h3::before { animation: none !important; transform: scaleX(1); }
  .m-step h3::after { display: none; }
}

/* Başlık satırı: signal-dot solda + h3 yan yana */
.m-step h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

/* Yanıp sönen mavi nokta — başlığın sol tarafında */
.signal-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #0070B0;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0, 112, 176, 0.55);
  animation: signalBlink 1.8s ease-in-out infinite;
}
@keyframes signalBlink {
  0%, 100% { opacity: 1;   box-shadow: 0 0 8px rgba(0, 112, 176, 0.55); }
  50%      { opacity: 0.25; box-shadow: 0 0 3px rgba(0, 112, 176, 0.2); }
}

/* Üç kart arası stagger (eş zamanlı sönmesin) */
.manifest-steps .m-step:nth-child(1) .signal-dot { animation-delay: 0s; }
.manifest-steps .m-step:nth-child(2) .signal-dot { animation-delay: 0.6s; }
.manifest-steps .m-step:nth-child(3) .signal-dot { animation-delay: 1.2s; }
.m-num {
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold-1);
}
.m-step h3 {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 500;
  color: var(--ink-1);
  margin: 0;
  letter-spacing: -0.2px;
}
.m-step p {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .manifest-stage svg .m-src,
  .manifest-stage svg .m-lbl,
  .manifest-stage svg .m-ray,
  .manifest-stage svg .m-particle,
  .manifest-stage svg .m-junction,
  .manifest-stage svg .m-junction-glow,
  .manifest-stage svg .m-junction-ring,
  .manifest-stage svg .m-spine,
  .manifest-stage svg .m-spine-flow,
  .manifest-stage svg .m-out,
  .manifest-stage svg .m-ol {
    animation: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
    transform: none !important;
  }
  .manifest-stage svg .m-spine-flow { display: none; }
  .manifest-stage svg .m-particle    { display: none; }
}

/* ============================================================
   Bölümler — Kart yığını carousel (manuel + otomatik)
   ============================================================ */
.bolumler {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: 1440px; margin: 0 auto;
}
.bolumler-head { max-width: 760px; margin: 0 auto; text-align: center; }
.bolumler-head h2 {
  font-size: clamp(36px, 4.5vw + 8px, 72px);
  font-family: var(--ff-display); font-style: italic; font-weight: 500;
  line-height: 1.05; letter-spacing: -0.5px;
  color: var(--ink-1); margin: 0 0 1.4rem;
}
.bolumler-head h2 em { color: var(--gold-1); font-style: italic; }
.bolumler-lead {
  font-weight: 500;
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(19px, 1.5vw, 24px);
  color: var(--ink-4); margin: 0;
}

/* ===== Sahne sahibi ===== */
.bolumler-stage {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.sahne-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
  width: 100%;
}

.sahne {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 1.4rem;
  padding: clamp(24px, 2.4vw, 36px);
  background: var(--parchment-0);
  border: 1px solid var(--hairline);
  border-radius: 3px;
  box-shadow: 0 8px 24px -20px rgba(15, 26, 36, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.sahne:hover {
  transform: translateY(-3px);
  border-color: var(--gold-1);
  box-shadow: 0 16px 36px -22px rgba(15, 26, 36, 0.22);
}

/* Aktif — önde, tam görünür */

/* Sonraki — biraz altında, hafif görünür */

/* Sonraki-sonraki — daha aşağıda, daha solgun */

/* Önceki — yukarı çıkıyor, fade */

/* === Sahne içeriği === */
.sahne-text { display: flex; flex-direction: column; gap: 1rem; padding-right: 1rem; }
.sahne-text .bolum-num {
  font-family: var(--ff-smallcaps); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold-1);
}
.sahne-text h3 {
  font-family: var(--ff-display); font-style: italic; font-weight: 500;
  font-size: clamp(28px, 3vw + 4px, 48px); line-height: 1.1;
  letter-spacing: -0.3px; color: var(--ink-1); margin: 0;
}
.sahne-text h3 em { color: var(--gold-1); font-style: italic; }
.sahne-text p {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(17px, 1.3vw, 21px); line-height: 1.5;
  color: var(--ink-2); margin: 0;
}
.sahne-go {
  font-family: var(--ff-smallcaps); font-size: 11px;
  letter-spacing: 4px; text-transform: uppercase; color: var(--gold-1);
  text-decoration: none; transition: color 0.3s ease;
  margin-top: 0.4rem; align-self: flex-start;
}
.sahne-go:hover { color: var(--gold-2); }

.sahne-viz { display: flex; align-items: center; justify-content: center; }
.sahne-viz svg { width: 100%; max-width: 360px; height: auto; display: block; overflow: visible; }

/* === Mikro animasyonlar tüm kartlarda çalışır === */

/* S1 — İşe Alım (yuvarlak hatlar + noktalar) */
.s1 .ia-cand { fill: var(--ink-3); opacity: 0; animation: iaCand 5s ease-in-out infinite; }
.s1 .ia-cand.ic1 { animation-delay: 0s; }
.s1 .ia-cand.ic2 { animation-delay: 0.15s; }
.s1 .ia-cand.ic3 { animation-delay: 0.30s; }
.s1 .ia-cand.ic4 { animation-delay: 0.45s; }
@keyframes iaCand { 0% { opacity: 0; } 10%, 100% { opacity: 0.9; } }

.s1 .ia-lane {
  fill: none;
  stroke: var(--ink-4);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  animation: iaLane 5s ease-in-out infinite;
}
.s1 .ia-lane.il1 { animation-delay: 0.40s; }
.s1 .ia-lane.il2 { animation-delay: 0.55s; }
.s1 .ia-lane.il3 { animation-delay: 0.70s; }
.s1 .ia-lane.il4 { animation-delay: 0.85s; }
@keyframes iaLane {
  0%, 5%    { stroke-dashoffset: 240; opacity: 0; }
  18%       { opacity: 0.55; }
  35%, 100% { stroke-dashoffset: 0; opacity: 0.55; }
}

/* Pulses — elenenler sade, hayatta kalan parlak */
.s1 .ia-pulse { fill: var(--ink-2); opacity: 0.8; }
.s1 .ia-pulse-hero { fill: var(--gold-1); opacity: 1; }

/* Hayatta kalan kanal — daha belirgin */
.s1 .ia-pass { stroke: var(--gold-1); stroke-width: 1.2; }

/* Filtre kolonları (3 kademeli eleme) */
.s1 .ia-filter-line { stroke: var(--ink-4); stroke-width: 0.6; stroke-dasharray: 2 4; opacity: 0.4; }
.s1 .ia-filter-dot { fill: var(--ink-3); opacity: 0.55; animation: iaFilterScan 2.4s ease-in-out infinite; }
.s1 .ia-fcol.fc1 .ia-filter-dot { animation-delay: 0s; }
.s1 .ia-fcol.fc2 .ia-filter-dot { animation-delay: 0.4s; }
.s1 .ia-fcol.fc3 .ia-filter-dot { animation-delay: 0.8s; }
@keyframes iaFilterScan {
  0%, 25%   { opacity: 0.45; r: 2; }
  35%       { opacity: 1;   r: 2.6; fill: var(--gold-1); }
  50%, 100% { opacity: 0.45; r: 2; fill: var(--ink-3); }
}

.s1 .ia-hub { fill: var(--ink-2); opacity: 0; animation: iaHub 5s ease-in-out infinite; }
@keyframes iaHub {
  0%, 38%   { opacity: 0; r: 0; }
  48%, 100% { opacity: 1; r: 6; }
}

.s1 .ia-out {
  fill: none;
  stroke: var(--gold-1);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: iaOut 5s ease-in-out infinite;
}
@keyframes iaOut {
  0%, 50%   { stroke-dashoffset: 80; }
  68%, 100% { stroke-dashoffset: 0; }
}

.s1 .ia-final { fill: var(--gold-1); stroke: var(--ink-1); stroke-width: 0.8; opacity: 0; animation: iaFinal 5s ease-in-out infinite; }
@keyframes iaFinal {
  0%, 65%   { opacity: 0; r: 0; }
  74%       { opacity: 1; r: 6; }
  78%       { opacity: 1; r: 9; }
  86%, 100% { opacity: 1; r: 6; }
}

.s1 .ia-ring { fill: none; stroke: var(--gold-1); stroke-width: 1; opacity: 0; animation: iaRing 5s ease-in-out infinite; }
@keyframes iaRing {
  0%, 74% { r: 6; opacity: 0; }
  78%     { r: 6; opacity: 0.55; }
  92%     { r: 22; opacity: 0; }
  100%    { opacity: 0; }
}

/* S2 — Çalışan Yaşamı (v2: üç eşik + kurum hafızası) */
.s2 .cy2-line {
  stroke: var(--ink-4);
  stroke-width: 1;
  stroke-dasharray: 3 4;
  opacity: 0.35;
}
.s2 .cy2-station {
  fill: var(--parchment-0);
  stroke: var(--gold-1);
  stroke-width: 1.5;
}
.s2 .cy2-fill {
  fill: var(--gold-1);
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
}
.s2 .cy2-fill.cf1 { animation: cy2Fill 9s ease-in-out infinite; animation-delay: 0.8s; }
.s2 .cy2-fill.cf2 { animation: cy2Fill 9s ease-in-out infinite; animation-delay: 3.1s; }
.s2 .cy2-fill.cf3 { animation: cy2Fill 9s ease-in-out infinite; animation-delay: 5.4s; }
@keyframes cy2Fill {
  0%, 2%   { opacity: 0; transform: scale(0); }
  8%       { opacity: 1; transform: scale(1.4); }
  15%, 88% { opacity: 1; transform: scale(1); }
  98%, 100%{ opacity: 0; transform: scale(0); }
}
.s2 .cy2-pulse {
  filter: drop-shadow(0 0 5px rgba(0, 112, 176, 0.55));
}
.s2 .cy2-drop {
  stroke: var(--gold-1);
  stroke-width: 0.9;
  stroke-dasharray: 2 2;
  opacity: 0;
}
.s2 .cy2-drop.d1 { animation: cy2Drop 9s ease-in-out infinite; animation-delay: 1.5s; }
.s2 .cy2-drop.d2 { animation: cy2Drop 9s ease-in-out infinite; animation-delay: 3.8s; }
.s2 .cy2-drop.d3 { animation: cy2Drop 9s ease-in-out infinite; animation-delay: 6.1s; }
@keyframes cy2Drop {
  0%, 3%   { opacity: 0; }
  12%      { opacity: 0.65; }
  80%      { opacity: 0.4; }
  92%, 100%{ opacity: 0; }
}
.s2 .cy2-memory {
  stroke: var(--ink-2);
  stroke-width: 1.5;
  opacity: 0.5;
}
.s2 .cy2-mark {
  fill: var(--parchment-0);
  stroke: var(--gold-1);
  stroke-width: 0.8;
  opacity: 0.18;
}
.s2 .cy2-mark.m1 { animation: cy2Mark 9s ease-out infinite; animation-delay: 1.8s; }
.s2 .cy2-mark.m2 { animation: cy2Mark 9s ease-out infinite; animation-delay: 2.8s; }
.s2 .cy2-mark.m3 { animation: cy2Mark 9s ease-out infinite; animation-delay: 4.1s; }
.s2 .cy2-mark.m4 { animation: cy2Mark 9s ease-out infinite; animation-delay: 5.3s; }
.s2 .cy2-mark.m5 { animation: cy2Mark 9s ease-out infinite; animation-delay: 6.5s; }
@keyframes cy2Mark {
  0%, 8%   { opacity: 0.18; fill: var(--parchment-0); }
  15%      { opacity: 1; fill: var(--gold-1); }
  80%      { opacity: 0.9; fill: var(--gold-1); }
  92%, 100%{ opacity: 0.18; fill: var(--parchment-0); }
}

/* S3 — Platform */
.s3 .org-root { fill: var(--gold-1); animation: pulseRoot 4s ease-in-out infinite; }
@keyframes pulseRoot { 0%, 100% { r: 8; opacity: 0.6; } 50% { r: 10; opacity: 1; } }
.s3 .org-branch, .s3 .org-leaf {
  stroke: var(--ink-3); stroke-width: 1; fill: none;
  stroke-dasharray: 80; stroke-dashoffset: 80;
  animation: orgDraw 4s ease-in-out infinite;
}
.s3 .org-branch.ob1 { animation-delay: 0.2s; }
.s3 .org-branch.ob2 { animation-delay: 0.4s; }
.s3 .org-branch.ob3 { animation-delay: 0.6s; }
.s3 .org-leaf.ol1 { animation-delay: 1.2s; }
.s3 .org-leaf.ol2 { animation-delay: 1.3s; }
.s3 .org-leaf.ol3 { animation-delay: 1.4s; }
.s3 .org-leaf.ol4 { animation-delay: 1.5s; }
.s3 .org-leaf.ol5 { animation-delay: 1.6s; }
.s3 .org-leaf.ol6 { animation-delay: 1.7s; }
@keyframes orgDraw {
  0%, 5%   { stroke-dashoffset: 80; opacity: 0; }
  20%      { opacity: 1; }
  50%      { stroke-dashoffset: 0; opacity: 1; }
  100%     { stroke-dashoffset: 0; opacity: 1; }
}
.s3 .org-node, .s3 .org-leafdot {
  fill: var(--parchment-0); stroke: var(--ink-3); stroke-width: 1.2;
  opacity: 0; animation: orgDot 4s ease-in-out infinite;
}
.s3 .org-node.on1 { animation-delay: 1.0s; }
.s3 .org-node.on2 { animation-delay: 1.1s; }
.s3 .org-node.on3 { animation-delay: 1.2s; }
.s3 .org-leafdot.old1, .s3 .org-leafdot.old2 { animation-delay: 2.0s; }
.s3 .org-leafdot.old3, .s3 .org-leafdot.old4 { animation-delay: 2.2s; }
.s3 .org-leafdot.old5, .s3 .org-leafdot.old6 { animation-delay: 2.4s; }
@keyframes orgDot { 0%, 20% { opacity: 0; } 30%, 100% { opacity: 1; } }

/* S4 — Yapay Zekâ */
.s4 .ai-dot { fill: var(--ink-3); opacity: 0; animation: aiDotIn 4s ease-in-out infinite; }
.s4 .ai-dot.ad1 { animation-delay: 0s; }
.s4 .ai-dot.ad2 { animation-delay: 0.1s; }
.s4 .ai-dot.ad3 { animation-delay: 0.2s; }
.s4 .ai-dot.ad4 { animation-delay: 0.3s; }
.s4 .ai-dot.ad5 { animation-delay: 0.4s; }
.s4 .ai-dot.ad6 { animation-delay: 0.5s; }
@keyframes aiDotIn { 0% { opacity: 0; } 15%, 70% { opacity: 1; } 90%, 100% { opacity: 0.3; } }
.s4 .ai-ray { stroke: var(--ink-4); stroke-width: 0.6; fill: none; stroke-dasharray: 150; stroke-dashoffset: 150; animation: aiRay 4s ease-in-out infinite; }
.s4 .ai-ray.ar1 { animation-delay: 0.6s; }
.s4 .ai-ray.ar2 { animation-delay: 0.7s; }
.s4 .ai-ray.ar3 { animation-delay: 0.8s; }
.s4 .ai-ray.ar4 { animation-delay: 0.9s; }
.s4 .ai-ray.ar5 { animation-delay: 1.0s; }
.s4 .ai-ray.ar6 { animation-delay: 1.1s; }
@keyframes aiRay { 0%, 10% { stroke-dashoffset: 150; opacity: 0; } 25% { opacity: 0.8; } 50% { stroke-dashoffset: 0; opacity: 0.8; } 90% { opacity: 0.3; } 100% { stroke-dashoffset: 0; opacity: 0; } }
/* Üç katmanlı sinir ağı (model kutusunun yerini aldı) */
.s4 .ai-network { opacity: 0; animation: aiNetIn 4s ease-in-out infinite; animation-delay: 1.2s; }
@keyframes aiNetIn { 0%, 25% { opacity: 0; } 40%, 100% { opacity: 1; } }
.s4 .ai-syn {
  stroke: var(--gold-1);
  stroke-width: 0.5;
  opacity: 0.3;
}
.s4 .ai-node {
  fill: var(--parchment-0);
  stroke: var(--gold-1);
  stroke-width: 1.2;
  filter: drop-shadow(0 0 3px rgba(0, 112, 176, 0.4));
  animation: aiLayerPulse 2.4s ease-in-out infinite;
}
.s4 .ai-node.ai-l1 { animation-delay: 0s; }
.s4 .ai-node.ai-l2 { animation-delay: 0.6s; }
.s4 .ai-node.ai-l3 { animation-delay: 1.2s; }
@keyframes aiLayerPulse {
  0%, 40%   { fill: var(--parchment-0); }
  50%       { fill: var(--gold-1); }
  60%, 100% { fill: var(--parchment-0); }
}
.s4 .ai-out { stroke: var(--gold-1); stroke-width: 1.5; fill: none; stroke-dasharray: 80; stroke-dashoffset: 80; animation: aiOut 4s ease-in-out infinite; animation-delay: 2s; }
@keyframes aiOut { 0%, 45% { stroke-dashoffset: 80; opacity: 0; } 60% { opacity: 1; } 80%, 100% { stroke-dashoffset: 0; opacity: 1; } }
.s4 .ai-result { fill: var(--gold-1); opacity: 0; animation: aiResult 4s ease-in-out infinite; animation-delay: 2.6s; }
@keyframes aiResult { 0%, 60% { opacity: 0; r: 0; } 75%, 100% { opacity: 1; r: 9; } }

/* S5 — Güvenlik (v2: kalkan + tarama + denetim izi) */
.s5 .sec-shield {
  fill: var(--parchment-0);
  stroke: var(--gold-1);
  stroke-width: 1.6;
  stroke-linejoin: round;
  opacity: 0;
  animation: secShieldIn 7s ease-in-out infinite;
}
@keyframes secShieldIn {
  0%, 3%   { opacity: 0; }
  10%, 92% { opacity: 1; }
  100%     { opacity: 0; }
}
.s5 .sec-data-line {
  stroke: var(--ink-3);
  stroke-width: 0.9;
  opacity: 0;
  stroke-linecap: round;
  animation: secDataIn 7s ease-in-out infinite;
}
.s5 .sec-data-line.dl1 { animation-delay: 0.6s; }
.s5 .sec-data-line.dl2 { animation-delay: 0.75s; }
.s5 .sec-data-line.dl3 { animation-delay: 0.9s; }
.s5 .sec-data-line.dl4 { animation-delay: 1.05s; }
.s5 .sec-data-line.dl5 { animation-delay: 1.2s; }
@keyframes secDataIn {
  0%, 8%   { opacity: 0; }
  18%, 88% { opacity: 0.45; }
  100%     { opacity: 0; }
}
.s5 .sec-scan-group {
  transform-origin: 160px 100px;
  animation: secScanMove 7s ease-in-out infinite;
}
@keyframes secScanMove {
  0%, 25%  { transform: translateY(0); }
  50%      { transform: translateY(70px); }
  60%, 100%{ transform: translateY(70px); }
}
.s5 .sec-scan {
  stroke: var(--gold-1);
  stroke-width: 1.8;
  stroke-linecap: round;
  opacity: 0;
  filter: drop-shadow(0 0 5px rgba(0, 112, 176, 0.7));
  animation: secScanFade 7s ease-in-out infinite;
}
@keyframes secScanFade {
  0%, 22%  { opacity: 0; }
  28%      { opacity: 1; }
  55%      { opacity: 1; }
  60%, 100%{ opacity: 0; }
}
.s5 .sec-check {
  stroke: var(--gold-1);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.5));
  animation: secCheckDraw 7s ease-in-out infinite;
}
@keyframes secCheckDraw {
  0%, 58%  { stroke-dashoffset: 60; opacity: 0; }
  62%      { opacity: 1; }
  72%      { stroke-dashoffset: 0; opacity: 1; }
  90%      { stroke-dashoffset: 0; opacity: 1; }
  100%     { stroke-dashoffset: 0; opacity: 0; }
}
.s5 .sec-log-line {
  stroke: var(--ink-4);
  stroke-width: 0.7;
  opacity: 0;
  stroke-dasharray: 2 3;
  animation: secLogLineIn 7s ease-in-out infinite;
  animation-delay: 0.4s;
}
@keyframes secLogLineIn {
  0%, 8%   { opacity: 0; }
  20%, 92% { opacity: 0.5; }
  100%     { opacity: 0; }
}
.s5 .sec-log {
  fill: var(--parchment-0);
  stroke: var(--gold-1);
  stroke-width: 1;
  opacity: 0;
  animation: secLogPop 7s ease-in-out infinite;
}
.s5 .sec-log.lg1 { animation-delay: 4.4s; }
.s5 .sec-log.lg2 { animation-delay: 4.6s; }
.s5 .sec-log.lg3 { animation-delay: 4.8s; }
.s5 .sec-log.lg4 { animation-delay: 5.0s; }
.s5 .sec-log.lg5 { animation-delay: 5.2s; }
@keyframes secLogPop {
  0%, 62%  { opacity: 0; fill: var(--parchment-0); }
  68%      { opacity: 1; fill: var(--gold-1); }
  90%      { opacity: 1; fill: var(--gold-1); }
  100%     { opacity: 0; }
}

/* Eski kilit animasyonu (artık kullanılmıyor ama emniyet için duruyor) */
.s5 .g-ring { fill: none; stroke: var(--ink-4); stroke-width: 0.8; opacity: 0; transform-origin: 160px 100px; animation: gRing 4s ease-in-out infinite; }
.s5 .g-ring.gr1 { animation-delay: 0s; stroke-dasharray: 6 8; }
.s5 .g-ring.gr2 { animation-delay: 0.3s; stroke-dasharray: 4 6; }
.s5 .g-ring.gr3 { animation-delay: 0.6s; }
@keyframes gRing { 0%, 5% { opacity: 0; transform: scale(0.85); } 25%, 100% { opacity: 0.8; transform: scale(1); } }
.s5 .g-lock-body { fill: var(--gold-1); stroke: var(--ink-1); stroke-width: 1; opacity: 0; animation: gLock 4s ease-in-out infinite; animation-delay: 1s; }
.s5 .g-lock-arc { fill: none; stroke: var(--ink-1); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 60; stroke-dashoffset: 60; animation: gArc 4s ease-in-out infinite; animation-delay: 1.5s; }
.s5 .g-lock-hole, .s5 .g-lock-line { fill: var(--ink-1); stroke: var(--ink-1); stroke-width: 1.5; opacity: 0; animation: gHole 4s ease-in-out infinite; animation-delay: 2.2s; }
@keyframes gLock { 0%, 20% { opacity: 0; } 35%, 100% { opacity: 1; } }
@keyframes gArc { 0%, 35% { stroke-dashoffset: 60; opacity: 0; } 50% { opacity: 1; } 75%, 100% { stroke-dashoffset: 0; opacity: 1; } }
@keyframes gHole { 0%, 50% { opacity: 0; } 65%, 100% { opacity: 1; } }

/* S6 — Entegrasyon */
.s6 .e-node { fill: var(--ink-3); opacity: 0; animation: eNode 5s ease-in-out infinite; }
.s6 .e-node.en1 { animation-delay: 0s; }
.s6 .e-node.en2 { animation-delay: 0.08s; }
.s6 .e-node.en3 { animation-delay: 0.16s; }
.s6 .e-node.en4 { animation-delay: 0.24s; }
.s6 .e-node.en5 { animation-delay: 0.32s; }
.s6 .e-node.en6 { animation-delay: 0.4s; }
.s6 .e-node.en7 { animation-delay: 0.48s; }
.s6 .e-node.en8 { animation-delay: 0.56s; }
@keyframes eNode { 0% { opacity: 0; } 12%, 100% { opacity: 1; } }
.s6 .e-ray { stroke: var(--ink-4); stroke-width: 0.7; stroke-dasharray: 200; stroke-dashoffset: 200; animation: eRay 5s ease-in-out infinite; }
.s6 .e-ray.er1 { animation-delay: 0.6s; }
.s6 .e-ray.er2 { animation-delay: 0.7s; }
.s6 .e-ray.er3 { animation-delay: 0.8s; }
.s6 .e-ray.er4 { animation-delay: 0.9s; }
.s6 .e-ray.er5 { animation-delay: 1.0s; }
.s6 .e-ray.er6 { animation-delay: 1.1s; }
.s6 .e-ray.er7 { animation-delay: 1.2s; }
.s6 .e-ray.er8 { animation-delay: 1.3s; }
@keyframes eRay { 0%, 8% { stroke-dashoffset: 200; opacity: 0; } 20% { opacity: 0.7; } 45%, 100% { stroke-dashoffset: 0; opacity: 0.7; } }

/* Veri paketçikleri — dış noktalardan merkeze akar */
.s6 .e-pkt { fill: var(--gold-1); opacity: 0; animation: ePkt 5s ease-in-out infinite; }
.s6 .e-pkt.p1 { --dx: 0px;    --dy: 80px;  animation-delay: 1.4s; }
.s6 .e-pkt.p2 { --dx: -100px; --dy: 50px;  animation-delay: 1.5s; }
.s6 .e-pkt.p3 { --dx: -140px; --dy: 0px;   animation-delay: 1.6s; }
.s6 .e-pkt.p4 { --dx: -100px; --dy: -50px; animation-delay: 1.7s; }
.s6 .e-pkt.p5 { --dx: 0px;    --dy: -80px; animation-delay: 1.8s; }
.s6 .e-pkt.p6 { --dx: 100px;  --dy: -50px; animation-delay: 1.9s; }
.s6 .e-pkt.p7 { --dx: 140px;  --dy: 0px;   animation-delay: 2.0s; }
.s6 .e-pkt.p8 { --dx: 100px;  --dy: 50px;  animation-delay: 2.1s; }
@keyframes ePkt {
  0%, 4%    { transform: translate(0, 0); opacity: 0; }
  10%       { opacity: 1; }
  20%       { transform: translate(var(--dx, 0), var(--dy, 0)); opacity: 1; }
  24%, 100% { transform: translate(var(--dx, 0), var(--dy, 0)); opacity: 0; }
}

/* Merkez — paket varışında nabız atar */
.s6 .e-core { fill: var(--gold-1); opacity: 0; animation: eCore 5s ease-in-out infinite; }
@keyframes eCore {
  0%, 35%   { opacity: 0; r: 0; }
  44%       { opacity: 1; r: 10; }
  48%       { opacity: 1; r: 14; }
  56%, 100% { opacity: 1; r: 10; }
}

/* Yayılan eko halkaları — varışın ardından dışa */
.s6 .e-ring { fill: none; stroke: var(--gold-1); stroke-width: 1; opacity: 0; animation: eRing 5s ease-in-out infinite; }
.s6 .e-ring.r1 { animation-delay: 0s; }
.s6 .e-ring.r2 { animation-delay: 0.25s; }
@keyframes eRing {
  0%, 46% { r: 10; opacity: 0; }
  50%     { r: 10; opacity: 0.55; }
  72%     { r: 38; opacity: 0; }
  100%    { opacity: 0; }
}

/* S7 — Birleşme */
.s7 .b-sym { fill: var(--ink-3); opacity: 0; animation: bSym 5s ease-in-out infinite; }
.s7 .b-sym.b1 { animation-delay: 0s; }
.s7 .b-sym.b2 { animation-delay: 0.15s; }
.s7 .b-sym.b3 { animation-delay: 0.3s; }
.s7 .b-sym.b4 { animation-delay: 0.45s; }
.s7 .b-sym.b5 { animation-delay: 0.6s; }
.s7 .b-sym.b6 { animation-delay: 0.75s; }
@keyframes bSym { 0%, 5% { opacity: 0; } 15%, 100% { opacity: 1; } }
.s7 .b-ray { fill: none; stroke: var(--gold-1); stroke-width: 1.4; stroke-dasharray: 200; stroke-dashoffset: 200; opacity: 0; animation: bRay 5s ease-in-out infinite; }
.s7 .b-ray.br1 { animation-delay: 0.8s; }
.s7 .b-ray.br2 { animation-delay: 0.95s; }
.s7 .b-ray.br3 { animation-delay: 1.1s; }
.s7 .b-ray.br4 { animation-delay: 1.25s; }
.s7 .b-ray.br5 { animation-delay: 1.4s; }
.s7 .b-ray.br6 { animation-delay: 1.55s; }
@keyframes bRay { 0%, 10% { stroke-dashoffset: 200; opacity: 0; } 25% { opacity: 1; } 50%, 100% { stroke-dashoffset: 0; opacity: 1; } }
.s7 .b-core { fill: var(--gold-1); opacity: 0; animation: bCore 5s ease-in-out infinite; animation-delay: 2s; }
@keyframes bCore { 0%, 40% { opacity: 0; r: 0; } 55%, 100% { opacity: 1; r: 12; } }
.s7 .b-spine { stroke: var(--gold-1); stroke-width: 2; stroke-linecap: round; stroke-dasharray: 60; stroke-dashoffset: 60; animation: bSpine 5s ease-in-out infinite; animation-delay: 2.5s; }
@keyframes bSpine { 0%, 50% { stroke-dashoffset: 60; } 70%, 100% { stroke-dashoffset: 0; } }
.s7 .b-end { fill: var(--gold-2); opacity: 0; animation: bEnd 5s ease-in-out infinite; animation-delay: 3.2s; }
@keyframes bEnd { 0%, 64% { opacity: 0; r: 0; } 80%, 100% { opacity: 1; r: 6; } }

/* ===== Kontroller (önceki/sonraki + noktalar) ===== */

/* Responsive */
@media (max-width: 720px) {
  .sahne-grid { grid-template-columns: 1fr; }
  .sahne-viz svg { max-width: 280px; }
}

/* Reduced motion: hepsi dikey listede */
@media (prefers-reduced-motion: reduce) {
  .sahne, .sahne * { animation: none !important; transition: none !important; }
  .sahne {
    position: relative; opacity: 1 !important; visibility: visible !important;
    transform: none !important; inset: auto;
    margin-bottom: 1.5rem;
  }
  .sahne-stack { min-height: auto; }
  
}




/* === Cursor + Ghost node — kullanıcı sürükleme efekti === */
/* Yetim keyframe parçaları yorum altına alındı:
  62%       { opacity: 1; transform: translate(800px, 50px); }
  70%       { opacity: 1; transform: translate(700px, 130px); }
  76%       { opacity: 1; transform: translate(580px, 230px); }
  82%       { opacity: 1; transform: translate(480px, 280px); }
  86%       { opacity: 1; transform: translate(470px, 290px) scale(0.85); }
  90%       { opacity: 0.6; transform: translate(620px, 150px); }
  94%, 100% { opacity: 0; transform: translate(820px, 30px); }
*/

/* Yetim/bozuk keyframe parçaları yorum altına alındı (CSS parse temizliği) */
/*
  64%       { opacity: 0.5; transform: translate(780px, 40px); }
  72%       { opacity: 0.65; transform: translate(640px, 130px); }
  78%       { opacity: 0.75; transform: translate(540px, 220px); }
  86%       { opacity: 1; transform: translate(460px, 280px); }
  90%       { opacity: 1; transform: translate(460px, 280px); }
  92%       { opacity: 1; transform: translate(460px, 280px); }
  100%      { opacity: 0; transform: translate(800px, 20px); }

  90%, 100% { stroke-dasharray: 0; }

  20%      { opacity: 1; }
  45%, 90% { stroke-dashoffset: 0; opacity: 1; }
  100%     { stroke-dashoffset: 0; }
*/

@media (prefers-reduced-motion: reduce) {
  /* reduced-motion için boş — yetim kuralın sığınağı */
}

/* ============================================================
   05 · VITRIN — ürün ekranı
   ============================================================ */
.vitrin {
  background: var(--parchment-2);
  text-align: center;
}
.vitrin-head { max-width: 760px; margin: 0 auto clamp(28px, 3vw, 56px); }
.vitrin-tag {
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-1);
  margin: 0 0 1rem;
}
.vitrin h2 {
  font-family: var(--ff-display); font-style: italic; font-weight: 500;
  font-size: clamp(40px, 5vw + 8px, 88px);
  line-height: 1.05; letter-spacing: -0.5px;
  color: var(--ink-1); margin: 0;
}
.vitrin h2 em { color: var(--gold-1); font-style: italic; }
.vitrin-screen {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(8px, 1vw, 16px);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--parchment-0), var(--parchment-1));
  box-shadow:
    0 60px 100px -60px rgba(15, 26, 36, 0.35),
    0 24px 48px -28px rgba(15, 26, 36, 0.25);
  transform: perspective(2400px) rotateX(2deg);
  transition: transform 0.6s ease;
}
.vitrin-screen:hover {
  transform: perspective(2400px) rotateX(0deg);
}
.vitrin-screen svg { width: 100%; height: auto; display: block; border-radius: 8px; overflow: hidden; }

/* ============================================================
   06 · ATÖLYE — Heritage
   ============================================================ */
.atolye {
  text-align: center;
  background: var(--parchment-0);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.atolye-inner { max-width: 900px; margin: 0 auto; }
.atolye-tag {
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0 0 1.2rem;
}
.atolye h2 {
  font-family: var(--ff-display); font-style: italic; font-weight: 500;
  font-size: clamp(28px, 3.2vw + 4px, 56px);
  line-height: 1.2; letter-spacing: -0.2px;
  color: var(--ink-1); margin: 0 0 1.4rem;
}
.atolye h2 em { color: var(--gold-1); font-style: italic; }
.atolye-lead {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--ink-3); margin: 0;
  max-width: 56ch; margin-left: auto; margin-right: auto;
}

/* ============================================================
   07 · DEMO CTA
   ============================================================ */
.demo-cta {
  background: var(--parchment-1);
  text-align: center;
}
.demo-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.demo-cta h2 {
  font-family: var(--ff-display); font-style: italic; font-weight: 500;
  font-size: clamp(48px, 6vw + 10px, 110px);
  line-height: 1; letter-spacing: -0.7px;
  color: var(--ink-1); margin: 0;
}
.demo-cta h2 em { color: var(--gold-1); font-style: italic; }
.demo-btn {
  display: inline-block;
  font-family: var(--ff-smallcaps);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--parchment-0);
  background: var(--ink-1);
  padding: 18px 44px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.demo-btn:hover {
  background: var(--gold-1);
  transform: translateY(-2px);
}
.demo-meta {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--ink-4);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  
  .vitrin-screen { transform: none !important; }
}

/* ============================================================
   04 · FLAGSHIP — Flow Engine cinematic
   ============================================================ */
.flagship {
  background: transparent;
}
.flagship-stage {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 48px);
}
.flagship-tag {
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-1);
  margin: 0;
}
.flagship h2 {
  font-family: var(--ff-display);
  font-style: italic; font-weight: 500;
  font-size: clamp(40px, 5vw + 8px, 88px);
  line-height: 1.05; letter-spacing: -0.5px;
  color: var(--ink-1); margin: 0;
}
.flagship h2 em { color: var(--gold-1); font-style: italic; }
.flagship-lead {
  font-family: var(--ff-display); font-style: italic;
  font-size: clamp(18px, 1.5vw, 24px);
  color: var(--ink-3); margin: 0 auto;
  max-width: 56ch;
}
.flagship-canvas {
  margin-top: 1rem;
  padding: clamp(16px, 2vw, 32px);
  background: var(--parchment-0);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  box-shadow: 0 24px 60px -40px rgba(15, 26, 36, 0.25);
}
.flagship-canvas svg { width: 100%; height: auto; display: block; overflow: visible; }

/* Flow Engine — sırayla beliren node'lar */
.flagship-canvas svg .fg-node {
  opacity: 0;
  transform-origin: center;
  animation: fgNodeIn 8s ease-in-out infinite;
}
.flagship-canvas svg .fg-node.fg1 { animation-delay: 0s; }
.flagship-canvas svg .fg-node.fg2 { animation-delay: 0.8s; }
.flagship-canvas svg .fg-node.fg3 { animation-delay: 1.1s; }
.flagship-canvas svg .fg-node.fg4 { animation-delay: 2.0s; }
.flagship-canvas svg .fg-node.fg5 { animation-delay: 2.8s; }
.flagship-canvas svg .fg-node.fg6 { animation-delay: 3.1s; }
.flagship-canvas svg .fg-node.fg7 { animation-delay: 4.0s; }
@keyframes fgNodeIn {
  0%, 3%   { opacity: 0; transform: translateY(8px) scale(0.95); }
  10%, 90% { opacity: 1; transform: translateY(0) scale(1); }
  100%     { opacity: 1; }
}
.flagship-canvas svg .fg-conn {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: fgConn 8s ease-in-out infinite;
}
.flagship-canvas svg .fg-conn.fc1 { animation-delay: 0.6s; }
.flagship-canvas svg .fg-conn.fc2 { animation-delay: 0.9s; }
.flagship-canvas svg .fg-conn.fc3 { animation-delay: 1.6s; }
.flagship-canvas svg .fg-conn.fc4 { animation-delay: 1.9s; }
.flagship-canvas svg .fg-conn.fc5 { animation-delay: 2.4s; }
.flagship-canvas svg .fg-conn.fc6 { animation-delay: 2.7s; }
.flagship-canvas svg .fg-conn.fc7 { animation-delay: 3.6s; }
.flagship-canvas svg .fg-conn.fc8 { animation-delay: 3.9s; }
@keyframes fgConn {
  0%, 5%   { stroke-dashoffset: 300; opacity: 0; }
  20%      { opacity: 1; }
  45%, 90% { stroke-dashoffset: 0; opacity: 1; }
  100%     { stroke-dashoffset: 0; }
}


/* === 5-diagram rotator (her diagram 8s, toplam 40s döngü) === */
.diag-rotator {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 400;
}
.diag {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  opacity: 0;
  visibility: hidden;
}
.diag.d1 { animation: d1Show 40s ease-in-out infinite; }
.diag.d2 { animation: d2Show 40s ease-in-out infinite; }
.diag.d3 { animation: d3Show 40s ease-in-out infinite; }
.diag.d4 { animation: d4Show 40s ease-in-out infinite; }
.diag.d5 { animation: d5Show 40s ease-in-out infinite; }

@keyframes d1Show {
  0%, 1%   { opacity: 0; visibility: hidden; }
  2%, 18%  { opacity: 1; visibility: visible; }
  20%, 100%{ opacity: 0; visibility: hidden; }
}
@keyframes d2Show {
  0%, 21%   { opacity: 0; visibility: hidden; }
  22%, 38%  { opacity: 1; visibility: visible; }
  40%, 100% { opacity: 0; visibility: hidden; }
}
@keyframes d3Show {
  0%, 41%   { opacity: 0; visibility: hidden; }
  42%, 58%  { opacity: 1; visibility: visible; }
  60%, 100% { opacity: 0; visibility: hidden; }
}
@keyframes d4Show {
  0%, 61%   { opacity: 0; visibility: hidden; }
  62%, 78%  { opacity: 1; visibility: visible; }
  80%, 100% { opacity: 0; visibility: hidden; }
}
@keyframes d5Show {
  0%, 81%   { opacity: 0; visibility: hidden; }
  82%, 98%  { opacity: 1; visibility: visible; }
  99%, 100% { opacity: 0; visibility: hidden; }
}

/* Diagram adı (smallcaps başlık) */
.diag-name {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2vw + 10px, 36px);
  letter-spacing: -0.2px;
  text-transform: none;
  color: var(--gold-1);
  text-align: center;
  margin: 0 0 0.6rem;
  line-height: 1.1;
}
.diag svg {
  width: 100%;
  height: auto;
  flex: 1;
  min-height: 0;
  display: block;
  overflow: visible;
}

/* Her diagram için node delay'leri — kendi penceresinde baştan başlat
   d1 0s, d2 8s, d3 16s, d4 24s, d5 32s gecikme
   NOT: fg-conns grubu markup'ta node'lardan ÖNCE durduğu için (çizgiler
   kutuların altında kalsın diye) node'lar svg'nin 4. child'ından başlar;
   indeksler buna göre +1 kaydırıldı. */
.diag.d1 .fg-node:nth-child(2) { animation-delay: 0.0s; }
.diag.d1 .fg-node:nth-child(3) { animation-delay: 0.3s; }
.diag.d1 .fg-node:nth-child(4) { animation-delay: 0.6s; }
.diag.d1 .fg-node:nth-child(5) { animation-delay: 0.9s; }
.diag.d1 .fg-node:nth-child(6) { animation-delay: 1.2s; }
.diag.d1 .fg-node:nth-child(7) { animation-delay: 1.5s; }
.diag.d1 .fg-node:nth-child(8) { animation-delay: 1.8s; }

.diag.d2 .fg-node:nth-child(2) { animation-delay: 8.0s; }
.diag.d2 .fg-node:nth-child(3) { animation-delay: 8.3s; }
.diag.d2 .fg-node:nth-child(4) { animation-delay: 8.6s; }
.diag.d2 .fg-node:nth-child(5) { animation-delay: 8.9s; }
.diag.d2 .fg-node:nth-child(6) { animation-delay: 9.2s; }
.diag.d2 .fg-node:nth-child(7) { animation-delay: 9.5s; }
.diag.d2 .fg-node:nth-child(8) { animation-delay: 9.8s; }

.diag.d3 .fg-node:nth-child(2) { animation-delay: 16.0s; }
.diag.d3 .fg-node:nth-child(3) { animation-delay: 16.3s; }
.diag.d3 .fg-node:nth-child(4) { animation-delay: 16.6s; }
.diag.d3 .fg-node:nth-child(5) { animation-delay: 16.9s; }
.diag.d3 .fg-node:nth-child(6) { animation-delay: 17.2s; }
.diag.d3 .fg-node:nth-child(7) { animation-delay: 17.5s; }
.diag.d3 .fg-node:nth-child(8) { animation-delay: 17.8s; }

.diag.d4 .fg-node:nth-child(2) { animation-delay: 24.0s; }
.diag.d4 .fg-node:nth-child(3) { animation-delay: 24.3s; }
.diag.d4 .fg-node:nth-child(4) { animation-delay: 24.6s; }
.diag.d4 .fg-node:nth-child(5) { animation-delay: 24.9s; }
.diag.d4 .fg-node:nth-child(6) { animation-delay: 25.2s; }
.diag.d4 .fg-node:nth-child(7) { animation-delay: 25.5s; }

.diag.d5 .fg-node:nth-child(2) { animation-delay: 32.0s; }
.diag.d5 .fg-node:nth-child(3) { animation-delay: 32.3s; }
.diag.d5 .fg-node:nth-child(4) { animation-delay: 32.6s; }
.diag.d5 .fg-node:nth-child(5) { animation-delay: 32.9s; }
.diag.d5 .fg-node:nth-child(6) { animation-delay: 33.2s; }
.diag.d5 .fg-node:nth-child(7) { animation-delay: 33.5s; }
.diag.d5 .fg-node:nth-child(8) { animation-delay: 33.8s; }
.diag.d5 .fg-node:nth-child(9) { animation-delay: 34.1s; }

/* Conn animation — 40s döngüde her diagram'ın penceresinde */
.diag .fg-conn { animation-duration: 40s; }
.diag.d1 .fg-conn { animation-delay: 1.5s; }
.diag.d2 .fg-conn { animation-delay: 9.5s; }
.diag.d3 .fg-conn { animation-delay: 17.5s; }
.diag.d4 .fg-conn { animation-delay: 25.5s; }
.diag.d5 .fg-conn { animation-delay: 33.5s; }

/* Akış noktaları — kutular arası hatlarda ilerleyen mavi nokta */
.flagship-canvas .fg-flow-dot {
  fill: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
}

/* Noktalar yalnızca çizgiler çizildikten sonra görünür — her diyagramın penceresinde */
.diag .fg-flow-dot { opacity: 0; }
.diag.d1 .fg-flow-dot { animation: flowDotWindow 40s ease-in-out infinite; animation-delay: 5.5s; }
.diag.d2 .fg-flow-dot { animation: flowDotWindow 40s ease-in-out infinite; animation-delay: 13.5s; }
.diag.d3 .fg-flow-dot { animation: flowDotWindow 40s ease-in-out infinite; animation-delay: 21.5s; }
.diag.d4 .fg-flow-dot { animation: flowDotWindow 40s ease-in-out infinite; animation-delay: 29.5s; }
.diag.d5 .fg-flow-dot { animation: flowDotWindow 40s ease-in-out infinite; animation-delay: 37.5s; }
@keyframes flowDotWindow {
  0%       { opacity: 0; }
  2%       { opacity: 1; }
  5%       { opacity: 1; }
  7%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .diag, .diag .fg-node, .diag .fg-conn { animation: none !important; }
  .diag { position: relative; opacity: 1 !important; visibility: visible !important; margin-bottom: 2rem; }
  .flagship-canvas .fg-flow-dot { display: none; }
}

/* Entegrasyon ağı — noktalar, ışıyan hatlar, gidip gelen noktalar */
.ent-sky .ent-sky-line path {
  fill: none;
  stroke: #0070B0;
  stroke-width: 0.7;
  animation: entSkyLineGlow 6s ease-in-out infinite;
}
.ent-sky .ent-sky-line path:nth-child(1) { animation-delay: 0s; }
.ent-sky .ent-sky-line path:nth-child(2) { animation-delay: 0.75s; }
.ent-sky .ent-sky-line path:nth-child(3) { animation-delay: 1.5s; }
.ent-sky .ent-sky-line path:nth-child(4) { animation-delay: 2.25s; }
.ent-sky .ent-sky-line path:nth-child(5) { animation-delay: 3s; }
.ent-sky .ent-sky-line path:nth-child(6) { animation-delay: 3.75s; }
.ent-sky .ent-sky-line path:nth-child(7) { animation-delay: 4.5s; }
.ent-sky .ent-sky-line path:nth-child(8) { animation-delay: 5.25s; }
@keyframes entSkyLineGlow {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 0.75; }
}
.ent-sky .ent-sky-star {
  fill: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.5));
  animation: entSkyTwinkle 3.2s ease-in-out infinite;
}
.ent-sky .ent-sky-stars g:nth-of-type(2) .ent-sky-star { animation-delay: 0.4s; }
.ent-sky .ent-sky-stars g:nth-of-type(3) .ent-sky-star { animation-delay: 0.8s; }
.ent-sky .ent-sky-stars g:nth-of-type(4) .ent-sky-star { animation-delay: 1.2s; }
.ent-sky .ent-sky-stars g:nth-of-type(5) .ent-sky-star { animation-delay: 1.6s; }
.ent-sky .ent-sky-stars g:nth-of-type(6) .ent-sky-star { animation-delay: 2s; }
.ent-sky .ent-sky-stars g:nth-of-type(7) .ent-sky-star { animation-delay: 2.4s; }
.ent-sky .ent-sky-stars g:nth-of-type(8) .ent-sky-star { animation-delay: 2.8s; }
@keyframes entSkyTwinkle {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 1; }
}
.ent-sky .ent-sky-core {
  fill: #0070B0;
  filter: drop-shadow(0 0 12px rgba(0, 112, 176, 0.65));
  transform-box: fill-box;
  transform-origin: center;
  animation: entSkyCore 4.5s ease-in-out infinite;
}
@keyframes entSkyCore {
  0%, 100% { transform: scale(1);    opacity: 0.85; }
  50%      { transform: scale(1.12); opacity: 1; }
}
.ent-sky .ent-go {
  fill: #20A0E0;
  filter: drop-shadow(0 0 3px rgba(32, 160, 224, 0.6));
}
@media (prefers-reduced-motion: reduce) {
  .ent-sky .ent-sky-line path,
  .ent-sky .ent-sky-star,
  .ent-sky .ent-sky-core { animation: none !important; }
  .ent-sky .ent-sky-line path { opacity: 0.45; }
  .ent-sky .ent-fly { display: none; }
}

/* ============================================================
   Entegrasyon — Aday Kaynakları akış animasyonu (kutusuz)
   ============================================================ */
/* Entegrasyon sayfası — sıkılaştırılmış dikey boşluklar */
.ent-folio .section {
  padding-top: clamp(36px, 5vw, 76px);
  padding-bottom: clamp(36px, 5vw, 76px);
}
.ent-folio .section-intro { margin-bottom: clamp(20px, 3vw, 44px); }
.ent-folio .chapter-open { padding: clamp(24px, 4vw, 64px) 0; }
.ent-kaynak {
  padding-top: clamp(24px, 3vw, 48px);
}
.ent-akis {
  margin: 0;
}
.ent-akis svg { display: block; width: 100%; height: auto; }
.ent-akis-label text {
  font-family: var(--ff-smallcaps);
  font-size: 15px;
  letter-spacing: 2.5px;
  fill: var(--ink-2);
}
.ent-akis-line path {
  fill: none;
  stroke: #0070B0;
  stroke-width: 0.9;
  stroke-dasharray: 2 4;
  opacity: 0.55;
}
.ent-akis .ent-akis-dot,
.ent-mesaj .ent-akis-dot {
  fill: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
}
.ent-akis .ent-hub-core,
.ent-mesaj .ent-hub-core {
  fill: #0070B0;
  filter: drop-shadow(0 0 9px rgba(0, 112, 176, 0.65));
}
.ent-akis .ent-hub-wave,
.ent-mesaj .ent-hub-wave {
  fill: none;
  stroke: #20A0E0;
  stroke-width: 1.5;
}

/* Mesajlaşma bölümü — kanal animasyonu ve akıcı metin */
.ent-mesaj { margin: 0; }
.ent-mesaj svg { display: block; width: 100%; height: auto; }
.ent-mesaj .ent-tik text {
  font-size: 14px;
  fill: #20A0E0;
  animation: entTikBlink 3s ease-in-out infinite;
}
.ent-mesaj .ent-tik text:nth-of-type(2) { animation-delay: 1s; }
.ent-mesaj .ent-tik text:nth-of-type(3) { animation-delay: 2s; }
@keyframes entTikBlink {
  0%, 100% { opacity: 0.25; }
  55%      { opacity: 1; }
}
.ent-mesaj-prose {
  max-width: 72ch;
  margin: 1.4rem auto 0;
}
.ent-mesaj-prose p {
  margin: 0 0 1.5em;
  color: var(--ink-2);
  font-size: 19px;
  line-height: 1.75;
}
.ent-mesaj-prose p:last-child { margin-bottom: 0; }
.ent-mesaj-prose em { font-style: italic; color: var(--rubric); }

/* Kutusuz metin kolonları */
.ent-kaynak-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem clamp(28px, 4vw, 64px);
  margin-top: 1.4rem;
}
.ent-kaynak-cols > div {
  border-top: 1px solid var(--hairline);
  padding-top: 1.2rem;
}
.ent-kaynak-cols h3 {
  margin: 0 0 0.7rem;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(22px, 1.2vw + 14px, 27px);
  line-height: 1.1;
  color: var(--ink-1);
}
.ent-kaynak-cols h3 em { font-style: italic; color: var(--rubric); }
.ent-kaynak-cols p {
  margin: 0;
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.6;
}
.ent-kaynak-cols.ent-cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .ent-kaynak-cols,
  .ent-kaynak-cols.ent-cols-2 { grid-template-columns: 1fr; gap: 1.8rem; }
  .ent-akis-label text { font-size: 18px; }
}

/* Kaynak maddeleri: solda mini animasyonlu ikon */
.ent-kaynak-cols > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: start;
}
.ent-ico svg { width: 46px; height: 46px; display: block; overflow: visible; }

/* 1 · Tek tıkla aktarım: nokta soldan sağdaki kutuya sıçrar */
.e1dot {
  fill: #0070B0;
  filter: drop-shadow(0 0 3px rgba(0, 112, 176, 0.5));
  opacity: 0;
}
.ent-kaynak-cols.in .e1dot { animation: entE1 3s ease-in-out infinite; }
@keyframes entE1 {
  0%, 12%   { transform: translate(0, 0); opacity: 0; }
  20%       { opacity: 1; }
  50%       { transform: translate(18px, -14px); }
  74%       { transform: translate(36px, 0); opacity: 1; }
  86%, 100% { transform: translate(36px, 0); opacity: 0; }
}

/* 2 · Akıllı ayrıştırma: profil alan alan satırlara dökülür */
.e2l { stroke: #0070B0; stroke-width: 1.5; stroke-linecap: round; stroke-dasharray: 26; stroke-dashoffset: 26; }
.ent-kaynak-cols.in .e2l.a { animation: entE2a 4s linear infinite; }
.ent-kaynak-cols.in .e2l.b { animation: entE2b 4s linear infinite; }
.ent-kaynak-cols.in .e2l.c { animation: entE2c 4s linear infinite; }
@keyframes entE2a {
  0%, 8%    { stroke-dashoffset: 26; }
  22%       { stroke-dashoffset: 0; }
  84%       { stroke-dashoffset: 0; opacity: 1; }
  92%, 100% { stroke-dashoffset: 26; opacity: 0; }
}
@keyframes entE2b {
  0%, 28%   { stroke-dashoffset: 26; }
  42%       { stroke-dashoffset: 0; }
  84%       { stroke-dashoffset: 0; opacity: 1; }
  92%, 100% { stroke-dashoffset: 26; opacity: 0; }
}
@keyframes entE2c {
  0%, 48%   { stroke-dashoffset: 26; }
  62%       { stroke-dashoffset: 0; }
  84%       { stroke-dashoffset: 0; opacity: 1; }
  92%, 100% { stroke-dashoffset: 26; opacity: 0; }
}

/* 3 · Mükerrer: iki kart tek kartta birleşir */
.ent-kaynak-cols.in .e3a { animation: entE3a 3.6s ease-in-out infinite; }
.ent-kaynak-cols.in .e3b { animation: entE3b 3.6s ease-in-out infinite; }
@keyframes entE3a {
  0%, 18%   { transform: translateX(-8px); }
  48%       { transform: translateX(0); }
  82%       { transform: translateX(0); }
  100%      { transform: translateX(-8px); }
}
@keyframes entE3b {
  0%, 18%   { transform: translateX(8px); }
  48%       { transform: translateX(0); }
  82%       { transform: translateX(0); }
  100%      { transform: translateX(8px); }
}

/* 4 · Davet: zarftan çıkan davet noktası */
.e4dot {
  fill: #0070B0;
  filter: drop-shadow(0 0 3px rgba(0, 112, 176, 0.5));
  opacity: 0;
}
.ent-kaynak-cols.in .e4dot { animation: entE4 3.2s linear infinite; }
@keyframes entE4 {
  0%, 15%   { transform: translateX(0); opacity: 0; }
  24%       { opacity: 1; }
  60%       { transform: translateX(14px); opacity: 1; }
  76%, 100% { transform: translateX(14px); opacity: 0; }
}

/* 5 · Skor senkronu: çubuklar yükselir */
.e5b { transform: scaleY(0); transform-box: fill-box; transform-origin: bottom; }
.ent-kaynak-cols.in .e5b { animation: entE5 3.5s ease-in-out infinite; }
.ent-kaynak-cols.in .e5b.b2 { animation-delay: 0.15s; }
.ent-kaynak-cols.in .e5b.b3 { animation-delay: 0.3s; }
@keyframes entE5 {
  0%, 10%   { transform: scaleY(0); }
  38%       { transform: scaleY(1); }
  80%       { transform: scaleY(1); }
  94%, 100% { transform: scaleY(0); }
}

/* 6 · Skorla eleme: geçen geçer, kalan kapıda düşer */
.e6a {
  fill: #0070B0;
  filter: drop-shadow(0 0 3px rgba(0, 112, 176, 0.5));
  opacity: 0;
}
.e6b { fill: #5E6975; opacity: 0; }
.ent-kaynak-cols.in .e6a { animation: entE6a 4s linear infinite; }
.ent-kaynak-cols.in .e6b { animation: entE6b 4s linear infinite; }
@keyframes entE6a {
  0%, 8%    { transform: translate(0, 0); opacity: 0; }
  14%       { opacity: 1; }
  48%       { transform: translateX(38px); opacity: 1; }
  58%, 100% { transform: translateX(38px); opacity: 0; }
}
@keyframes entE6b {
  0%, 20%   { transform: translate(0, 0); opacity: 0; }
  26%       { opacity: 0.9; }
  50%       { transform: translate(15px, 0); opacity: 0.9; }
  62%       { transform: translate(17px, 12px); opacity: 0; }
  100%      { transform: translate(17px, 12px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .e1dot, .e4dot, .e6a, .e6b { display: none !important; }
  .e2l { stroke-dashoffset: 0 !important; animation: none !important; }
  .e3a, .e3b { animation: none !important; transform: none !important; }
  .e5b { animation: none !important; transform: scaleY(1) !important; }
}
@media (prefers-reduced-motion: reduce) {
  .ent-akis .ent-fly,
  .ent-akis .ent-hub-wave,
  .ent-mesaj .ent-fly,
  .ent-mesaj .ent-hub-wave { display: none; }
  .ent-mesaj .ent-tik text { animation: none; opacity: 0.8; }
}

/* Numarasız sözlük girişleri (numeral sütunu olmadan) */
.dictionary--plain .entry { grid-template-columns: 1fr; }

/* Platform sayfası — kemer hatlarında ve şirket ağacında akan mavi noktalar */
.plt-flow .plt-flow-dot {
  fill: #0070B0;
  opacity: 0.95;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
}
@media (prefers-reduced-motion: reduce) {
  .plt-flow .plt-flow-dot { display: none; }
}

/* ============================================================
   10 YENİ SECTION — Codex / Editorial
   Hepsi paylaşılan tipografi + .ed-rubric başlık tarzı kullanır.
   ============================================================ */

/* Shared editorial rubric (küçük majüskül kicker) */
.ed-rubric {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-4);
  display: inline-block;
  margin: 0 0 clamp(20px, 2.5vw, 36px);
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--hairline);
}
.ed-section { max-width: 1080px; margin: 0 auto; padding-top: clamp(60px, 7vw, 120px); padding-bottom: clamp(60px, 7vw, 120px); }
.ed-narrow  { max-width: 760px; }
.ed-center  { text-align: center; }
.ed-center .ed-rubric { display: inline-block; }

/* =============== S1 · Üç İlke =============== */
.ilkeler { }
.ilkeler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 96px);
}
.ilke-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(64px, 6vw + 20px, 110px);
  line-height: 0.9;
  color: var(--gold-1);
  margin: 0 0 1rem;
  font-weight: 400;
}
.ilke-baslik {
  font-family: var(--ff-display);
  font-size: clamp(22px, 1.4vw + 12px, 32px);
  font-weight: 500;
  margin: 0 0 0.8rem;
  color: var(--ink-1);
  letter-spacing: -0.2px;
  line-height: 1.15;
}
.ilke-aciklama {
  font-family: var(--ff-body);
  font-size: clamp(15px, 0.9vw + 6px, 17px);
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 880px) {
  .ilkeler-grid { grid-template-columns: 1fr; gap: clamp(40px, 5vw, 56px); }
}

/* =============== S2 · Tek Bir Gün =============== */
.gun-grid {
  display: grid;
  grid-template-columns: minmax(90px, 120px) 1fr;
  column-gap: clamp(28px, 3.5vw, 64px);
  row-gap: clamp(28px, 3vw, 48px);
  align-items: baseline;
}
.gun-saat {
  font-family: var(--ff-mono, ui-monospace, Menlo, monospace);
  font-size: clamp(14px, 0.6vw + 9px, 18px);
  letter-spacing: 0.18em;
  color: var(--gold-1);
  border-top: 1px solid var(--hairline);
  padding-top: 0.8rem;
}
.gun-not {
  font-family: var(--ff-display);
  font-size: clamp(20px, 1.2vw + 10px, 28px);
  line-height: 1.4;
  color: var(--ink-1);
  margin: 0;
  border-top: 1px solid var(--hairline);
  padding-top: 0.8rem;
}
.gun-not em {
  font-style: italic;
  color: var(--ink-3);
  display: block;
  font-size: 0.7em;
  margin-top: 0.4rem;
  font-family: var(--ff-body);
  line-height: 1.5;
}

/* === Slider: 5 rol için döner sahne === */
.gun-slider-section { max-width: 880px; margin: 0 auto; }
.gun-slider-sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(17px, 0.8vw + 12px, 22px);
  color: var(--ink-3);
  margin: 0 0 clamp(40px, 5vw, 80px);
  font-weight: 400;
}
.gun-rotator {
  position: relative;
  min-height: clamp(640px, 60vh, 760px);
  text-align: left;
  overflow: hidden;
}
.gun-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  animation: gunSlideCycle 40s ease-in-out infinite;
  pointer-events: none;
}
/* 5 rol için 40s döngü = her rol 8s görünür (giriş + duruş + çıkış) */
.gun-slide.g1 { animation-delay: 0s;   }
.gun-slide.g2 { animation-delay: 8s;   }
.gun-slide.g3 { animation-delay: 16s;  }
.gun-slide.g4 { animation-delay: 24s;  }
.gun-slide.g5 { animation-delay: 32s;  }
@keyframes gunSlideCycle {
  0%, 1%    { opacity: 0; transform: translateY(12px); }
  3%, 18%   { opacity: 1; transform: translateY(0); }
  20%, 100% { opacity: 0; transform: translateY(-12px); }
}
/* Dinamik başlık — rol kısmı mavi italik display serif */
.gun-baslik {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(34px, 3.4vw + 10px, 64px);
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--ink-1);
  margin: 0 0 clamp(36px, 4vw, 64px);
  text-align: center;
}
.gun-baslik em {
  font-style: italic;
  color: var(--gold-1);
  font-weight: 500;
}

/* Dot navigatörü (rol sıra göstergesi) */
.gun-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(40px, 5vw, 72px);
}
.gun-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink-4);
  opacity: 0.35;
  animation: gunDotCycle 40s ease-in-out infinite;
  transition: transform 0.4s ease;
}
.gun-dot.d1 { animation-delay: 0s;  }
.gun-dot.d2 { animation-delay: 8s;  }
.gun-dot.d3 { animation-delay: 16s; }
.gun-dot.d4 { animation-delay: 24s; }
.gun-dot.d5 { animation-delay: 32s; }
@keyframes gunDotCycle {
  0%, 1%   { opacity: 0.35; transform: scale(1); background: var(--ink-4); }
  3%, 18%  { opacity: 1;    transform: scale(1.4); background: var(--gold-1); }
  20%, 100%{ opacity: 0.35; transform: scale(1); background: var(--ink-4); }
}

@media (max-width: 720px) {
  .gun-rotator { min-height: 820px; }
  .gun-baslik { font-size: clamp(28px, 7vw, 38px); }
  .gun-grid { grid-template-columns: 80px 1fr; column-gap: 20px; row-gap: 24px; }
  .gun-not { font-size: 18px; }
  .gun-saat { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  /* Reduced motion: slide'ları üst üste tut, ilk slide'ı göster */
  .gun-slide { animation: none !important; opacity: 0; }
  .gun-slide.g1 { opacity: 1; }
  .gun-dot { animation: none !important; opacity: 1; background: var(--ink-4); }
  .gun-dot.d1 { background: var(--gold-1); }
}

/* =============== S3 · Önce / Sonra =============== */
.kiyas-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(28px, 4vw, 80px);
  align-items: start;
}
.kiyas-col h3 {
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0 0 1.5rem;
  font-weight: 500;
}
.kiyas-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kiyas-col li {
  font-family: var(--ff-display);
  font-size: clamp(20px, 1.3vw + 8px, 28px);
  line-height: 1.4;
  padding: clamp(14px, 1.4vw, 22px) 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--ink-1);
}
.kiyas-col.eski li {
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(0,0,0,0.25);
}
.kiyas-col.yeni li {
  font-style: italic;
  color: var(--ink-1);
}
.kiyas-rule {
  background: var(--hairline);
  min-height: 100%;
  width: 1px;
}
@media (max-width: 780px) {
  .kiyas-grid { grid-template-columns: 1fr; }
  .kiyas-rule { display: none; }
  .kiyas-col + .kiyas-col { margin-top: clamp(28px, 4vw, 48px); }
}

/* =============== S4 · Sözlük =============== */
.sozluk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 56px) clamp(40px, 4.5vw, 80px);
}
.sozluk-entry { padding: clamp(20px, 2vw, 32px) 0; border-top: 1px solid var(--hairline); }
.sozluk-term {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(24px, 1.5vw + 12px, 34px);
  color: var(--gold-1);
  margin: 0 0 0.5rem;
  font-style: italic;
}
.sozluk-term .pos {
  font-style: normal;
  font-family: var(--ff-smallcaps);
  font-size: 0.4em;
  letter-spacing: 0.2em;
  color: var(--ink-4);
  margin-left: 0.5rem;
  text-transform: lowercase;
}
.sozluk-def {
  font-family: var(--ff-body);
  font-size: clamp(15px, 0.9vw + 6px, 17px);
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
@media (max-width: 720px) {
  .sozluk-grid { grid-template-columns: 1fr; }
}

/* =============== S5 · Sessizce Çalışır =============== */
.sessiz {
  text-align: center;
  position: relative;
}
.sessiz-mısra {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 1.8vw + 12px, 36px);
  line-height: 1.5;
  color: var(--ink-1);
  margin: 0 auto;
  max-width: 680px;
}
.sessiz-mısra span { display: block; margin: 0.4rem 0; }
.sessiz-mısra span.son {
  color: var(--ink-3);
  font-size: 0.78em;
  margin-top: 1.2rem;
  font-style: italic;
}
.sessiz-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-1);
  margin-bottom: clamp(28px, 3vw, 48px);
  animation: sessizPulse 2.6s ease-in-out infinite;
}
@keyframes sessizPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.4); }
}

/* =============== S6 · Üç Aşama =============== */
.asama-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  gap: 0;
}
.asama-grid::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 8%; right: 8%;
  height: 1px;
  background: var(--hairline);
  z-index: 0;
}
.asama {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 clamp(12px, 2vw, 32px);
}
.asama-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--parchment-0);
  border: 2px solid var(--gold-1);
  margin: 0 auto 28px;
  position: relative;
}
.asama-dot::after {
  content: ""; position: absolute;
  inset: 3px; border-radius: 50%;
  background: var(--gold-1);
  transform: scale(0); transform-origin: center;
  animation: asamaFill 5s ease-in-out infinite;
}
.asama:nth-child(2) .asama-dot::after { animation-delay: 1.5s; }
.asama:nth-child(3) .asama-dot::after { animation-delay: 3s; }
@keyframes asamaFill {
  0%, 100% { transform: scale(0); }
  30%, 70% { transform: scale(1); }
}
.asama-roman {
  font-family: var(--ff-mono, ui-monospace, Menlo, monospace);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--ink-4);
  margin: 0 0 0.6rem;
}
.asama-baslik {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 1.4vw + 14px, 36px);
  margin: 0 0 0.8rem;
  color: var(--ink-1);
}
.asama-aciklama {
  font-family: var(--ff-body);
  font-size: clamp(14px, 0.7vw + 8px, 16px);
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0 auto;
  max-width: 240px;
}
@media (max-width: 780px) {
  .asama-grid { grid-template-columns: 1fr; gap: clamp(32px, 4vw, 56px); }
  .asama-grid::before { display: none; }
}

/* =============== S7 · Mimari Katmanları =============== */
.katman-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 780px;
  margin: 0 auto;
}
.katman {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: clamp(20px, 2.5vw, 40px);
  align-items: center;
  padding: clamp(20px, 2.4vw, 36px) clamp(20px, 2.4vw, 36px);
  background: var(--parchment-0);
  border: 1px solid var(--hairline);
  transition: transform 0.4s ease, background 0.4s ease;
}
.katman:hover {
  background: var(--parchment-1);
  transform: translateX(4px);
}
.katman-no {
  font-family: var(--ff-mono, ui-monospace, Menlo, monospace);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold-1);
}
.katman-baslik {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(20px, 1.2vw + 10px, 28px);
  color: var(--ink-1);
  margin: 0;
}
.katman-aciklama {
  font-family: var(--ff-body);
  font-size: clamp(14px, 0.7vw + 8px, 16px);
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 720px) {
  .katman { grid-template-columns: 1fr; gap: 0.6rem; }
  .katman-no { font-size: 11px; }
}

/* =============== S8 · Bir Karar (vaka) =============== */
.vaka {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.vaka-prose {
  font-family: var(--ff-display);
  font-size: clamp(20px, 1.4vw + 10px, 28px);
  line-height: 1.6;
  color: var(--ink-1);
  margin: 0 0 1.4rem;
  font-weight: 400;
}
.vaka-prose:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 3.2em;
  line-height: 0.85;
  float: left;
  padding: 0.1em 0.18em 0 0;
  color: var(--gold-1);
  font-style: italic;
}
.vaka-prose em {
  font-style: italic;
  color: var(--gold-1);
}
.vaka-imza {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--ink-4);
  text-transform: uppercase;
  margin-top: 2rem;
}

/* =============== S9 · Bir Yolculuk (Zaman Çizgisi) =============== */
.yolculuk-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.yolculuk-list::before {
  content: "";
  position: absolute;
  left: clamp(70px, 8vw, 110px);
  top: 0; bottom: 0;
  width: 1px;
  background: var(--hairline);
}
.yolculuk-item {
  display: grid;
  grid-template-columns: clamp(70px, 8vw, 110px) 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(16px, 2vw, 28px) 0;
  align-items: baseline;
  position: relative;
}
.yolculuk-item::before {
  content: "";
  position: absolute;
  left: clamp(70px, 8vw, 110px);
  top: 50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--parchment-0);
  border: 1.5px solid var(--gold-1);
  transform: translate(-50%, -50%);
}
.yolculuk-yil {
  font-family: var(--ff-mono, ui-monospace, Menlo, monospace);
  font-size: clamp(16px, 0.7vw + 10px, 20px);
  color: var(--gold-1);
  letter-spacing: 0.08em;
  margin: 0;
}
.yolculuk-olay {
  font-family: var(--ff-display);
  font-size: clamp(19px, 1vw + 10px, 24px);
  line-height: 1.4;
  color: var(--ink-1);
  margin: 0;
  padding-left: clamp(16px, 2vw, 32px);
}
.yolculuk-olay em {
  font-style: italic;
  color: var(--ink-3);
  font-size: 0.7em;
  font-family: var(--ff-body);
  display: block;
  margin-top: 0.3rem;
  line-height: 1.5;
}

/* =============== S10 · Bir Son Söz (Kapanış) =============== */
.son-soz {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.son-soz-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 2.6vw + 14px, 56px);
  line-height: 1.25;
  color: var(--ink-1);
  margin: 0 0 2rem;
  letter-spacing: -0.5px;
}
.son-soz-quote::before { content: "\201C"; color: var(--gold-1); font-size: 1.2em; line-height: 0; vertical-align: -0.3em; margin-right: 0.05em; }
.son-soz-quote::after  { content: "\201D"; color: var(--gold-1); font-size: 1.2em; line-height: 0; vertical-align: -0.3em; margin-left: 0.05em; }
.son-soz-imza {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0;
}
.son-soz-imza::before, .son-soz-imza::after {
  content: "—";
  margin: 0 0.8rem;
  color: var(--ink-4);
}

@media (prefers-reduced-motion: reduce) {
  .sessiz-dot, .asama-dot::after { animation: none !important; }
}

  40%, 100%{ opacity: 0; visibility: hidden; }
}
@keyframes d3Show {
  0%, 41%   { opacity: 0; visibility: hidden; }
  42%, 58%  { opacity: 1; visibility: visible; }
  60%, 100%{ opacity: 0; visibility: hidden; }
}
@keyframes d4Show {
  0%, 61%   { opacity: 0; visibility: hidden; }
  62%, 78%  { opacity: 1; visibility: visible; }
  80%, 100%{ opacity: 0; visibility: hidden; }
}
@keyframes d5Show {
  0%, 81%   { opacity: 0; visibility: hidden; }
  82%, 98%  { opacity: 1; visibility: visible; }
  100%     { opacity: 0; visibility: hidden; }
}

/* ============================================================
   10 EK SECTION — Sayılar, Yol, Sözler, Ritim, Sorular,
                   Dakika, Mektup, Rönesans, Kapılar, Yarın
   ============================================================ */

/* === S-EK1 · Sayılarla === */
.sayilarla-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 96px);
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.sayilarla-num {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(80px, 9vw + 20px, 160px);
  line-height: 0.92;
  letter-spacing: -3px;
  color: var(--gold-1);
  margin: 0 0 1rem;
  font-style: italic;
}
.sayilarla-rubric {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-4);
  display: block;
  margin: 0 0 0.8rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--hairline);
}
.sayilarla-aciklama {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(16px, 1vw + 6px, 19px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 auto;
  max-width: 28ch;
}
@media (max-width: 780px) { .sayilarla-grid { grid-template-columns: 1fr; gap: 56px; } }

/* === S-EK2 · Bir Başvurunun Yolu (dikey timeline) === */
.yol-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 680px;
  position: relative;
}
.yol-list::before {
  content: "";
  position: absolute;
  left: clamp(40px, 5vw, 80px);
  top: 30px; bottom: 30px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-1) 12%, var(--gold-1) 88%, transparent);
  opacity: 0.4;
}
.yol-item {
  display: grid;
  grid-template-columns: clamp(40px, 5vw, 80px) 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(20px, 2.5vw, 36px) 0;
  align-items: start;
  position: relative;
}
.yol-num {
  font-family: var(--ff-mono, ui-monospace, Menlo, monospace);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--gold-1);
  text-align: center;
  position: relative;
  z-index: 1;
  background: var(--parchment-0);
  padding: 4px 0;
}
.yol-baslik {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 1.4vw + 12px, 30px);
  color: var(--ink-1);
  margin: 0 0 0.4rem;
  letter-spacing: -0.2px;
}
.yol-aciklama {
  font-family: var(--ff-body);
  font-size: clamp(15px, 0.8vw + 6px, 17px);
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
}

/* === S-EK3 · Altı Söz === */
.sozler-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
  max-width: 1200px;
  margin: 0 auto;
}
.soz {
  padding: clamp(28px, 3vw, 48px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: left;
  transition: background 0.35s ease;
}
.soz:hover { background: var(--parchment-0); }
.soz-num {
  font-family: var(--ff-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-1);
  margin: 0 0 1.2rem;
}
.soz-baslik {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 1.6vw + 14px, 38px);
  color: var(--ink-1);
  margin: 0 0 0.8rem;
  letter-spacing: -0.3px;
}
.soz-text {
  font-family: var(--ff-body);
  font-size: clamp(15px, 0.8vw + 6px, 16px);
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 880px) { .sozler-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sozler-grid { grid-template-columns: 1fr; } }

/* === S-EK4 · Yıl Boyu Ritim (4 çeyrek) === */
.ritim-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.cesy {
  text-align: center;
  padding: clamp(28px, 3vw, 48px) clamp(16px, 2vw, 28px);
  position: relative;
}
.cesy + .cesy::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(10px, 1.25vw, 20px));
  top: 20%; bottom: 20%;
  width: 1px;
  background: var(--hairline);
}
.cesy-roman {
  font-family: var(--ff-mono, monospace);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold-1);
  margin: 0 0 1rem;
}
.cesy-mevsim {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 1.8vw + 12px, 38px);
  color: var(--ink-1);
  margin: 0 0 0.6rem;
}
.cesy-konu {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0 0 1rem;
}
.cesy-text {
  font-family: var(--ff-body);
  font-size: clamp(14px, 0.7vw + 7px, 16px);
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0 auto;
  max-width: 200px;
}
@media (max-width: 780px) {
  .ritim-grid { grid-template-columns: 1fr 1fr; }
  .cesy + .cesy::before { display: none; }
}

/* === S-EK5 · Beş Soru === */
.soru-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 820px;
}
.soru-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  padding: clamp(28px, 3vw, 48px) 0;
  border-bottom: 1px solid var(--hairline);
}
.soru-item:first-child { border-top: 1px solid var(--hairline); }
.soru-q {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 1.5vw + 10px, 32px);
  line-height: 1.3;
  color: var(--ink-1);
  margin: 0;
}
.soru-q::before {
  content: "—";
  margin-right: 0.6rem;
  color: var(--gold-1);
}
.soru-a {
  font-family: var(--ff-body);
  font-size: clamp(15px, 0.9vw + 6px, 17px);
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  padding-left: 1.6rem;
}
.soru-a::before { content: ""; }

/* === S-EK6 · Bir Dakika İçinde === */
.dakika {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.dakika-prose {
  font-family: var(--ff-display);
  font-size: clamp(26px, 2vw + 14px, 44px);
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.dakika-prose strong {
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-1);
}
.dakika-prose .sep {
  display: inline-block;
  width: 8px; height: 8px;
  margin: 0 0.8rem;
  border-radius: 50%;
  background: var(--ink-4);
  vertical-align: 0.2em;
  opacity: 0.45;
}

/* === S-EK7 · Mektup === */
.mektup {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.mektup-tarih {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin: 0 0 clamp(28px, 3vw, 48px);
}
.mektup-prose {
  font-family: var(--ff-display);
  font-size: clamp(19px, 1.2vw + 8px, 24px);
  line-height: 1.6;
  color: var(--ink-1);
  margin: 0 0 1.4rem;
  font-weight: 400;
}
.mektup-prose:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: 3.4em;
  line-height: 0.85;
  float: left;
  padding: 0.08em 0.16em 0 0;
  color: var(--gold-1);
}
.mektup-imza {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(20px, 1vw + 8px, 24px);
  color: var(--gold-1);
  margin: 2rem 0 0;
}
.mektup-imza-alt {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0.4rem 0 0;
}

/* === S-EK8 · Dijital Rönesans (manifesto) === */
.ronesans {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding-top: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(40px, 5vw, 80px);
}
.ronesans-rubric {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--gold-1);
  text-transform: uppercase;
  margin: 0 0 clamp(32px, 4vw, 56px);
}
.ronesans-quote {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(34px, 3vw + 16px, 64px);
  line-height: 1.18;
  color: var(--ink-1);
  margin: 0;
  letter-spacing: -0.8px;
}
.ronesans-quote em {
  font-style: italic;
  color: var(--gold-1);
}

/* === S-EK9 · Beş Kapı === */
.kapi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 28px);
  max-width: 1200px;
  margin: 0 auto;
}
.kapi {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(28px, 3vw, 48px) clamp(12px, 1.5vw, 20px);
  border: 1px solid var(--hairline);
  background: var(--parchment-0);
  text-align: center;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.kapi:hover { transform: translateY(-3px); border-color: var(--gold-1); }
.kapi-glyph {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: clamp(16px, 1.8vw, 24px);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 24px;
  color: var(--gold-1);
}
.kapi-baslik {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 1vw + 6px, 21px);
  color: var(--ink-1);
  margin: 0 0 0.6rem;
}
.kapi-aciklama {
  font-family: var(--ff-body);
  font-size: clamp(13px, 0.6vw + 7px, 14px);
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0;
}
@media (max-width: 880px) { .kapi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .kapi-grid { grid-template-columns: 1fr; } }

/* === S-EK10 · Yarın === */
.yarin {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.yarin-prose {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(26px, 2vw + 14px, 44px);
  line-height: 1.35;
  color: var(--ink-1);
  margin: 0 0 1.4rem;
  font-weight: 400;
  letter-spacing: -0.4px;
}
.yarin-prose em { color: var(--gold-1); font-style: italic; }
.yarin-foot {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-4);
  text-transform: uppercase;
  margin: clamp(28px, 3vw, 48px) 0 0;
}

/* ============================================================
   10 SATIŞA YÖNELİK ANİMASYONLU SECTION
   ============================================================ */

/* Ortak ed-rubric zaten var, ed-section da var */
.sales-section { max-width: 1280px; margin: 0 auto; padding-top: clamp(60px, 7vw, 120px); padding-bottom: clamp(60px, 7vw, 120px); }
.sales-section.tight { padding-top: clamp(30px, 4vw, 60px); padding-bottom: clamp(30px, 4vw, 60px); }

/* =============== S-SALES1 · Bir Yılda Kazanım (büyük sayaç) =============== */
.kazanim {
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.kazanim-num {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(100px, 12vw + 30px, 220px);
  line-height: 0.9;
  letter-spacing: -4px;
  color: var(--gold-1);
  margin: 0 0 1rem;
  display: inline-block;
  position: relative;
  background: linear-gradient(to right, var(--gold-1), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kazanim-birim {
  font-family: var(--ff-smallcaps);
  font-size: 14px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0 0 1.4rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--hairline);
  display: inline-block;
}
.kazanim-aciklama {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(22px, 1.4vw + 12px, 32px);
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0 auto;
  max-width: 32ch;
  font-weight: 400;
}
.kazanim-aciklama em { color: var(--gold-1); font-style: italic; }

/* =============== S-SALES2 · Hızlanan İşler (animasyonlu barlar) =============== */
.hiz-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 900px;
}
.hiz-item {
  padding: clamp(28px, 3vw, 48px) 0;
  border-bottom: 1px solid var(--hairline);
}
.hiz-item:first-child { border-top: 1px solid var(--hairline); }
.hiz-baslik {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 1.4vw + 10px, 30px);
  color: var(--ink-1);
  margin: 0 0 1.4rem;
}
.hiz-row {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  gap: 16px;
  margin-bottom: 0.7rem;
}
.hiz-etiket {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.hiz-val {
  font-family: var(--ff-mono, monospace);
  font-size: clamp(13px, 0.5vw + 8px, 16px);
  color: var(--ink-2);
  text-align: right;
}
.hiz-bar {
  position: relative;
  height: 8px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  overflow: hidden;
}
.hiz-fill {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  background: linear-gradient(90deg, rgba(0,112,176,0.3), rgba(0,112,176,0.45));
  border-radius: 4px;
  width: 0;
  animation: hizFillBefore 4s ease-out forwards;
  animation-delay: 0.3s;
}
.hiz-item.is-yeni .hiz-fill {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  animation: hizFillAfter 4s ease-out forwards;
  animation-delay: 0.6s;
  box-shadow: 0 0 12px rgba(0, 112, 176, 0.3);
}
@keyframes hizFillBefore {
  0%   { width: 0; }
  100% { width: var(--bar-width, 80%); }
}
@keyframes hizFillAfter {
  0%   { width: 0; }
  100% { width: var(--bar-width, 15%); }
}

/* =============== S-SALES3 · Üç Mihenk (animasyonlu sayaçlar) =============== */
.mihenk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 96px);
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.mihenk-num {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(64px, 7vw + 16px, 120px);
  line-height: 0.95;
  letter-spacing: -2px;
  color: var(--gold-1);
  margin: 0 0 0.6rem;
  font-style: italic;
  position: relative;
  display: inline-block;
}
.mihenk-num::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold-1);
  animation: mihenkUnderline 1.2s ease-out forwards;
  animation-delay: 1s;
}
@keyframes mihenkUnderline {
  to { width: 60%; }
}
.mihenk-suffix {
  font-size: 0.5em;
  color: var(--gold-2);
  vertical-align: 0.2em;
  margin-left: 0.1em;
}
.mihenk-label {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 1rem 0 0.6rem;
}
.mihenk-text {
  font-family: var(--ff-body);
  font-size: clamp(15px, 0.8vw + 6px, 17px);
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0 auto;
  max-width: 28ch;
}
@media (max-width: 780px) { .mihenk-grid { grid-template-columns: 1fr; gap: 48px; } }

/* =============== S-SALES4 · ROI Eğrisi (SVG animasyon) =============== */
.roi-stage {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.roi-stage svg { width: 100%; height: auto; }
.roi-axis { stroke: rgba(0,0,0,0.15); stroke-width: 1; }
.roi-invest-line {
  stroke: var(--ink-4);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: roiDraw 2.5s ease-out forwards;
  animation-delay: 0.3s;
}
.roi-return-line {
  stroke: var(--gold-1);
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: roiDraw 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1.2s;
  filter: drop-shadow(0 2px 6px rgba(0,112,176,0.3));
}
.roi-return-fill {
  fill: url(#roiGradient);
  opacity: 0;
  animation: roiFillIn 1.5s ease-out forwards;
  animation-delay: 3.5s;
}
.roi-break {
  fill: var(--gold-1);
  opacity: 0;
  animation: roiPointPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 3.2s;
  transform-origin: center;
  transform-box: fill-box;
  transform: scale(0);
}
.roi-break-label {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.2em;
  fill: var(--gold-1);
  opacity: 0;
  animation: roiLabelFade 0.8s ease-out forwards;
  animation-delay: 3.5s;
}
@keyframes roiDraw    { to { stroke-dashoffset: 0; } }
@keyframes roiFillIn  { to { opacity: 0.2; } }
@keyframes roiPointPop{ to { opacity: 1; transform: scale(1); } }
@keyframes roiLabelFade { to { opacity: 1; } }
.roi-legend {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 3vw, 56px);
  margin-top: clamp(28px, 3vw, 48px);
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.roi-legend span::before {
  content: "";
  display: inline-block;
  width: 18px; height: 2px;
  margin-right: 10px;
  vertical-align: middle;
}
.roi-legend .leg-invest::before { background: var(--ink-4); }
.roi-legend .leg-return::before { background: var(--gold-1); }

/* =============== S-SALES5 · Üç Adımda Başla =============== */
.basla-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.basla-grid::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 12%; right: 12%;
  height: 1px;
  background: var(--hairline);
  z-index: 0;
}
.basla-grid::after {
  content: "";
  position: absolute;
  top: 56px;
  left: 12%;
  height: 1px;
  width: 0;
  background: var(--gold-1);
  animation: baslaProgress 4s ease-out forwards;
  animation-delay: 1s;
  z-index: 1;
  box-shadow: 0 0 6px rgba(0,112,176,0.6);
}
@keyframes baslaProgress { to { width: 76%; } }

.basla {
  text-align: center;
  padding: 0 clamp(16px, 2vw, 32px);
  position: relative;
  z-index: 2;
}
.basla-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--parchment-0);
  border: 2px solid var(--gold-1);
  margin: 44px auto 32px;
  position: relative;
}
.basla-dot::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--gold-1);
  transform: scale(0);
  animation: baslaDotFill 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.basla:nth-child(1) .basla-dot::before { animation-delay: 1s; }
.basla:nth-child(2) .basla-dot::before { animation-delay: 2.5s; }
.basla:nth-child(3) .basla-dot::before { animation-delay: 4s; }
@keyframes baslaDotFill { to { transform: scale(1); } }

.basla-num {
  font-family: var(--ff-mono, monospace);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--ink-4);
  margin: 0 0 0.6rem;
}
.basla-baslik {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 1.6vw + 12px, 34px);
  color: var(--ink-1);
  margin: 0 0 0.8rem;
}
.basla-text {
  font-family: var(--ff-body);
  font-size: clamp(14px, 0.7vw + 7px, 16px);
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0 auto;
  max-width: 240px;
}
@media (max-width: 780px) {
  .basla-grid { grid-template-columns: 1fr; gap: 48px; }
  .basla-grid::before, .basla-grid::after { display: none; }
}

/* =============== S-SALES6 · Demo CTA =============== */
.demo-cta {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) clamp(28px, 4vw, 64px);
  background: linear-gradient(135deg, rgba(0,112,176,0.04), rgba(32,160,224,0.02));
  border: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.demo-cta::before {
  content: "";
  position: absolute;
  top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(0,112,176,0.06) 0%, transparent 60%);
  animation: demoShimmer 8s ease-in-out infinite;
}
@keyframes demoShimmer {
  0%, 100% { transform: translateX(0) translateY(0); }
  50%      { transform: translateX(120%) translateY(10%); }
}
.demo-cta-rubric {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin: 0 0 clamp(20px, 2vw, 32px);
  position: relative;
}
.demo-cta-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(34px, 3.4vw + 14px, 64px);
  line-height: 1.12;
  color: var(--ink-1);
  margin: 0 0 clamp(20px, 2vw, 32px);
  position: relative;
  letter-spacing: -0.5px;
}
.demo-cta-title em { color: var(--gold-1); font-style: italic; }
.demo-cta-sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(17px, 1vw + 8px, 22px);
  color: var(--ink-3);
  margin: 0 0 clamp(32px, 4vw, 56px);
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
  position: relative;
}
.demo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: var(--gold-1);
  color: var(--parchment-0);
  text-decoration: none;
  font-family: var(--ff-smallcaps);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,112,176,0.25);
}
.demo-cta-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: demoBtnShine 3s ease-in-out infinite;
}
@keyframes demoBtnShine {
  0%   { left: -100%; }
  60%  { left: 150%; }
  100% { left: 150%; }
}
.demo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,112,176,0.4);
}
.demo-cta-btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.demo-cta-btn:hover .arrow { transform: translateX(4px); }

/* =============== S-SALES7 · Anonim Alıntılar (rotating) =============== */
.alinti-rotator {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  min-height: 320px;
  text-align: center;
}
.alinti {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(12px);
  animation: alintiCycle 24s ease-in-out infinite;
}
.alinti.a1 { animation-delay: 0s;  }
.alinti.a2 { animation-delay: 6s;  }
.alinti.a3 { animation-delay: 12s; }
.alinti.a4 { animation-delay: 18s; }
@keyframes alintiCycle {
  0%, 2%    { opacity: 0; transform: translateY(12px); }
  5%, 22%   { opacity: 1; transform: translateY(0); }
  25%, 100% { opacity: 0; transform: translateY(-12px); }
}
.alinti-quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 1.8vw + 12px, 36px);
  line-height: 1.4;
  color: var(--ink-1);
  margin: 0 0 1.6rem;
  letter-spacing: -0.3px;
}
.alinti-quote::before { content: "\201C"; color: var(--gold-1); margin-right: 0.1em; }
.alinti-quote::after  { content: "\201D"; color: var(--gold-1); margin-left: 0.1em; }
.alinti-rol {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0;
}
.alinti-rol::before, .alinti-rol::after {
  content: "—";
  margin: 0 0.6rem;
  color: var(--ink-4);
}
.alinti-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(32px, 4vw, 56px);
}
.alinti-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ink-4);
  opacity: 0.35;
  animation: alintiCycle 24s ease-in-out infinite;
}
.alinti-dot.d1 { animation-delay: 0s;  }
.alinti-dot.d2 { animation-delay: 6s;  }
.alinti-dot.d3 { animation-delay: 12s; }
.alinti-dot.d4 { animation-delay: 18s; }

/* =============== S-SALES8 · Hızlı Soru-Cevap (accordion benzeri) =============== */
.faq-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 820px;
}
.faq-item {
  padding: clamp(24px, 2.5vw, 36px) 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.faq-item:first-child { border-top: 1px solid var(--hairline); }
.faq-q {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(20px, 1.3vw + 8px, 26px);
  color: var(--ink-1);
  margin: 0 0 0.8rem;
  position: relative;
  padding-left: 36px;
}
.faq-q::before {
  content: "+";
  position: absolute;
  left: 0; top: 0;
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--gold-1);
  font-size: 1.3em;
  line-height: 1;
  animation: faqRotate 2s ease-in-out infinite;
}
@keyframes faqRotate {
  0%, 100% { transform: rotate(0deg); }
  50%      { transform: rotate(180deg); }
}
.faq-a {
  font-family: var(--ff-body);
  font-size: clamp(15px, 0.8vw + 7px, 17px);
  line-height: 1.6;
  color: var(--ink-3);
  margin: 0;
  padding-left: 36px;
}

/* =============== S-SALES9 · Pilot Program (vurgu banner) =============== */
.pilot {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  background: linear-gradient(135deg, var(--ink-1) 0%, #0F1A24 100%);
  color: var(--parchment-0);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.pilot-body { padding: clamp(40px, 5vw, 72px) clamp(32px, 4vw, 60px); }
.pilot-rubric {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 1.2rem;
}
.pilot-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(32px, 2.8vw + 14px, 52px);
  line-height: 1.15;
  margin: 0 0 1.2rem;
  letter-spacing: -0.4px;
}
.pilot-title em { color: var(--gold-2); font-style: italic; }
.pilot-text {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(17px, 1vw + 8px, 22px);
  line-height: 1.5;
  margin: 0 0 2rem;
  color: rgba(255,255,255,0.75);
}
.pilot-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 1px solid var(--gold-2);
  color: var(--gold-2);
  background: transparent;
  text-decoration: none;
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.pilot-btn:hover { background: var(--gold-2); color: var(--ink-1); }
.pilot-visual {
  position: relative;
  background:
    radial-gradient(circle at 70% 30%, rgba(32,160,224,0.4) 0%, transparent 50%),
    linear-gradient(135deg, #0F1A24 0%, #1a2630 100%);
  min-height: 260px;
  overflow: hidden;
}
.pilot-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(32,160,224,0.3);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: pilotOrbit 12s linear infinite;
}
.pilot-orbit.o1 { width: 100px; height: 100px; animation-duration: 6s; }
.pilot-orbit.o2 { width: 180px; height: 180px; animation-duration: 12s; animation-direction: reverse; }
.pilot-orbit.o3 { width: 280px; height: 280px; animation-duration: 18s; }
.pilot-orbit::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 6px; height: 6px;
  background: var(--gold-2);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--gold-2);
}
@keyframes pilotOrbit {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.pilot-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  background: var(--gold-2);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(32,160,224,0.7);
  animation: pilotPulse 2.5s ease-in-out infinite;
}
@keyframes pilotPulse {
  0%, 100% { box-shadow: 0 0 24px rgba(32,160,224,0.5); }
  50%      { box-shadow: 0 0 48px rgba(32,160,224,0.9); }
}
@media (max-width: 780px) {
  .pilot { grid-template-columns: 1fr; }
  .pilot-visual { min-height: 200px; }
}

/* =============== S-SALES10 · Konuşalım (kapanış CTA) =============== */
.konusalim {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.konusalim-title {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(40px, 4vw + 18px, 78px);
  line-height: 1.05;
  color: var(--ink-1);
  margin: 0 0 1.6rem;
  letter-spacing: -0.8px;
}
.konusalim-title em { font-style: italic; color: var(--gold-1); }
.konusalim-sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(19px, 1.2vw + 8px, 24px);
  color: var(--ink-3);
  margin: 0 0 clamp(36px, 4vw, 64px);
  line-height: 1.5;
}
.konusalim-actions {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  flex-wrap: wrap;
}
.k-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--ff-smallcaps);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.k-btn.primary {
  background: var(--gold-1);
  color: var(--parchment-0);
  box-shadow: 0 4px 16px rgba(0,112,176,0.25);
}
.k-btn.primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,112,176,0.4);
}
.k-btn.ghost {
  color: var(--ink-1);
  border: 1px solid var(--ink-3);
}
.k-btn.ghost:hover {
  border-color: var(--gold-1);
  color: var(--gold-1);
}
.k-btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.k-btn:hover .arrow { transform: translateX(4px); }
.konusalim-meta {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: clamp(36px, 4vw, 64px) 0 0;
}

/* === Reveal-triggered animations için: scroll observer'a güvenmek yerine
       sales section'lar viewport'a girdiğinde animation tetiklenir === */

@media (prefers-reduced-motion: reduce) {
  .hiz-fill, .roi-invest-line, .roi-return-line, .roi-break,
  .roi-break-label, .roi-return-fill,
  .basla-dot::before, .basla-grid::after,
  .mihenk-num::after,
  .demo-cta::before, .demo-cta-btn::before,
  .alinti, .alinti-dot, .pilot-orbit, .pilot-core, .faq-q::before {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
    width: var(--bar-width, 100%) !important;
  }
}

/* ============================================================
   MÜŞTERİ LOGOLARI · Showcase
   ============================================================ */
.musteri-section {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: clamp(60px, 7vw, 100px);
  padding-bottom: clamp(60px, 7vw, 100px);
  text-align: center;
}
.musteri-intro {
  max-width: 720px;
  margin: 0 auto clamp(48px, 5vw, 80px);
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 1.3vw + 10px, 28px);
  line-height: 1.5;
  color: var(--ink-2);
}
.musteri-intro em { color: var(--gold-1); font-style: italic; }
.musteri-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
  background: var(--parchment-0);
}
.musteri-cell {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 2vw, 36px);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.4s ease, transform 0.4s ease;
  position: relative;
}
.musteri-cell:hover {
  background: #fff;
  transform: scale(1.02);
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.musteri-cell img,
.musteri-cell svg.musteri-logo {
  max-width: 90%;
  max-height: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.4s ease;
}
.musteri-cell:hover img,
.musteri-cell:hover svg.musteri-logo {
  filter: grayscale(100%) opacity(1);
}
/* Inline SVG logo — siyah beyaz, hover'da kararlaşır */
.musteri-cell svg.musteri-logo {
  display: block;
  fill: #1a1a1a;
}
/* Placeholder ad — img yüklenmediğinde gözükür */
.musteri-cell .musteri-ad {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1vw + 8px, 24px);
  color: var(--ink-3);
  letter-spacing: -0.2px;
  text-align: center;
  transition: color 0.4s ease;
}
.musteri-cell:hover .musteri-ad { color: var(--ink-1); }

.musteri-meta {
  font-family: var(--ff-smallcaps);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: clamp(40px, 5vw, 72px) 0 0;
}
.musteri-meta::before, .musteri-meta::after {
  content: "—";
  margin: 0 0.8rem;
  color: var(--ink-4);
}

@media (max-width: 1100px) {
  .musteri-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 760px) {
  .musteri-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .musteri-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   DEVRE — PCB tarzı dik açılı hatlar
   Bölümler kartlarından Manifest step kutularına trase çizer.
   ============================================================ */
.devre {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
  overflow: visible;
}
.devre-trace {
  fill: none;
  stroke: var(--gold-1);
  stroke-width: 1.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
  opacity: 0;
  transition: opacity 0.5s ease;
  filter: drop-shadow(0 0 3px rgba(0, 112, 176, 0.35));
}
.devre-trace.is-visible {
  opacity: 0.35;
  animation: devreFadeIn 0.6s ease-out forwards;
}
@keyframes devreFadeIn {
  from { opacity: 0; }
  to   { opacity: 0.35; }
}

/* Trase üzerinde akan parıltı (sürekli elektrik akışı) */
.devre-pulse {
  fill: var(--gold-2);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.devre-pulse.is-visible {
  opacity: 1;
  animation: devrePulse 3s linear infinite;
}
@keyframes devrePulse {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; }
}

/* Köşe noktaları (via — PCB'de devrelerin kıvrım noktası) */
.devre-via {
  fill: var(--parchment-0);
  stroke: var(--gold-1);
  stroke-width: 1.4;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.devre-via.is-visible { opacity: 0.85; }

/* Uç noktaları (kart/kutu çıkış-giriş pinleri) */
.devre-pin {
  fill: var(--gold-1);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.devre-pin.is-visible {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(0, 112, 176, 0.7));
}

/* Etiket — küçük majüskül, krem arka plan */
.devre-label-bg {
  fill: var(--parchment-0);
  stroke: var(--gold-1);
  stroke-width: 0.8;
  opacity: 0;
  transition: opacity 0.5s ease;
  rx: 2;
}
.devre-label-bg.is-visible { opacity: 0.95; }
.devre-label {
  font-family: var(--ff-smallcaps);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  fill: var(--gold-1);
  opacity: 0;
  transition: opacity 0.5s ease;
  text-anchor: middle;
}
.devre-label.is-visible { opacity: 1; }

@media (max-width: 880px) {
  /* Masaüstünde kurulan 6 kart hattı mobilde gizli; yalnızca mobil İK
     hattı (codex.js'in eklediği .devre-ik-mobil öğeleri) görünür.
     (Masaüstüden daraltılan pencerede kalıntı trase görünmesin.) */
  .devre > *:not(.devre-ik-mobil) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .devre-trace.is-visible {
    animation: none !important;
    opacity: 0.35 !important;
  }
  .devre-pulse { display: none !important; }
}
}

/* ============================================================
   Tek Bir Gün — Beş rolün günü (stacked, slider yok)
   ============================================================ */
.gunler-section {
  max-width: 880px;
  margin: 0 auto;
}
.gunler-baslik {
  font-family: var(--ff-display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(34px, 3.4vw + 10px, 56px);
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--ink-1);
  margin: 0 0 clamp(48px, 6vw, 96px);
  text-align: center;
}
.gunler-baslik em {
  color: var(--gold-1);
  font-style: italic;
}
.gunler-liste {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 96px);
  text-align: left;
}
.gun-blok {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(20px, 2vw, 32px);
}
.gun-rol {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(28px, 2vw + 14px, 42px);
  line-height: 1.1;
  letter-spacing: -0.3px;
  color: var(--ink-1);
  margin: 0;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--hairline);
}
.gun-rol em {
  color: var(--gold-1);
  font-style: italic;
}
.gun-zaman {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(16px, 1.5vw, 24px);
}
.gun-zaman li {
  display: grid;
  grid-template-columns: clamp(70px, 8vw, 96px) 1fr;
  column-gap: clamp(20px, 2.5vw, 40px);
  align-items: baseline;
}
.gun-saat {
  font-family: var(--ff-mono, ui-monospace, Menlo, monospace);
  font-size: clamp(14px, 0.6vw + 9px, 17px);
  letter-spacing: 0.16em;
  color: var(--gold-1);
}
.gun-olay {
  font-family: var(--ff-display);
  font-size: clamp(18px, 1vw + 10px, 22px);
  line-height: 1.45;
  color: var(--ink-1);
}
.gun-olay em {
  display: block;
  font-style: italic;
  font-family: var(--ff-body);
  font-size: 0.72em;
  color: var(--ink-3);
  line-height: 1.5;
  margin-top: 0.35rem;
}

@media (max-width: 720px) {
  .gun-zaman li { grid-template-columns: 70px 1fr; column-gap: 16px; }
  .gun-olay { font-size: 17px; }
  .gun-saat { font-size: 13px; }
}

/* ============================================================
   Footer
   ============================================================ */
.codex-footer {
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 80px) clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--hairline);
  background: var(--parchment-0, #FBFAF7);
}
.footer-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: clamp(16px, 2vw, 32px);
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--ff-smallcaps);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.footer-meta {
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .footer-row { flex-direction: column; text-align: center; gap: 12px; }
}

/* ============================================================
   İLETİŞİM SAYFASI — sade düzen
   ============================================================ */
.ilt-hero { padding-bottom: clamp(12px, 1.5vw, 24px); }

/* Bölümler arası dar boşluklar */
.ilt-folio .section {
  padding-top: clamp(36px, 4.5vw, 72px);
  padding-bottom: clamp(36px, 4.5vw, 72px);
}
.ilt-folio .guv-sep { margin: clamp(16px, 2.5vw, 32px) auto; }
.ilt-folio .section-intro { margin-bottom: clamp(32px, 4.5vw, 64px); align-items: start; }
.ilt-folio .section-intro h2 {
  font-size: clamp(26px, 1.8vw + 13px, 40px);
  line-height: 1.12;
}

/* Form girişi: başlıksız, ortalanmış kısa açıklama */
.ilt-form-intro {
  max-width: 62ch;
  margin: 0 auto clamp(28px, 4vw, 52px);
  text-align: center;
}
.ilt-form-intro .blurb {
  font-size: clamp(16px, 0.6vw + 14px, 19px);
  line-height: 1.66;
  color: var(--ink-3);
}

/* Hero: örülü hatlarda iki yönde akan mavi noktalar + nefes alan merkez */
.ilt-cdot {
  fill: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
}
.ilt-core {
  fill: #0070B0;
  filter: drop-shadow(0 0 8px rgba(0, 112, 176, 0.6));
  transform-box: fill-box;
  transform-origin: center;
  animation: iltCore 3.2s ease-in-out infinite;
}
@keyframes iltCore {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50%      { transform: scale(1.5); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .ilt-cdot { display: none; }
  .ilt-core { animation: none; }
}

.ilt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 56px) clamp(40px, 5vw, 96px);
}
.ilt-item {
  border-top: 1px solid var(--hairline);
  padding-top: 1.2rem;
}
.ilt-item h3 {
  margin: 0 0 0.6rem;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(22px, 1.2vw + 14px, 30px);
  line-height: 1.15;
  color: var(--ink-1);
}
.ilt-item p {
  margin: 0 0 0.8rem;
  font-size: clamp(15px, 0.5vw + 12px, 17px);
  line-height: 1.6;
  color: var(--ink-3);
}
.ilt-link {
  font-family: var(--ff-mono, ui-monospace, monospace);
  font-size: 14.5px;
  color: var(--rubric);
  text-decoration: none;
  border-bottom: 1px dotted var(--rubric);
}
a.ilt-link:hover { border-bottom-style: solid; }

.ilt-form {
  padding: clamp(28px, 3vw, 48px);
  background: var(--parchment-0);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-book);
}

@media (max-width: 720px) {
  .ilt-grid { grid-template-columns: 1fr; }
}

/* ----- Çalışan Yaşamı: bölüm geçişi — akan mavi noktalı ince hat ----- */
.flow-rule {
  position: relative;
  height: 2px;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(90deg, rgba(0, 112, 176, 0.05), rgba(0, 112, 176, 0.45), rgba(0, 112, 176, 0.05));
}
.flow-rule .fr-dot {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
  opacity: 0;
}
.flow-rule.in .fr-dot { animation: kbFlow 4.5s linear infinite; }
.flow-rule.in .fr-dot.f2 { animation-delay: 2.25s; }
@media (prefers-reduced-motion: reduce) {
  .flow-rule .fr-dot { display: none; }
}

/* ============================================================
   GÜVENLİK SAYFASI — hero canlandırma, RBAC tablosu,
   Verinin Yolculuğu diyagramı (mavi nokta akışı)
   ============================================================ */

/* --- Hero: yaşayan nokta matrisi — nabız dalgası + tehdit söndürme --- */
.guv-grid-dot {
  fill: #0070B0;
  opacity: 0.3;
  transform-box: fill-box;
  transform-origin: center;
  transition: fill 0.35s ease;
}
.guv-matrix.in .guv-grid-dot { animation: guvGridPulse 4.8s ease-in-out infinite; }
@keyframes guvGridPulse {
  0%, 100% { opacity: 0.22; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.8); }
}
.guv-grid-dot.guv-threat { fill: #9A3B2A; }

/* --- Bölüm separatörü: ince mavi hat + akan noktalar --- */
.guv-sep { margin: clamp(48px, 6vw, 88px) auto; }

/* --- Kutu etiketlerinde yıldız yerine mavi nokta (sayfaya özel) --- */
.guv-folio .chapter .meta span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0070B0;
  flex-shrink: 0;
  font-size: 0;
}

/* --- Bölüm başlıkları: daha ufak, yandaki içerikle aynı hizadan başlar --- */
.guv-folio .section-intro { align-items: start; }
.guv-folio .section-intro h2 {
  font-size: clamp(26px, 1.8vw + 13px, 40px);
  line-height: 1.12;
}

/* --- RBAC erişim matrisi --- */
.rbac-wrap {
  overflow-x: auto;
  border: 1px solid var(--hairline-strong);
  background: var(--parchment-0);
  box-shadow: var(--shadow-book);
}
.rbac-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 16px;
}
.rbac-table thead tr {
  border-bottom: 1px solid var(--hairline-strong);
  background: var(--parchment-1);
}
.rbac-table th {
  padding: 16px 10px;
  font-family: var(--ff-smallcaps);
  font-weight: 500;
  letter-spacing: 0.3em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--ink-4);
  text-align: center;
}
.rbac-table th:first-child { text-align: left; padding-left: 20px; }
.rbac-table tbody {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 16.5px;
}
.rbac-table tbody tr {
  border-bottom: 1px dotted var(--hairline);
  transition: background 0.25s ease;
}
.rbac-table tbody tr:last-child { border-bottom: none; }
.rbac-table tbody tr:hover { background: var(--parchment-1); }
.rbac-table td { padding: 14px 10px; text-align: center; }
.rbac-table td:first-child { text-align: left; padding-left: 20px; }
.rbac-table td.ok, .rbac-table td.part { color: var(--rubric); }
.rbac-table td.no { color: var(--ink-5); }

/* Satırlar görünüme girince sırayla belirir */
.rbac-table tbody tr {
  opacity: 0;
  transform: translateX(-12px);
}
.rbac-wrap.in tbody tr {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.55s ease, transform 0.55s ease, background 0.25s ease;
}
.rbac-wrap.in tbody tr:nth-child(1) { transition-delay: 0.05s; }
.rbac-wrap.in tbody tr:nth-child(2) { transition-delay: 0.15s; }
.rbac-wrap.in tbody tr:nth-child(3) { transition-delay: 0.25s; }
.rbac-wrap.in tbody tr:nth-child(4) { transition-delay: 0.35s; }
.rbac-wrap.in tbody tr:nth-child(5) { transition-delay: 0.45s; }
.rbac-wrap.in tbody tr:nth-child(6) { transition-delay: 0.55s; }
.rbac-wrap.in tbody tr:nth-child(7) { transition-delay: 0.65s; }

/* Erişim işaretleri: satır geldikten sonra "damga" gibi oturur */
.rbac-table td.ok, .rbac-table td.part { opacity: 0; }
.rbac-wrap.in td.ok, .rbac-wrap.in td.part {
  animation: rbacPop 0.45s cubic-bezier(0.2, 1.5, 0.4, 1) both;
}
.rbac-wrap.in tbody tr:nth-child(1) td { animation-delay: 0.40s; }
.rbac-wrap.in tbody tr:nth-child(2) td { animation-delay: 0.50s; }
.rbac-wrap.in tbody tr:nth-child(3) td { animation-delay: 0.60s; }
.rbac-wrap.in tbody tr:nth-child(4) td { animation-delay: 0.70s; }
.rbac-wrap.in tbody tr:nth-child(5) td { animation-delay: 0.80s; }
.rbac-wrap.in tbody tr:nth-child(6) td { animation-delay: 0.90s; }
.rbac-wrap.in tbody tr:nth-child(7) td { animation-delay: 1.00s; }
@keyframes rbacPop {
  0%   { opacity: 0; transform: scale(0.3); }
  100% { opacity: 1; transform: scale(1); }
}

/* Rol taraması: sütunlar sırayla değerlendiriliyormuş gibi parlar (sürekli döngü) */
.rbac-wrap.in col.rc1 { animation: rbacColScan 10s ease-in-out infinite; animation-delay: 1.2s; }
.rbac-wrap.in col.rc2 { animation: rbacColScan 10s ease-in-out infinite; animation-delay: 3.2s; }
.rbac-wrap.in col.rc3 { animation: rbacColScan 10s ease-in-out infinite; animation-delay: 5.2s; }
.rbac-wrap.in col.rc4 { animation: rbacColScan 10s ease-in-out infinite; animation-delay: 7.2s; }
.rbac-wrap.in col.rc5 { animation: rbacColScan 10s ease-in-out infinite; animation-delay: 9.2s; }
@keyframes rbacColScan {
  0%, 100% { background-color: transparent; }
  4%       { background-color: rgba(0, 112, 176, 0.08); }
  16%      { background-color: rgba(0, 112, 176, 0.08); }
  22%      { background-color: transparent; }
}

/* --- Verinin Yolculuğu — sayfa içi sabit diyagram (rotator'dan bağımsız) --- */
.diag.guv-diag {
  position: relative;
  inset: auto;
  opacity: 1;
  visibility: visible;
  animation: none;
  margin: 0;
  padding: clamp(16px, 2vw, 32px);
  background: var(--parchment-0);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  box-shadow: 0 24px 60px -40px rgba(15, 26, 36, 0.25);
}

/* Kutular: görünüme girince sırayla belirir */
.guv-diag .fg-node {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.guv-diag.in .fg-node { opacity: 1; transform: translateY(0); }
.guv-diag.in .fg-node.n1 { transition-delay: 0.10s; }
.guv-diag.in .fg-node.n2 { transition-delay: 0.30s; }
.guv-diag.in .fg-node.n3 { transition-delay: 0.50s; }
.guv-diag.in .fg-node.n4 { transition-delay: 0.70s; }
.guv-diag.in .fg-node.n5 { transition-delay: 0.90s; }
.guv-diag.in .fg-node.n6 { transition-delay: 1.10s; }
.guv-diag.in .fg-node.n7 { transition-delay: 1.10s; }

/* Hatlar: kutulardan sonra çizilir */
.diag.guv-diag .fg-conn {
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  opacity: 0;
  animation: none;
}
.diag.guv-diag.in .fg-conn { animation: guvConnDraw 0.9s ease forwards; }
.diag.guv-diag.in .fg-conn.gc1 { animation-delay: 0.5s; }
.diag.guv-diag.in .fg-conn.gc2 { animation-delay: 0.8s; }
.diag.guv-diag.in .fg-conn.gc3 { animation-delay: 1.1s; }
.diag.guv-diag.in .fg-conn.gc4 { animation-delay: 1.4s; }
.diag.guv-diag.in .fg-conn.gc5 { animation-delay: 1.7s; }
.diag.guv-diag.in .fg-conn.gc6 { animation-delay: 1.7s; }
@keyframes guvConnDraw {
  0%   { stroke-dashoffset: 520; opacity: 0; }
  30%  { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

/* Mavi akış noktaları: hatlar çizildikten sonra görünür, sürekli akar */
.diag.guv-diag .fg-flow-dot {
  fill: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
  opacity: 0;
  animation: none;
}
.diag.guv-diag.in .fg-flow-dot { animation: guvDotIn 0.8s ease forwards 2s; }
@keyframes guvDotIn { to { opacity: 1; } }

/* --- Giriş akışı: yetkili kullanıcı geçer, şüpheli deneme MFA'da durur --- */
.guv-auth {
  margin: 0;
  padding: clamp(16px, 2vw, 32px);
  background: var(--parchment-0);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  box-shadow: 0 24px 60px -40px rgba(15, 26, 36, 0.25);
}
.guv-auth svg { width: 100%; height: auto; display: block; overflow: visible; }

/* Nokta */
.guv-adot { opacity: 0; }
.guv-adot.a1 {
  fill: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
}
.guv-auth.in .guv-adot.a1 { animation: guvAuthA1 10s linear infinite; }
@keyframes guvAuthA1 {
  0%   { transform: translateX(0); opacity: 0; }
  4%   { opacity: 1; }
  20%  { transform: translateX(205px); }
  24%  { transform: translateX(205px); }
  35%  { transform: translateX(385px); }
  39%  { transform: translateX(385px); }
  50%  { transform: translateX(565px); }
  54%  { transform: translateX(565px); }
  64%  { transform: translateX(645px); opacity: 1; }
  68%  { transform: translateX(645px); opacity: 0; }
  100% { transform: translateX(645px); opacity: 0; }
}
/* Onay işaretleri */
.guv-chk path {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.3);
  transform-box: fill-box;
  transform-origin: center;
  stroke: #0070B0;
}
.guv-auth.in .c1 path { animation: guvChk1 10s cubic-bezier(0.2, 1.5, 0.4, 1) infinite; }
.guv-auth.in .c2 path { animation: guvChk2 10s cubic-bezier(0.2, 1.5, 0.4, 1) infinite; }
.guv-auth.in .c3 path { animation: guvChk3 10s cubic-bezier(0.2, 1.5, 0.4, 1) infinite; }
@keyframes guvChk1 {
  0%, 21%   { opacity: 0; transform: scale(0.3); }
  24%       { opacity: 1; transform: scale(1); }
  90%       { opacity: 1; }
  96%, 100% { opacity: 0; }
}
@keyframes guvChk2 {
  0%, 36%   { opacity: 0; transform: scale(0.3); }
  39%       { opacity: 1; transform: scale(1); }
  90%       { opacity: 1; }
  96%, 100% { opacity: 0; }
}
@keyframes guvChk3 {
  0%, 51%   { opacity: 0; transform: scale(0.3); }
  54%       { opacity: 1; transform: scale(1); }
  90%       { opacity: 1; }
  96%, 100% { opacity: 0; }
}
/* Oturum parlaması */
.guv-sess { opacity: 0; }
.guv-auth.in .guv-sess { animation: guvSessIn 10s ease infinite; }
@keyframes guvSessIn {
  0%, 63%   { opacity: 0; }
  66%       { opacity: 1; }
  90%       { opacity: 1; }
  96%, 100% { opacity: 0; }
}

/* --- Veri Koruma: kasa, izolasyon, denetim defteri sahneleri --- */
.guv-veri {
  margin: 0 0 clamp(40px, 5vw, 72px);
  padding: clamp(16px, 2vw, 32px);
  background: var(--parchment-0);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  box-shadow: 0 24px 60px -40px rgba(15, 26, 36, 0.25);
}
.guv-veri svg { width: 100%; height: auto; display: block; overflow: visible; }

/* Tek hikâye, 12 sn döngü:
   açık veri → AES kapısı (şifrelenir) → kasa
   Şirket B duvara çarpar · her olay deftere anında işlenir */

/* Açık veri noktası (kontur): VERİ'den AES kapısına */
.guv-d1a { opacity: 0; }
.guv-veri.in .guv-d1a { animation: guvD1a 12s linear infinite; }
@keyframes guvD1a {
  0%        { transform: translateX(0); opacity: 0; }
  6%        { opacity: 1; }
  30%       { transform: translateX(170px); opacity: 1; }
  36%       { transform: translateX(170px); opacity: 1; }
  38%       { transform: translateX(170px); opacity: 0; }
  100%      { transform: translateX(170px); opacity: 0; }
}

/* Şifreli veri noktası (dolu + parlama): kapıdan kasaya */
.guv-d1b {
  fill: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
  opacity: 0;
}
.guv-veri.in .guv-d1b { animation: guvD1b 12s linear infinite; }
@keyframes guvD1b {
  0%, 38%   { transform: translateX(0); opacity: 0; }
  40%       { opacity: 1; }
  55%       { transform: translateX(175px); opacity: 1; }
  58%       { transform: translateX(175px); opacity: 0; }
  100%      { transform: translateX(175px); opacity: 0; }
}

/* AES kapısı ve kasa: olay anında parlar */
.guv-gateglow { opacity: 0; }
.guv-veri.in .guv-gateglow { animation: guvGateGlow 12s ease infinite; }
@keyframes guvGateGlow {
  0%, 30%   { opacity: 0; }
  34%       { opacity: 1; }
  42%, 100% { opacity: 0; }
}
.guv-kasaglow { opacity: 0; }
.guv-veri.in .guv-kasaglow { animation: guvKasaGlow 12s ease infinite; }
@keyframes guvKasaGlow {
  0%, 54%   { opacity: 0; }
  58%       { opacity: 1; }
  72%       { opacity: 1; }
  82%, 100% { opacity: 0; }
}

/* Şirket B: duvara yaklaşır, çarpar, geri döner */
.guv-bdot { opacity: 0.9; }
.guv-veri.in .guv-bdot { animation: guvBdot 12s ease-in-out infinite; }
@keyframes guvBdot {
  0%, 56%   { transform: translateY(0); }
  66%       { transform: translateY(-42px); }
  69%       { transform: translateY(-36px); }
  78%       { transform: translateY(0); }
  100%      { transform: translateY(0); }
}
.guv-bx path {
  fill: none;
  stroke: #9A3B2A;
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0;
  transform: scale(0.3);
  transform-box: fill-box;
  transform-origin: center;
}
.guv-veri.in .guv-bx path { animation: guvBx 12s cubic-bezier(0.2, 1.5, 0.4, 1) infinite; }
@keyframes guvBx {
  0%, 65%   { opacity: 0; transform: scale(0.3); }
  68%       { opacity: 1; transform: scale(1); }
  90%       { opacity: 1; }
  96%, 100% { opacity: 0; }
}

/* Denetim defteri girişleri: olay anında belirir */
.guv-le { opacity: 0; transform: translateY(6px); }
.guv-veri.in .guv-le.le1 { animation: guvLe1 12s ease infinite; }
.guv-veri.in .guv-le.le2 { animation: guvLe2 12s ease infinite; }
.guv-veri.in .guv-le.le3 { animation: guvLe3 12s ease infinite; }
.guv-veri.in .guv-le.le4 { animation: guvLe4 12s ease infinite; }
@keyframes guvLe1 {
  0%, 8%    { opacity: 0; transform: translateY(6px); }
  12%       { opacity: 1; transform: translateY(0); }
  92%       { opacity: 1; }
  97%, 100% { opacity: 0; }
}
@keyframes guvLe2 {
  0%, 36%   { opacity: 0; transform: translateY(6px); }
  40%       { opacity: 1; transform: translateY(0); }
  92%       { opacity: 1; }
  97%, 100% { opacity: 0; }
}
@keyframes guvLe3 {
  0%, 56%   { opacity: 0; transform: translateY(6px); }
  60%       { opacity: 1; transform: translateY(0); }
  92%       { opacity: 1; }
  97%, 100% { opacity: 0; }
}
@keyframes guvLe4 {
  0%, 68%   { opacity: 0; transform: translateY(6px); }
  72%       { opacity: 1; transform: translateY(0); }
  92%       { opacity: 1; }
  97%, 100% { opacity: 0; }
}

/* Kutusuz metin düzeni */
.guv-plain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 56px) clamp(40px, 5vw, 96px);
}
.guv-plain {
  border-top: 1px solid var(--hairline);
  padding-top: 1.2rem;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}
.gp-ico svg { width: 56px; height: 56px; display: block; overflow: visible; }

/* Şifreleme ikonu: nokta kapıdan geçer */
.gp-dot1 {
  fill: #0070B0;
  filter: drop-shadow(0 0 3px rgba(0, 112, 176, 0.55));
  opacity: 0;
}
.guv-plain.in .gp-dot1 { animation: gpDot1 3s linear infinite; }
@keyframes gpDot1 {
  0%   { transform: translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateX(44px); opacity: 0; }
}

/* İzolasyon ikonu: iki nokta duvara yaklaşır, geçemez */
.gp-dot2 {
  fill: #0070B0;
  filter: drop-shadow(0 0 3px rgba(0, 112, 176, 0.55));
}
.guv-plain.in .gp-dot2 { animation: gpDot2 4s ease-in-out infinite; }
.guv-plain.in .gp-dot2.m { animation-name: gpDot2m; }
@keyframes gpDot2 {
  0%, 100% { transform: translateX(0); }
  45%      { transform: translateX(10px); }
  55%      { transform: translateX(8px); }
}
@keyframes gpDot2m {
  0%, 100% { transform: translateX(0); }
  45%      { transform: translateX(-10px); }
  55%      { transform: translateX(-8px); }
}

/* Tokenizasyon ikonu: token yol alır, süresi dolunca kaybolur */
.gp-tok { opacity: 0; }
.guv-plain.in .gp-tok { animation: gpTok 3.5s ease-in-out infinite; }
@keyframes gpTok {
  0%   { transform: translateX(0); opacity: 0; }
  12%  { opacity: 1; }
  60%  { transform: translateX(28px); opacity: 1; }
  85%  { transform: translateX(36px); opacity: 0; }
  100% { transform: translateX(36px); opacity: 0; }
}

/* KVKK ikonları */
/* Rıza: onay kutusu işaretlenir, geri çekilir, tekrar işaretlenir */
.gp-riza path, .gp-okudum path {
  fill: none;
  stroke: #0070B0;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.3);
  transform-box: fill-box;
  transform-origin: center;
}
.guv-plain.in .gp-riza path { animation: gpRiza 4s cubic-bezier(0.2, 1.5, 0.4, 1) infinite; }
@keyframes gpRiza {
  0%, 10%   { opacity: 0; transform: scale(0.3); }
  18%       { opacity: 1; transform: scale(1); }
  70%       { opacity: 1; transform: scale(1); }
  80%, 100% { opacity: 0; transform: scale(0.3); }
}

/* Aydınlatma: metin satırları yazılır, "okudum" onayı düşer */
.gp-ayd { stroke-dasharray: 22; stroke-dashoffset: 22; }
.guv-plain.in .gp-ayd.a1 { animation: gpAyd1 5s linear infinite; }
.guv-plain.in .gp-ayd.a2 { animation: gpAyd2 5s linear infinite; }
.guv-plain.in .gp-ayd.a3 { animation: gpAyd3 5s linear infinite; }
@keyframes gpAyd1 {
  0%, 4%    { stroke-dashoffset: 22; }
  16%       { stroke-dashoffset: 0; }
  88%       { stroke-dashoffset: 0; opacity: 1; }
  94%, 100% { stroke-dashoffset: 22; opacity: 0; }
}
@keyframes gpAyd2 {
  0%, 20%   { stroke-dashoffset: 22; }
  32%       { stroke-dashoffset: 0; }
  88%       { stroke-dashoffset: 0; opacity: 1; }
  94%, 100% { stroke-dashoffset: 22; opacity: 0; }
}
@keyframes gpAyd3 {
  0%, 36%   { stroke-dashoffset: 22; }
  48%       { stroke-dashoffset: 0; }
  88%       { stroke-dashoffset: 0; opacity: 1; }
  94%, 100% { stroke-dashoffset: 22; opacity: 0; }
}
.guv-plain.in .gp-okudum path { animation: gpOkudum 5s cubic-bezier(0.2, 1.5, 0.4, 1) infinite; }
@keyframes gpOkudum {
  0%, 56%   { opacity: 0; transform: scale(0.3); }
  64%       { opacity: 1; transform: scale(1); }
  88%       { opacity: 1; }
  94%, 100% { opacity: 0; }
}

/* Envanter: hücreler sırayla maviye döner */
.guv-plain.in .gp-env.e1 { animation: gpEnv 6s ease infinite; animation-delay: 0s; }
.guv-plain.in .gp-env.e2 { animation: gpEnv 6s ease infinite; animation-delay: 1.5s; }
.guv-plain.in .gp-env.e3 { animation: gpEnv 6s ease infinite; animation-delay: 3s; }
.guv-plain.in .gp-env.e4 { animation: gpEnv 6s ease infinite; animation-delay: 4.5s; }
@keyframes gpEnv {
  0%, 100% { stroke: #3D4858; fill: transparent; }
  8%       { stroke: #0070B0; fill: rgba(0, 112, 176, 0.12); }
  20%      { stroke: #0070B0; fill: rgba(0, 112, 176, 0.12); }
  30%      { stroke: #3D4858; fill: transparent; }
}

/* Silme: çizgi soldan silinir, sonra yeniden belirir */
.gp-sil { stroke-dasharray: 36; stroke-dashoffset: 0; }
.guv-plain.in .gp-sil { animation: gpSil 4.5s ease-in-out infinite; }
@keyframes gpSil {
  0%, 20%   { stroke-dashoffset: 0; opacity: 1; }
  55%       { stroke-dashoffset: -36; opacity: 1; }
  56%, 70%  { opacity: 0; }
  71%       { stroke-dashoffset: 36; opacity: 0; }
  78%       { opacity: 1; }
  100%      { stroke-dashoffset: 0; opacity: 1; }
}

/* Denetim izi ikonu: satırlar sırayla yazılır */
.gp-log { stroke-dasharray: 28; stroke-dashoffset: 28; }
.guv-plain.in .gp-log.g1 { animation: gpLog1 6s linear infinite; }
.guv-plain.in .gp-log.g2 { animation: gpLog2 6s linear infinite; }
.guv-plain.in .gp-log.g3 { animation: gpLog3 6s linear infinite; }
@keyframes gpLog1 {
  0%, 5%    { stroke-dashoffset: 28; }
  20%       { stroke-dashoffset: 0; }
  88%       { stroke-dashoffset: 0; opacity: 1; }
  94%, 100% { stroke-dashoffset: 28; opacity: 0; }
}
@keyframes gpLog2 {
  0%, 30%   { stroke-dashoffset: 28; }
  45%       { stroke-dashoffset: 0; }
  88%       { stroke-dashoffset: 0; opacity: 1; }
  94%, 100% { stroke-dashoffset: 28; opacity: 0; }
}
@keyframes gpLog3 {
  0%, 55%   { stroke-dashoffset: 28; }
  70%       { stroke-dashoffset: 0; }
  88%       { stroke-dashoffset: 0; opacity: 1; }
  94%, 100% { stroke-dashoffset: 28; opacity: 0; }
}
.guv-plain h3 {
  margin: 0 0 0.6rem;
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: clamp(22px, 1.2vw + 14px, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink-1);
}
.guv-plain h3 em { font-style: italic; color: var(--rubric); }
.guv-plain p {
  margin: 0;
  font-size: clamp(16px, 0.5vw + 13px, 18px);
  line-height: 1.66;
  color: var(--ink-3);
}
@media (max-width: 780px) {
  .guv-plain-grid { grid-template-columns: 1fr; }
  .guv-plain { grid-template-columns: 52px 1fr; gap: 14px; }
  .gp-ico svg { width: 46px; height: 46px; }
}

/* --- Hero ↔ ilk bölüm arası daha sıkı --- */
.guv-folio .chapter-open { padding-bottom: clamp(16px, 2vw, 32px); }
.guv-sep--tight { margin: clamp(12px, 2vw, 24px) auto; }
.guv-folio .guv-section-tight { padding-top: clamp(32px, 5vw, 72px); }

/* --- Bölümler arası boşluklar genel olarak daha dar --- */
.guv-folio .section {
  padding-top: clamp(40px, 5vw, 84px);
  padding-bottom: clamp(40px, 5vw, 84px);
}
.guv-folio .guv-sep { margin: clamp(20px, 3vw, 40px) auto; }
.guv-folio .guv-sep.guv-sep--tight { margin: clamp(12px, 2vw, 24px) auto; }
.guv-folio .section-intro { margin-bottom: clamp(36px, 5vw, 72px); }

@media (prefers-reduced-motion: reduce) {
  .diag.guv-diag .fg-flow-dot { display: none !important; }
  .rbac-table tbody tr { opacity: 1 !important; transform: none !important; transition: none !important; }
  .rbac-table td.ok, .rbac-table td.part { opacity: 1 !important; animation: none !important; }
  .rbac-table col { animation: none !important; }
  .guv-adot, .guv-d1a, .guv-d1b, .guv-bdot, .gp-dot1, .gp-dot2, .gp-tok { display: none !important; }
  .guv-grid-dot { animation: none !important; opacity: 0.5 !important; }
  .gp-log, .gp-ayd, .gp-sil { stroke-dashoffset: 0 !important; animation: none !important; opacity: 1 !important; }
  .gp-riza path, .gp-okudum path { opacity: 1 !important; transform: none !important; animation: none !important; }
  .gp-env { animation: none !important; }
  .guv-chk path, .guv-sess, .guv-le, .guv-bx path { opacity: 1 !important; transform: none !important; animation: none !important; }
  .guv-gateglow, .guv-kasaglow { animation: none !important; opacity: 0 !important; }
  .guv-diag .fg-node {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .diag.guv-diag .fg-conn {
    animation: none !important;
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
  }
}

/* ============================================================
   YAPAY ZEKÂ SAYFASI — mavi nokta akışları
   ============================================================ */

/* ----- CV Önce→Sonra: kutular arası akış kanalı ----- */
.cv-flowgrid {
  display: grid;
  grid-template-columns: 1fr clamp(52px, 7vw, 96px) 1fr;
  gap: 0;
  align-items: stretch;
}
.cv-duct {
  position: relative;
  align-self: center;
  height: 160px;
}
.cv-duct::before {
  content: "";
  position: absolute;
  top: 50%; left: -6px; right: -6px;
  height: 2px;
  margin-top: -1px;
  background: linear-gradient(90deg, rgba(0, 112, 176, 0.1), rgba(0, 112, 176, 0.55), rgba(0, 112, 176, 0.1));
}
.cv-duct-label {
  position: absolute;
  left: 50%;
  top: calc(50% - 34px);
  transform: translateX(-50%);
  font-family: var(--ff-smallcaps);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--rubric);
  white-space: nowrap;
}
.cv-duct .cv-dot {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 8px; height: 8px;
  margin-top: -4px;
  border-radius: 50%;
  background: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
  opacity: 0;
}
.cv-flowgrid.in .cv-dot { animation: cvFlow 2.7s linear infinite; }
.cv-flowgrid.in .cv-dot.c2 { animation-delay: 0.9s; }
.cv-flowgrid.in .cv-dot.c3 { animation-delay: 1.8s; }
@keyframes cvFlow {
  0%   { left: -6px; opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 1; }
  100% { left: calc(100% - 2px); opacity: 0; }
}
@keyframes cvFlowV {
  0%   { top: 0; opacity: 0; }
  8%   { opacity: 1; }
  88%  { opacity: 1; }
  100% { top: calc(100% - 8px); opacity: 0; }
}
@media (max-width: 880px) {
  .cv-flowgrid { grid-template-columns: 1fr; }
  .cv-duct { height: clamp(48px, 9vw, 72px); align-self: auto; width: 100%; }
  .cv-duct::before {
    left: 50%; right: auto; top: 4px; bottom: 4px;
    width: 2px; height: auto;
    margin: 0 0 0 -1px;
    background: linear-gradient(180deg, rgba(0, 112, 176, 0.1), rgba(0, 112, 176, 0.55), rgba(0, 112, 176, 0.1));
  }
  .cv-duct-label { top: 50%; left: calc(50% + 16px); transform: translateY(-50%); }
  .cv-duct .cv-dot { left: 50%; top: 0; margin: 0 0 0 -4px; }
  .cv-flowgrid.in .cv-dot { animation-name: cvFlowV; }
}
@media (prefers-reduced-motion: reduce) {
  .cv-duct .cv-dot { display: none; }
}

/* ----- Görev→Motor yönlendirme şeması ----- */
.ai-route { margin-top: clamp(28px, 4vw, 48px); }
.ai-route svg { width: 100%; height: auto; display: block; overflow: visible; }
.ai-route .ar-line { fill: none; stroke: rgba(0, 112, 176, 0.32); stroke-width: 1; }
.ai-route .ar-node { fill: #0070B0; }
.ai-route .ar-motor { fill: var(--parchment-0, #F6F5F0); stroke: #0070B0; stroke-width: 1.2; }
.ai-route .ar-pulse { fill: #0070B0; filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55)); }
.ai-route .ar-hub { fill: #0070B0; }
.ai-route .ar-hub-glow {
  fill: none;
  stroke: #0070B0;
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: arHubGlow 3s ease-in-out infinite;
}
@keyframes arHubGlow {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50%      { transform: scale(1.8); opacity: 0; }
}
.ai-route figcaption {
  margin-top: 1rem;
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .ai-route .ar-pulse { display: none; }
  .ai-route .ar-hub-glow { animation: none; opacity: 0.3; }
}

/* ----- Karar Anı: dört adımlı akış hattı ----- */
.karar-flow {
  position: relative;
  height: 2px;
  margin: clamp(8px, 1.5vw, 20px) 0 clamp(32px, 4vw, 52px);
  background: linear-gradient(90deg, rgba(0, 112, 176, 0.05), rgba(0, 112, 176, 0.45), rgba(0, 112, 176, 0.05));
}
.karar-flow .kf-station {
  position: absolute;
  top: -5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--parchment-0, #F6F5F0);
  border: 1.5px solid #0070B0;
}
.karar-flow .kf-dot {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #0070B0;
  filter: drop-shadow(0 0 4px rgba(0, 112, 176, 0.55));
  opacity: 0;
}
.karar-flow.in .kf-dot { animation: kbFlow 6s linear infinite; }
.karar-flow.in .kf-dot.k2 { animation-delay: 2s; }
.karar-flow.in .kf-dot.k3 { animation-delay: 4s; }
@media (prefers-reduced-motion: reduce) {
  .karar-flow .kf-dot { display: none; }
}

/* ============================================================
   MOBİL DÜZELTME — Anasayfa hero
   (yalnızca dar ekran media query'leri; masaüstü etkilenmez)
   ============================================================ */
@media (max-width: 1100px) {
  /* Kapalı menü çekmecesi ve logo şeridi yatay kaydırma oluşturmasın.
     STICKY TUZAĞI: global body{overflow-x:hidden} (satır ~83) masaüstünde
     viewport'a propagate olur (html visible iken) ve zararsızdır; ama
     html'e hidden verilince propagation kesilir, hidden BODY'nin kendisine
     uygulanır → body scroll-container olur → sticky header viewport yerine
     body'ye bağlanır (yapışmaz). Çözüm: kırpmayı html yapsın, body'ye
     mobilde visible verip scroll-container olmasını engelle. */
  html { overflow-x: hidden; }
  body { overflow-x: visible; }

  /* Masaüstünde heykel için ayrılan sağ boşluğu mobilde kaldır */
  .opening-folio.has-statue {
    padding-right: 0;
    grid-template-columns: 1fr;
  }
  /* Heykel masaüstündeki gibi yazının ARKASINDA: hero'yu kaplayan
     arka plan katmanı (akış içi banner değil) */
  .opening-folio.has-statue .statue-plate {
    position: absolute;
    inset: 0;
    height: auto;
    margin-top: 0;
  }
  .opening-folio.has-statue .statue-plate img {
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    object-position: 68% 16%;
    /* Chrome ilk boyama hatası nedeniyle nefes animasyonu mobilde kapalı */
    animation: none;
    /* Yazı alanında (üst) soluk, alta doğru belirginleşen dikey geçiş */
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.26) 45%, rgba(0,0,0,0.28) 75%, rgba(0,0,0,0.46) 100%);
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.26) 45%, rgba(0,0,0,0.28) 75%, rgba(0,0,0,0.46) 100%);
  }
  .opening-folio.has-statue .statue-vignette {
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.26) 45%, rgba(0,0,0,0.28) 75%, rgba(0,0,0,0.46) 100%);
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.26) 45%, rgba(0,0,0,0.28) 75%, rgba(0,0,0,0.46) 100%);
  }
  /* Hero yazıları sağ ve sol kenara yapışmasın */
  .opening-folio.has-statue .verso {
    padding-right: clamp(18px, 6vw, 48px);
    padding-left: clamp(14px, 4.5vw, 36px);
    /* Büyük başlık görselin üst kenarından biraz aşağıda başlasın */
    padding-top: clamp(28px, 8vw, 64px);
  }
  /* Lede içindeki "tek satır kal" inline ayarı mobilde sığmıyor;
     metin normal akışında sarsın */
  .opening-folio.has-statue .verso .lede span {
    white-space: normal !important;
  }
  /* Lede (küçük tanıtım yazısı) görsel üzerinde net okunsun:
     koyu mürekkep + parşömen tonunda ışık halkası */
  .opening-folio.has-statue .verso .lede {
    color: var(--ink-1);
    text-shadow:
      0 1px 0 rgba(246, 249, 253, 0.95),
      0 0 6px rgba(246, 249, 253, 0.95),
      0 0 16px rgba(246, 249, 253, 0.85),
      0 0 30px rgba(246, 249, 253, 0.7);
  }
}

@media (max-width: 720px) {
  /* "İK" kutusu sola taşmasın */
  .ik-grup { margin-left: 0; }

  /* Başlık masaüstündeki gibi kelime kelime aşağı insin:
     büyük punto doğal satır kaydırmayla kademeli düşer */
  .opening-folio .verso h1 {
    font-size: clamp(44px, 15vw, 72px);
    line-height: 0.95;
  }

  .opening-folio .verso { max-width: none; }
  .opening-folio .verso .lede { font-size: 17px; }

  /* Motto'nun negatif üst marjı dar ekranda başlığa yapışmasın */
  .hero-motto { margin-top: 0; }
}

/* ============================================================
   MOBİL MENÜ DÜZELTME — hamburger ikon + çekmece katmanları
   (yalnızca ≤980px; masaüstü etkilenmez)
   ============================================================ */
@media (max-width: 980px) {
  /* backdrop-filter, fixed konumlu çekmeceyi header kutusuna
     hapsediyordu (containing block); mobilde kaldırıp düz zemin ver.
     (Header globalde zaten position:sticky; mobilde de yapışık kalır.) */
  .codex-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: #DCE2E6;
    z-index: 50; /* logo + hamburger açık çekmecenin üstünde kalsın */
    /* KATMAN: masaüstünde backdrop-filter header'ı kompozitör katmanına
       alıyordu; mobilde kalkınca sticky konum ana-thread boyamasına kaldı
       → hızlı kaydırmada header görünmez olup duraksayınca geri geliyordu
       (cihaz emülasyonu/DPR3'te bariz). will-change: opacity katmana alır
       ama transform/filter gibi containing block OLUŞTURMAZ — fixed
       çekmece (codex-nav) hapsolmaz. */
    will-change: opacity;
  }
  /* Sayfa kaydırılınca (JS scrollY>16'da is-scrolled verir) hafif şeffaf —
     blur YOK: backdrop-filter çekmece bug'ını geri getirir */
  .codex-header.is-scrolled {
    background: rgba(220, 226, 230, 0.85);
  }

  /* Logo solda, hamburger sağda */
  .codex-header {
    grid-template-columns: 1fr auto;
  }
  .codex-header .seal {
    justify-self: start;
  }
  /* Logo 5px aşağı (transform — header yüksekliği değişmesin);
     hover kuralı transform'u ezmesin diye o da sabitlenir */
  .codex-header .seal-logo,
  .codex-header .seal:hover .seal-logo {
    transform: translateY(5px);
  }

  /* Çekmece: header çubuğunun altından başlayan içerik düzeni */
  .codex-nav {
    justify-content: flex-start;
    padding: 110px 36px 40px;
    gap: 1.5rem;
    overflow-y: auto;
  }
  .codex-nav a {
    font-size: 15px;
    padding: 6px 2px 8px;
  }
  /* Açıkken sol tarafı karart (tıklayınca JS kapatır) */
  .codex-nav.is-open {
    box-shadow: -28px 0 70px rgba(10, 26, 46, 0.22), 0 0 0 100vmax rgba(10, 26, 46, 0.30);
  }

  /* Menü açıkken arka plan kaymasın */
  body.nav-locked { overflow: hidden; }

  /* --- Hamburger ikon --- */
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 42px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--ink-1);
    cursor: pointer;
    z-index: 40;
  }
  .nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink-1);
    transition: transform 0.3s ease, opacity 0.25s ease;
  }
  /* Açıkken X'e dönüş */
  .nav-toggle.is-active .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   MOBİL DÜZELTME — Flagship akış diyagramları (≤720px)
   1000 birimlik SVG dar ekranda okunmuyordu; diyagram büyütülüp
   yatay kaydırılabilir hâle getirildi. Masaüstü etkilenmez.
   ============================================================ */
@media (max-width: 720px) {
  /* Kutu tam ekran genişliğine yayılsın ki diyagram en büyük ölçekte sığsın */
  .flagship-canvas {
    padding: 8px 4px;
    margin-left: calc(var(--gutter) * -1 + 6px);
    margin-right: calc(var(--gutter) * -1 + 6px);
  }
  /* Oran, diyagram adının yüksekliğini de kapsasın; SVG böylece
     genişliğe göre ölçeklenir ve yanlarda boş bant kalmaz */
  .flagship-canvas .diag-rotator {
    aspect-ratio: 1000 / 550;
  }
  /* Kutu adları büyütüldü (SVG birimi; ekrana sığan ölçekte okunur punto) */
  .flagship-canvas .diag svg text {
    font-size: 31px;
    transform: translateY(10px);
  }
  /* Kutular büyütüldü — 31px etiketler kutu İÇİNDE kalsın (en uzunu
     "Video Mülakat" ≈ 165 birim → 140'lık kutu 182'ye çıkarıldı).
     transform-box: fill-box → her kutu kendi merkezinden ölçeklenir;
     bağlantı çizgileri markup'ta kutulardan önce çizildiğinden uzayan
     kenarlar çizgilerin ucunu örter. Masaüstü etkilenmez. */
  .flagship-canvas .diag svg .fg-node rect {
    transform: scale(1.3, 1.15);
    transform-box: fill-box;
    transform-origin: center;
  }
  /* Bitiş kutusu (mavi) sağdaki çerçeve çizgisine dayanmasın diye
     yatayda daha az büyür (120 → 138; "Onaylandı" ≈ 123 birim, sığar) */
  .flagship-canvas .diag svg .fg-node.fg-end rect {
    transform: scale(1.15, 1.15);
  }
  /* İkincil küçük etiketler (FORM, İNTERAKTİF vb.) bu ölçekte okunamaz; gizle */
  .flagship-canvas .diag svg text[font-size="9"] {
    display: none;
  }
}

/* ============================================================
   MOBİL DÜZELTME — İç sayfalar (ana sayfa hariç tüm bölümler)
   İşe Alım, Çalışan Yaşamı, Platform, Yapay Zekâ, Entegrasyonlar,
   Güvenlik, Demo Talep, İletişim.
   (yalnızca ≤720px media query'leri; masaüstü etkilenmez)
   ============================================================ */
@media (max-width: 720px) {

  /* --- 1. Satır içi (inline) çok kolonlu grid'ler tek kolona insin.
         Inline stil CSS'i ezdiği için !important zorunlu.
         Kapsadıkları: İşe Alım tasarımcı paneli (1.3fr 1fr),
         Çalışan Yaşamı ajanda (1fr 1.4fr), Yapay Zekâ karşılaştırma
         blokları (1fr 1fr / 1fr 1.2fr), Entegrasyon hazır bağlayıcı
         listesi (90px 1fr auto), Platform veda listesi (repeat(2,1fr)) --- */
  .section [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* İşe Alım: tasarımcı panelindeki dikey ayraç (border-left + padding-left)
     tek kolonda anlamsız; üst çizgiye dönüşsün */
  .section [style*="border-left"] {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px dotted var(--hairline-strong);
    padding-top: 1.6rem;
    margin-top: 0.4rem;
  }

  /* --- 2. Diyagramlar ve anlatım SVG'leri sayfaya SIĞAR — kaydırma yok.
         Geniş (1000/880 birimlik) sahneler zaten inline width:100% ile
         genişliğe ölçeklenir; ek kural gerekmez. Açılış diyagramında
         figure'ün tarayıcı varsayılanı 40px yan marjı görseli gereksiz
         küçültüyordu; sıfırlandı, diyagram tam kolon genişliğinde. --- */
  .chapter-open .diagram {
    max-width: 100%;
    justify-self: stretch;
    margin-left: 0;
    margin-right: 0;
  }
  .chapter-open .diagram > svg {
    display: block;
    width: 100%;
    height: auto;
  }

  /* --- 4. Küçük dokunuşlar --- */
  /* Kart altı meta rozetleri taşmasın, alt satıra insin */
  .chapter .meta { flex-wrap: wrap; gap: 10px 18px; }
  /* Uzun buton yazıları ("Devam et · Çalışan Yaşamı" vb.) kenara taşmasın */
  .btn-ink, .btn-quill { white-space: normal; text-align: center; }
  /* Kanban tahtası dar ekranda nefes alsın */
  .kb-wrap { padding: 14px; }
  .kb-board { gap: 8px; }

  /* Güvenlik: RBAC erişim matrisi de kaydırmasız sayfaya sığsın.
     Hücreler yalnızca işaret (✓/—/◐); başlıklar küçülüp sarınca
     tablo 6 kolon hâlinde dar ekrana oturur. */
  .rbac-table {
    min-width: 0;
    width: 100%;
    /* kolonlar içerik yerine tanımlı genişliğe uyar; taşma imkânsızlaşır */
    table-layout: fixed;
  }
  .rbac-table col:first-child { width: 31%; }
  .rbac-table th {
    font-size: 9.5px;
    letter-spacing: 0.08em;
    padding: 10px 3px;
    white-space: normal;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .rbac-table td { padding: 10px 3px; }
  .rbac-table th:first-child { padding-left: 8px; }
  .rbac-table td:first-child { padding-left: 8px; font-size: 14px; }
}

/* ============ MOBİL DÜZELTME — İşe Alım kanban: 6 sütun yan yana + otomatik pan ============ */
/* Serhan'ın isteği (Haziran 2026): mobilde sütunlar alt alta sarmasın; masaüstündeki gibi
   Başvuru → İşe Başladı 6 aşama tek şerit hâlinde yan yana dursun. Yatay scroll YOK;
   bunun yerine görünüm yavaşça soldan sağa kayarak tahtanın tamamını gezer, sonra geri döner.
   Masaüstü/tablet (≥721px) kurallarına dokunulmadı. */
@media (max-width: 720px) {
  .kb-wrap { overflow: hidden; }
  .kb-board {
    /* 980px'deki 3'lü ve 560px'deki 2'li sarmayı geri al: 6 sabit sütun, tek şerit */
    grid-template-columns: repeat(6, 168px);
    width: max-content;
    will-change: left, transform;
  }
  /* Kamera turu: kartlar yerleştikten sonra başlar (kart gecikmeleri ~1.55s'e kadar) */
  .kb-wrap.in .kb-board {
    animation: kbPan 16s ease-in-out 1.8s infinite alternate;
  }
  /* Düzen artık masaüstüyle aynı olduğundan sürükleme hayaletleri yeniden çalışır */
  .kb-ghost { display: block; }
}
/* Kamera tekniği (cqw KULLANMA — Chrome keyframe içinde çözmüyor, transform 'none' kalıyor):
   left %100 = pencere (kb-wrap iç) genişliği, translateX %-100 = tahta genişliği;
   ikisi birlikte tahtanın sağ kenarını pencerenin sağ kenarına getirir.
   .kb-board zaten position:relative (hayalet kartlar için) — left bu yüzden çalışır.
   Uçlarda %8'lik bekleme: Başvuru ve İşe Başladı sütunları okunabilsin. */
@keyframes kbPan {
  0%, 8%    { left: 0;    transform: translateX(0); }
  92%, 100% { left: 100%; transform: translateX(-100%); }
}
/* Hareket azaltma tercihi: pan yok; içerik parmakla kaydırılarak erişilebilir kalsın */
@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .kb-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .kb-wrap.in .kb-board { animation: none; }
  .kb-ghost { display: none; }
}

/* ============ MOBİL DÜZELTME — Footer (≤820px) ============
   Serhan'ın isteği (Haziran 2026): mobilde Sayfalar bölümü görünmesin;
   sıralama İletişim üstte, logo + tanıtım yazısı en altta olsun.
   820px, footer'ın tek kolona indiği mevcut eşik — masaüstü (≥821px)
   kurallarına dokunulmadı. */
@media (max-width: 820px) {
  .colophon-nav { display: none; }
  /* Grid'den flex'e: order ile blokları yer değiştir (markup aynı kalır) */
  .colophon-inner { display: flex; flex-direction: column; }
  .colophon-cols { order: 1; grid-template-columns: 1fr; }
  .colophon-mark { order: 2; }
}

/* ============ BAŞA DÖN — sağ altta yüzen yuvarlak buton (tüm site) ============
   codex.js scrollY>600'de .is-visible verir; tıklayınca yumuşak başa dönüş. */
.back-to-top {
  position: fixed;
  right: clamp(14px, 2.2vw, 30px);
  bottom: calc(clamp(14px, 2.2vw, 30px) + 20px + env(safe-area-inset-bottom, 0px));
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  background: var(--parchment-0);
  color: #0070B0;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  z-index: 40; /* header (50) altında, içerik üstünde */
  box-shadow: 0 10px 24px -12px rgba(15, 26, 36, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s,
              background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.back-to-top svg { width: 20px; height: 20px; display: block; }
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #0070B0;
  color: #FBFAF7;
  border-color: #003E63;
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: none; }
}

/* ============ MOBİL DÜZELTME — Geniş anlatım sahneleri (≤720px) ============
   İşe Alım "Mülakatı sistem yürütür" (vm-sahne) ve Çalışan Yaşamı "ilk gün
   senaryosu" dağılım sahnesi (ob-sahne) dar ekranda küçük kalıyordu: kutu
   tam ekran genişliğine yayılır (folio + section = 2 × --gutter padding
   geri alınır), boş kenarları kırpan sıkı viewBox'ı codex.js uygular
   (yalnız ≤720px; masaüstünde orijinal kalır). */
@media (max-width: 720px) {
  .vm-sahne,
  .ob-sahne,
  .op-sahne,
  .org-sahne,
  .fc-sahne,
  .bil-sahne,
  .halka-sahne,
  .cv-sahne,
  figure.plt-flow,
  figure.ai-route,
  figure.guv-auth,
  figure.guv-veri,
  figure.ent-akis,
  figure.ent-mesaj {
    /* inline "margin: 0 auto ..." değerini ezmek için !important */
    margin-left: calc(var(--gutter) * -2 + 6px) !important;
    margin-right: calc(var(--gutter) * -2 + 6px) !important;
  }
  /* Güvenlik: giriş akışı/veri sahnesi svg'lerinde width stili yoktu — tam genişlik ver */
  .guv-auth svg,
  .guv-veri svg { width: 100%; height: auto; display: block; }
  /* Güvenlik: şifreleme/izolasyon/denetim sahnesi yazıları — harf
     aralıkları attribute'larda, yalnız boylar büyür */
  .guv-veri svg text[font-size="11"] { font-size: 14px; }
  .guv-veri svg text[font-size="12"] { font-size: 15px; }
  .guv-veri svg text[font-size="10"] { font-size: 12.5px; }
  .guv-veri svg text[font-size="13"] { font-size: 15px; }
  /* Güvenlik: giriş akışı (guv-auth) yazıları — kapı etiketleri,
     kutu başlıkları ve alt not kademeli büyür */
  .guv-auth svg g[font-size="11"] text { font-size: 14px; letter-spacing: 1.8px; }
  .guv-auth svg text[font-size="12"]   { font-size: 15px; letter-spacing: 1.5px; }
  .guv-auth svg text[font-size="10"]   { font-size: 13px; }
  /* Yapay Zekâ: motor yönlendirme şeması etiketleri. 13→15 + ls 2→1.5;
     uçlar viewBox'a dayalı ("SİZİN LLM'İNİZ" sağda ~1001'e uzanır) —
     codex.js'teki mobil viewBox 1005 genişlikte, taşma/genişleme yok. */
  .ai-route svg g[font-size="13"] text {
    font-size: 15px;
    letter-spacing: 1.5px;
  }
  /* Yapay Zekâ: CV ayrıştırma sahnesi yazıları (alan etiketleri g'de,
     değerler text attr'ında; değerler 240'lık kutulara sıkı — 15'i aşma) */
  .cv-sahne svg g[font-size="8.5"] text { font-size: 11.5px; letter-spacing: 1.1px; }
  .cv-sahne svg text[font-size="13"]    { font-size: 15px; }
  .cv-sahne svg text[font-size="15"]    { font-size: 18px; }
  .cv-sahne svg g[font-size="11"] text  { font-size: 13.5px; }
  /* Platform: form tasarımcısı sahnesi etiketleri (~×1.35; uçlar ölçüldü,
     çip/alan/buton sınırları içinde kalıyor) */
  .fc-sahne svg text[font-size="8"]   { font-size: 11px;   letter-spacing: 1.1px; }
  .fc-sahne svg text[font-size="8.5"] { font-size: 11.5px; letter-spacing: 1.1px; }
  .fc-sahne svg text[font-size="9"]   { font-size: 12px;   letter-spacing: 1.2px; }
  .fc-sahne svg text[font-size="11"]  { font-size: 14px;   letter-spacing: 1.8px; }
  .fc-sahne svg text[font-size="13"]  { font-size: 16px; }
  .fc-sahne svg text[font-size="14"]  { font-size: 17px; }
  .fc-sahne svg text[font-size="16"]  { font-size: 19px; }
  /* Çalışan Yaşamı: özlük figürü masaüstünde iki kolonlu düzen için inline
     sticky (top:40px) — mobilde kolonlar alt alta inince üste yapışıp
     kalıyordu (body overflow/sticky düzeltmesi yapışmayı "canlandırdı").
     Tek kolonda yapışmanın anlamı yok: statik akışta kalsın. */
  .section figure[style*="position: sticky"] {
    position: static !important;
  }
  /* Etiketler (VİDEO MÜLAKAT, TELEFON MÜLAKATI, TRANSKRİPT, SKOR · AI ÖZETİ)
     bu ölçekte okunmuyordu: 11 → 15 birim. Harf aralığı daraltıldı ki
     "SKOR · AI ÖZETİ" (x=800'den başlar) kutunun sağ kenarını (945) aşmasın. */
  .vm-sahne svg text[font-size="11"] {
    font-size: 15px;
    letter-spacing: 1.2px;
  }
  /* Çalışan Yaşamı: günlük işler/intranet sahnesi etiketleri.
     Panel başlıkları ve TEK PLATFORM 14'e; liste kalemleri (İZİN, MASRAF,
     FAZLA MESAİ, VARDİYA) 13'le sınırlı — "FAZLA MESAİ" talep hattının
     başladığı x=150'ye dayanıyor, daha büyüğü hatla çakışır. */
  .op-sahne svg text[font-size="10.5"],
  .op-sahne svg text[font-size="10"] {
    font-size: 14px;
    letter-spacing: 1.5px;
  }
  .op-sahne svg g[font-size="9.5"] text {
    font-size: 13px;
    letter-spacing: 1.4px;
  }
  /* Platform: gösterge paneli rotator'ı tam ekran genişliğinde ve sıkı
     (721-1100 tablet bandı için kırpma kuralı aşağıda ayrı blokta)
     viewBox'la ("74 12 852 316", codex.js — 5 slaytın ortak sayfa çerçevesi
     80..920 × 18..322). DİKKAT: width:100% kuralı sabit kaldığından genişlik
     calc ile açıkça verilir — `width:auto` + aspect-ratio kutuyu DARALTIYOR
     (denenmiş tuzak). aspect-ratio yeni viewBox oranına eşitlenir ki svg
     yükseklik-kısıtlı kalıp yanlarda bant bırakmasın. */
  .dash-rotator {
    margin-left: calc(var(--gutter) * -2 + 6px) !important;
    margin-right: calc(var(--gutter) * -2 + 6px) !important;
    width: calc(100% + var(--gutter) * 4 - 12px);
    aspect-ratio: 852 / 316;
    /* KRİTİK: gizli slaytlar translateX(60px) ile sağa taşar; tam genişlik
       kutuda bu 60px SAYFA DIŞINA çıkar → mobil tarayıcı layout viewport'u
       genişletir (430→484) ve sticky header ile fixed buton kaydırmada
       görüş alanından çıkar (Platform'a özgü "sticky çalışmıyor" bug'ı).
       Taşmayı kırp: */
    overflow: hidden;
  }
  /* Platform: gösterge paneli rotator'ı (5 slayt) — küçük majüskül
     etiketler ve notlar bu ölçekte okunmuyordu; tüm boylar oransal
     (~×1.35) büyür. Boy hem text attr'ında hem üst g'de gelebiliyor,
     ikisi de kapsanır. (Rotator düzenine dokunma — yalnız svg içi font.
     Büyük sayı/sayaç boyları 26/34/40/44 olduğu gibi kalır.) */
  .dash-rotator svg text[font-size="8"],
  .dash-rotator svg g[font-size="8"] text    { font-size: 11px;   letter-spacing: 1.1px; }
  .dash-rotator svg text[font-size="8.5"],
  .dash-rotator svg g[font-size="8.5"] text  { font-size: 11.5px; letter-spacing: 1.1px; }
  .dash-rotator svg text[font-size="9"],
  .dash-rotator svg g[font-size="9"] text    { font-size: 12.5px; letter-spacing: 1.2px; }
  .dash-rotator svg text[font-size="9.5"],
  .dash-rotator svg g[font-size="9.5"] text  { font-size: 13px;   letter-spacing: 1.2px; }
  .dash-rotator svg text[font-size="10"],
  .dash-rotator svg g[font-size="10"] text   { font-size: 13.5px; letter-spacing: 1.4px; }
  .dash-rotator svg text[font-size="10.5"],
  .dash-rotator svg g[font-size="10.5"] text { font-size: 14px; }
  .dash-rotator svg text[font-size="11"],
  .dash-rotator svg g[font-size="11"] text   { font-size: 14.5px; letter-spacing: 1.8px; }
  .dash-rotator svg text[font-size="15"]     { font-size: 18px; }
  .dash-rotator svg text[font-size="17"]     { font-size: 21px; }
  /* Çalışan Yaşamı: performans radarı tam genişlik; sıkı viewBox'ı
     codex.js verir ("225 2 390 254"). Köşe etiketleri 11 → 15 birim
     (uçlar viewBox içinde: GERİ BİLDİRİM ~231'den, YETKİNLİK ~607'ye). */
  .perf-radar {
    margin-left: calc(var(--gutter) * -2 + 6px);
    margin-right: calc(var(--gutter) * -2 + 6px);
  }
  .perf-radar svg text {
    font-size: 15px;
    letter-spacing: 1.2px;
  }
}

/* 721-1100 bandında da gizli slaytların translateX(60px) taşması mobil
   emülasyonda layout viewport'u genişletip sticky'yi bozabilir — kırp.
   (Masaüstü >1100 etkilenmez; orada taşmayı viewport zaten yutuyor.) */
@media (max-width: 1100px) {
  .dash-rotator { overflow: hidden; }
}

/* ============ MOBİL DÜZELTME — Kayan (pan'lı) sahneler (≤720px) ============
   İşe Alım teklif akışı (tk-sahne, 1000×145) ve Çalışan Yaşamı "gelişim/
   veda" hattı (veda-sahne, 1000×190) dar ekranda küçücük kalıyordu.
   Kanban'daki kamera tekniğiyle: sahne %240 genişliğe büyütülür, kutu tam
   ekran genişliğinde ve overflow:hidden (scrollbar YOK); görünüm yavaşça
   soldan sağa kayıp geri döner. veda-sahne'nin boş kenarlarını ayrıca
   codex.js'teki sıkı viewBox kırpar. Masaüstüne dokunulmadı. */
@media (max-width: 720px) {
  .tk-sahne,
  .veda-sahne,
  .gun-sahne {
    overflow: hidden;
    margin-left: calc(var(--gutter) * -2 + 6px) !important;
    margin-right: calc(var(--gutter) * -2 + 6px) !important;
  }
  .tk-sahne > svg,
  .veda-sahne > svg,
  .gun-sahne > svg {
    /* inline width:100%'ü ezmek için !important; global "img, svg
       { max-width:100% }" reset'i de %240'ı kapıyordu — none şart */
    width: 240% !important;
    max-width: none !important;
    position: relative;
    will-change: left, transform;
  }
  /* Pan, sahne görünür olunca (reveal → .in) başlar */
  .tk-sahne.in > svg,
  .veda-sahne.in > svg,
  .gun-sahne.in > svg {
    animation: tkPan 16s ease-in-out 1.2s infinite alternate;
  }
}
/* Kanban'daki teknik (cqw KULLANMA — Chrome keyframe içinde çözmüyor):
   left %100 = kutu genişliği, translateX %-100 = svg genişliği;
   birlikte svg'nin sağ kenarını kutunun sağ kenarına getirir.
   Uçlarda %8 bekleme: ilk ve son kutu okunabilsin. */
@keyframes tkPan {
  0%, 8%    { left: 0;    transform: translateX(0); }
  92%, 100% { left: 100%; transform: translateX(-100%); }
}
/* Hareket azaltma: pan yok; içerik parmakla kaydırılabilir kalsın */
@media (max-width: 720px) and (prefers-reduced-motion: reduce) {
  .tk-sahne,
  .veda-sahne,
  .gun-sahne { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .tk-sahne.in > svg,
  .veda-sahne.in > svg,
  .gun-sahne.in > svg { animation: none; }
}

/* ============ MOBİL MENÜ — sık liste + Demo Talep + iletişim bilgileri (≤980px) ============
   Serhan'ın isteği (Haziran 2026): çekmecede linkler arası boşluk azaltıldı;
   sayfa linklerinin altına Demo Talep + telefonlar + e-posta + adres eklendi.
   .nav-mobil-ek markup'ı _Layout'ta nav içinde; masaüstünde base kuralla gizli,
   masaüstü menüsü etkilenmez. */
.nav-mobil-ek { display: none; }

@media (max-width: 980px) {
  /* Linkler arası boşluk: 1.5rem → 0.45rem; link içi dikey padding de sıkıldı */
  .codex-nav { gap: 0.45rem; padding-top: 92px; }
  .codex-nav a { padding: 4px 2px 5px; }

  .nav-mobil-ek {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dotted var(--hairline-strong);
  }
  /* Demo Talep — sayfa listesinin altında, vurgulu */
  .codex-nav .nav-mobil-ek .nav-demo {
    font-family: var(--ff-smallcaps);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rubric);
  }
  /* Telefonlar / e-posta / adres */
  .nav-iletisim-bilgi {
    margin-top: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .codex-nav .nav-iletisim-bilgi a {
    font-size: 13px;
    color: var(--ink-3);
    white-space: normal; /* adres sarabilsin (base nowrap'i ezer) */
    line-height: 1.55;
    padding: 2px 2px 3px;
  }
  /* Hover alt çizgi göstergesi bilgi linklerinde gereksiz */
  .codex-nav .nav-iletisim-bilgi a::before { display: none; }
}
