
:root {
  --bg: #f2f1ed;
  --surface: #e8e7e3;
  --surface-2: #dfdeda;
  --text: #141414;
  --muted: #6b6960;
  --border: #deddd9;
  --accent: #141414;
  --accent-strong: #000000;
  --accent-ink: #f2f1ed;
  --accent-soft: rgba(20, 20, 20, .07);
  --success: #2f7d4f;
  --danger: #b4352f;
  --shadow: 0 6px 16px -10px rgba(0, 0, 0, .35);
  --radius: 0px;
  --serif: "Instrument Serif", Georgia, serif;
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
h1, h2, h3, .brand { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

/* ---------- Üst bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(222, 221, 217, .8);
  background: rgba(242, 241, 237, .72);
  backdrop-filter: blur(16px);
}
.nav { height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { font-size: 23px; font-weight: 800; letter-spacing: 0; }
.brand span { color: var(--accent); }
.links { display: flex; gap: 18px; align-items: center; color: var(--muted); font-size: 14px; font-weight: 600; }
.links a.active, .links a:hover { color: var(--text); }
.actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: 1px solid #cfcec9;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { border-color: var(--accent); }
.btn.primary { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn.primary:hover { background: var(--accent-strong); border-color: var(--accent-strong); }
.btn.ghost { color: var(--muted); border-color: transparent; }
.mobile-menu { display: none; }

/* ---------- Batik renk akışları ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: .5;
}
.blob-hero-a {
  width: 46vw; height: 46vw;
  right: -8vw; top: 6vh;
  background: radial-gradient(circle at 32% 34%, rgba(20, 20, 20, .1) 0%, transparent 58%),
    radial-gradient(circle at 70% 40%, rgba(20, 20, 20, .06) 0%, transparent 55%),
    radial-gradient(circle at 52% 74%, rgba(20, 20, 20, .08) 0%, transparent 58%);
  animation: blob-drift 22s ease-in-out infinite alternate;
}
.blob-hero-b {
  width: 26vw; height: 26vw;
  left: -10vw; bottom: -4vh;
  background: radial-gradient(circle at 60% 40%, rgba(20, 20, 20, .08) 0%, transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(20, 20, 20, .05) 0%, transparent 60%);
  opacity: .3;
  animation: blob-drift 30s ease-in-out infinite alternate-reverse;
}
@keyframes blob-drift { to { transform: translate(-4vw, 4vh) scale(1.08); } }

/* ---------- Rehber / Asistan bölümü ---------- */
.guide-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.guide-visual { position: relative; min-height: 340px; display: flex; align-items: center; justify-content: center; }
.blob-guide {
  width: 380px; height: 380px;
  background: radial-gradient(circle at 30% 30%, rgba(20, 20, 20, .09) 0%, transparent 55%),
    radial-gradient(circle at 72% 38%, rgba(20, 20, 20, .05) 0%, transparent 55%),
    radial-gradient(circle at 50% 78%, rgba(20, 20, 20, .07) 0%, transparent 58%);
  animation: blob-drift 18s ease-in-out infinite alternate;
}
.orb {
  position: relative;
  width: 210px; height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, rgba(255, 255, 255, .95), rgba(242, 241, 237, .35) 42%, rgba(20, 20, 20, .12) 72%, rgba(20, 20, 20, .18) 100%);
  box-shadow: inset 0 -18px 40px rgba(20, 20, 20, .12), inset 0 14px 30px rgba(255, 255, 255, .8), 0 30px 60px rgba(20, 20, 20, .14);
  animation: orb-float 6s ease-in-out infinite alternate;
}
.orb-glass {
  position: absolute; inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle at 62% 66%, rgba(20, 20, 20, .08), transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(20, 20, 20, .06), transparent 55%);
  filter: blur(6px);
}
@keyframes orb-float { to { transform: translateY(-16px); } }

/* ---------- Çalışan avatar şeridi ---------- */
.team-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 22px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 14px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-member:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.member-orb {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .95), rgba(232, 231, 227, .55) 45%, rgba(20, 20, 20, .3) 78%, rgba(20, 20, 20, .48) 100%);
  box-shadow: inset 0 -12px 20px rgba(20, 20, 20, .3), inset 0 6px 14px rgba(255, 255, 255, .85), 0 16px 22px -10px rgba(20, 20, 20, .35);
  animation: orb-float 5s ease-in-out infinite alternate;
  animation-delay: calc(var(--i, 0) * -.7s);
}
.member-orb.orb-v1 { background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .95), rgba(232, 231, 227, .55) 45%, rgba(20, 20, 20, .22) 78%, rgba(20, 20, 20, .4) 100%); box-shadow: inset 0 -12px 20px rgba(20, 20, 20, .24), inset 0 6px 14px rgba(255, 255, 255, .85), 0 16px 22px -10px rgba(20, 20, 20, .32); }
.member-orb.orb-v2 { background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .95), rgba(232, 231, 227, .55) 45%, rgba(20, 20, 20, .26) 78%, rgba(20, 20, 20, .44) 100%); box-shadow: inset 0 -12px 20px rgba(20, 20, 20, .27), inset 0 6px 14px rgba(255, 255, 255, .85), 0 16px 22px -10px rgba(20, 20, 20, .33); }

/* ---------- Yüzen asistan ---------- */
.assist-fab {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 40;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(20, 20, 20, .28);
  transition: transform .2s ease;
}
.assist-fab:hover { transform: scale(1.06); }
.assist-panel {
  position: fixed;
  right: 22px; bottom: 90px;
  z-index: 40;
  width: min(360px, calc(100vw - 44px));
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.assist-panel.open { display: flex; }
.assist-head { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-bottom: 1px solid var(--border); background: var(--surface); }
.assist-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--success); }
.assist-close { margin-left: auto; border: none; background: none; font-size: 22px; line-height: 1; cursor: pointer; color: var(--muted); }
.assist-msgs { padding: 16px; display: flex; flex-direction: column; gap: 10px; max-height: 320px; overflow-y: auto; }
.assist-msg { max-width: 85%; padding: 10px 13px; border-radius: var(--radius); font-size: 14px; line-height: 1.45; }
.assist-msg.bot { background: var(--surface-2); }
.assist-msg.user { background: var(--accent); color: var(--accent-ink); align-self: flex-end; }
.assist-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--border); }
.assist-input input { flex: 1; min-width: 0; padding: 10px 12px; border-radius: var(--radius); border: 1px solid var(--border); background: #fff; }
.assist-input .btn { min-height: 40px; padding: 8px 14px; }

/* ---------- Sahne (hero) ---------- */
.stage { position: relative; height: 340vh; }
.stage-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; background: var(--bg); }
#flowCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.beam {
  position: absolute;
  top: -25vh;
  height: 150vh;
  width: 30vw;
  opacity: .45;
  background: linear-gradient(to bottom, rgba(20, 20, 20, .05), transparent 65%);
  clip-path: polygon(42% 0, 58% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.beam-a { left: 16vw; transform: rotate(9deg); }
.beam-b { right: 12vw; transform: rotate(-12deg); opacity: .28; }
.fog { position: absolute; width: 90vmax; height: 90vmax; border-radius: 50%; pointer-events: none; }
.fog-a { left: -25vmax; bottom: -58vmax; background: radial-gradient(circle, rgba(20, 20, 20, .05), transparent 60%); animation: drift-a 26s ease-in-out infinite alternate; }
.fog-b { right: -30vmax; bottom: -62vmax; background: radial-gradient(circle, rgba(20, 20, 20, .035), transparent 60%); animation: drift-b 34s ease-in-out infinite alternate; }
@keyframes drift-a { to { transform: translate(6vmax, -3vmax); } }
@keyframes drift-b { to { transform: translate(-7vmax, -2vmax); } }
.stage-floor { position: absolute; left: 0; right: 0; bottom: 0; height: 30vh; background: linear-gradient(to top, rgba(20, 20, 20, .04), transparent); pointer-events: none; }
.grain {
  position: absolute;
  inset: 0;
  opacity: .06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}
.scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
  pointer-events: none;
}
.stage-sticky[data-scene="0"] .scene-0,
.stage-sticky[data-scene="1"] .scene-1,
.stage-sticky[data-scene="2"] .scene-2 { opacity: 1; transform: none; pointer-events: auto; }
.display {
  font-weight: 400;
  font-size: clamp(3rem, 9.5vw, 8.6rem);
  line-height: .98;
  letter-spacing: -.02em;
  margin: 14px 0 20px;
}
.display em { font-style: normal; color: var(--accent); }
.display-sm { font-size: clamp(2.2rem, 6.4vw, 5.6rem); }
.eyebrow { color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .16em; }
.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  animation: hint 2.2s ease-in-out infinite;
}
@keyframes hint { 50% { transform: translate(-50%, 8px); opacity: .5; } }
.chaos-words { display: grid; gap: clamp(10px, 3vh, 28px); justify-items: center; max-width: 56vw; margin-inline: auto; }
.chaos-words span {
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 3.1rem);
  letter-spacing: -.01em;
  color: var(--muted);
}
.chaos-words span:nth-child(1) { transform: rotate(-1.2deg); }
.chaos-words span:nth-child(2) { transform: rotate(.8deg); opacity: .85; }
.chaos-words span:nth-child(3) { transform: rotate(-.5deg); opacity: .7; }
.chaos-words span:nth-child(4) { transform: rotate(1.4deg); opacity: .55; }

/* ---------- Hero kart kolajı (arşiv kartlarının statik dili) ---------- */
.hero-cards { position: absolute; inset: 0; pointer-events: none; }
.hc {
  position: absolute;
  width: 132px; height: 88px;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, .7);
  display: flex; align-items: flex-end;
  padding: 8px 9px;
  font-size: 9px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); line-height: 1.3;
  box-shadow: 0 10px 24px -16px rgba(0, 0, 0, .4);
  transform: rotate(var(--r, 0deg));
  animation: hc-float 8s ease-in-out infinite alternate;
  animation-delay: var(--d, 0s);
}
.hc.dark { background: var(--accent); border-color: rgba(255, 255, 255, .25); color: rgba(242, 241, 237, .85); }
@keyframes hc-float { to { transform: rotate(var(--r, 0deg)) translateY(-12px); } }
.hc-1 { left: 7vw;  top: 16vh;  --r: -4deg;   --d: -1s; }
.hc-2 { left: 15vw; top: 62vh;  --r: 2.5deg;  --d: -3s; }
.hc-3 { left: 4vw;  top: 76vh;  --r: -1.5deg; --d: -5s; }
.hc-4 { right: 6vw; top: 14vh;  --r: 3deg;    --d: -2s; }
.hc-5 { right: 14vw; top: 34vh; --r: -2.5deg; --d: -6s; }
.hc-6 { right: 5vw; top: 58vh;  --r: 1.5deg;  --d: -4s; }
.hc-7 { right: 16vw; top: 78vh; --r: -3deg;   --d: -7s; }
.hc-8 { left: 16vw; top: 32vh;  --r: 2deg;    --d: -2.5s; }
.scene-centered { align-items: center; text-align: center; }
.scene-centered .lead { margin-inline: auto; }
.scene-centered .hero-actions { justify-content: center; }
.scene-centered .display em { font-family: var(--serif); font-style: italic; }
@media (max-width: 920px) {
  .hc { width: 84px; height: 56px; font-size: 7px; padding: 5px 6px; opacity: .75; }
  .hc-2, .hc-3, .hc-5, .hc-6, .hc-7, .hc-8 { display: none; }
  .hc-1 { left: 3vw; top: 8vh; }
  .hc-4 { right: 3vw; top: 9.5vh; }
}

/* ---------- Numaralı zaman çizelgesi (Nasıl Çalışır) ---------- */
.timeline { position: relative; max-width: 760px; }
.timeline::before { content: ""; position: absolute; left: 26px; top: 14px; bottom: 14px; width: 1px; background: var(--border); }
.tl-step { position: relative; display: grid; grid-template-columns: 72px 1fr; gap: 22px; padding: 24px 0; }
.tl-num { font-family: var(--serif); font-size: 42px; line-height: 1; color: var(--muted); background: var(--bg); align-self: start; text-align: center; width: 54px; }
.tl-step h3 { font-family: var(--serif); font-size: 24px; margin: 4px 0 6px; }
.tl-step p { margin: 0; }

/* ---------- Deneyim listesi (Kullanıcı Deneyimleri) ---------- */
.exp-list { display: grid; gap: 14px; max-width: 860px; }
.exp-item { background: var(--accent); color: var(--accent-ink); border: 1px solid var(--accent); padding: 26px 28px; }
.exp-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: 4px 9px; border: 1px solid rgba(242, 241, 237, .45); border-radius: 999px; color: rgba(242, 241, 237, .85); margin-bottom: 12px; }
.exp-item h3 { font-family: var(--serif); font-size: 26px; margin: 0 0 8px; }
.exp-item p { color: rgba(242, 241, 237, .72); margin: 0; }

/* ---------- Öne çıkan paket (arşivin koyu kart dili) ---------- */
.package.featured { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.package.featured h3, .package.featured .package-who { color: var(--accent-ink); }
.package.featured ul, .package.featured p { color: rgba(242, 241, 237, .72); }
.package.featured .btn.primary { background: var(--accent-ink); color: var(--accent); border-color: var(--accent-ink); }

/* ---------- Genel bölümler ---------- */
h1 { font-size: clamp(38px, 6vw, 64px); line-height: 1.02; margin: 14px 0 18px; letter-spacing: -.025em; }
h2 { font-size: clamp(27px, 3vw, 42px); line-height: 1.12; margin: 0 0 14px; letter-spacing: -.02em; }
h3 { margin: 0 0 8px; font-size: 18px; }
p { color: var(--muted); margin: 0 0 16px; }
.lead { font-size: 19px; max-width: 680px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.section { padding: 96px 0; }
.section-head { max-width: 780px; margin-bottom: 36px; }
.panel, .card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.panel { padding: 24px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 44px auto; }
.metric { padding: 22px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); text-align: center; }
.metric strong { display: block; font-family: var(--serif); font-size: 32px; color: var(--accent); line-height: 1.1; }
.metric span { color: var(--muted); font-size: 13px; font-weight: 700; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card { padding: 22px; transition: border-color .3s ease, transform .3s ease; }
.card:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); transform: translateY(-4px); }
.card .tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-trust {
  margin-top: 22px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  max-width: 560px;
}

/* ---------- Dijital çalışanlar: parçacık paneli ---------- */
.workers-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.workers-canvas-wrap {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 62%, rgba(20, 20, 20, .03), transparent 68%), var(--surface);
  overflow: hidden;
}
#workersCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.workers-list { display: grid; gap: 10px; }
.worker-item {
  text-align: left;
  padding: 16px 18px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--text);
  transition: border-color .3s ease, background .3s ease;
}
.worker-item h3 { margin: 0 0 4px; font-size: 16px; }
.worker-item p { margin: 0; font-size: 14px; color: var(--muted); }
.worker-item.active { border-color: color-mix(in srgb, var(--accent) 55%, var(--border)); background: var(--surface-2); }

/* ---------- Hikâye şeridi ---------- */
.story-strip { overflow: hidden; border-block: 1px solid var(--border); background: rgba(20, 20, 20, .02); }
.story-track { display: flex; gap: 16px; width: max-content; padding: 20px 0; animation: slide 55s linear infinite; }
.story-track:hover { animation-play-state: paused; }
.story { width: 330px; flex: 0 0 auto; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Grafik ---------- */
.chart { display: grid; gap: 12px; }
.bar { display: grid; grid-template-columns: 190px 1fr 80px; gap: 12px; align-items: center; }
.bar strong { font-size: 14px; }
.bar .line { height: 10px; border-radius: 999px; background: var(--surface-2); overflow: hidden; }
.bar .fill { height: 100%; width: var(--w); background: var(--accent); border-radius: inherit; }
.bar span { color: var(--muted); font-weight: 700; font-size: 14px; }

/* ---------- Form ---------- */
.form { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; font-size: 13px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  border-radius: var(--radius);
  padding: 12px 13px;
  transition: border-color .25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.status { min-height: 22px; font-weight: 700; color: var(--accent); }

/* ---------- Kapanış bandı ---------- */
.cta-band { text-align: center; padding: 110px 0 130px; }
.cta-band .lead { margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- SSS, doküman, footer ---------- */
.faq-list { display: grid; gap: 10px; max-width: 820px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 4px 18px; }
.faq-item summary { cursor: pointer; padding: 14px 0; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--accent); font-weight: 800; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { padding: 0 0 14px; margin: 0; }
.doc h3 { margin: 18px 0 6px; color: var(--accent); }
.doc h3:first-child { margin-top: 0; }
.narrow { max-width: 820px; }
.disclaimer { margin-top: 22px; color: var(--muted); font-size: 13px; font-style: italic; }
.package { display: flex; flex-direction: column; }
.package .package-who { font-weight: 700; color: var(--text); margin-bottom: 12px; }
.package ul { margin: 0 0 18px; padding-left: 18px; color: var(--muted); display: grid; gap: 7px; }
.package ul li { font-size: 14px; }
.package .btn { margin-top: auto; }
.footer { padding: 40px 0; border-top: 1px solid var(--border); color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
.footer-grid .brand { font-size: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a:hover { color: var(--accent); }
.footer-base { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 13px; }

/* ---------- Görünüm animasyonu ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Dashboard ---------- */
.dash { display: grid; grid-template-columns: 250px 1fr; min-height: calc(100vh - 68px); }
.sidebar { border-right: 1px solid var(--border); background: var(--surface); padding: 22px; }
.side-links { display: grid; gap: 8px; margin-top: 20px; }
.side-links .btn { justify-content: flex-start; }
.dash-main { padding: 26px; }
.table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.table th, .table td { padding: 12px; border-bottom: 1px solid var(--border); text-align: left; font-size: 14px; }
.table th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.table select { background: var(--surface-2); color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 10px; }
.pill { display: inline-flex; padding: 4px 9px; border-radius: 999px; border: 1px solid var(--accent); background: transparent; color: var(--accent); font-weight: 700; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.score { display: inline-flex; min-width: 38px; justify-content: center; padding: 4px 9px; border-radius: 999px; font-weight: 800; font-size: 13px; }
.score-high { background: rgba(126, 217, 160, .16); color: var(--success); }
.score-mid { background: var(--accent-soft); color: var(--accent); }
.score-low { background: var(--surface-2); color: var(--muted); }
.dossier-row td { padding-top: 0 !important; }
.dossier { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 14px; background: var(--surface-2); border-radius: var(--radius); margin-bottom: 6px; }
.dossier > div { display: grid; gap: 3px; }
.dossier span { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 700; }
.dossier strong { font-size: 14px; }
.dossier-wide { grid-column: 1 / -1; }

/* ---------- Mobil ---------- */
@media (max-width: 920px) {
  .grid-3, .grid-2, .metric-grid, .dash, .footer-grid, .workers-grid, .guide-grid { grid-template-columns: 1fr; }
  .team-strip { grid-template-columns: repeat(2, 1fr); }
  .links { display: none; }
  .topbar.open .links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .mobile-menu { display: inline-flex; }
  .bar { grid-template-columns: 1fr; }
  .sidebar { border-right: 0; border-bottom: 1px solid var(--border); }
  .chaos-words span:nth-child(n) { transform: none; }
  .stage { height: 300vh; }
}

/* ---------- Hareket azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .stage { height: 100vh; }
  .scene { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .story-track { animation-duration: 220s; }
  .fog-a, .fog-b, .scroll-hint { animation: none; }
  .blob, .orb { animation: none; }
}
