/* ════════════════════════════════════════════════════════════
 *  DEZNOVA — alt sayfa tasarım sistemi (hakkimizda / teknik-ilerleme)
 *  anasayfa.html'in koyu dilinden türetildi: aynı zemin, aynı nav,
 *  aynı tipografi ailesi (Inter + Manrope + Starmagic logo).
 *  Normal dikey scroll — scroll-hijack YOK.
 * ════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Starmagic';
  src: url('Starmagic-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* page-transition.js overlay bu değişkeni okur */
  --bg: #040810;
  --ink: #E9EDF5;
  --accent: #9AC8FF;
  --blue-1: #6CA0E8;
  --blue-2: #4573B8;
  --blue-3: #2E528C;
  --hairline: rgba(108, 160, 232, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);
  --muted-64: rgba(233, 237, 245, 0.64);
  --muted-48: rgba(233, 237, 245, 0.48);
  --muted-40: rgba(233, 237, 245, 0.40);
}

html { height: 100%; }

body {
  min-height: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 32% 75% at 0% 50%, rgba(50, 90, 200, 0.38) 0%, transparent 70%),
    radial-gradient(ellipse 32% 75% at 100% 50%, rgba(35, 70, 175, 0.32) 0%, transparent 70%),
    radial-gradient(ellipse 55% 50% at 8% 10%, rgba(38, 60, 130, 0.30) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 92% 90%, rgba(20, 40, 90, 0.22) 0%, transparent 50%),
    linear-gradient(160deg, #040810 0%, #060C18 55%, #040810 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── tane dokusu: koyu gradient banding'ini kırar ── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 50;
  opacity: 0.085;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  animation: grain-drift 1.1s steps(4) infinite;
}
@keyframes grain-drift {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-2%,1%); }
  50%  { transform: translate(1%,-2%); }
  75%  { transform: translate(-1%,2%); }
  100% { transform: translate(2%,-1%); }
}

/* ── scroll-morph orb canvas (orb-scroll.js çizer) ── */
canvas#dz-orb-hero {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ════════════════════════ NAV ════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 44px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 360ms ease, backdrop-filter 360ms ease,
              border-color 360ms ease, padding 360ms ease;
}
nav.nav-glass {
  background: rgba(8, 13, 24, 0.5);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  padding: 18px 44px;
  -webkit-mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 80%, transparent 100%);
}
nav.nav-glass::after {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  pointer-events: none;
}
nav.nav-glass::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 34%, rgba(255,255,255,0.10) 45%, rgba(255,255,255,0.24) 50%, rgba(255,255,255,0.10) 55%, transparent 66%);
  background-size: 220% 100%;
  animation: nav-sheen 6s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes nav-sheen {
  0%        { background-position: 140% 0; }
  55%, 100% { background-position: -40% 0; }
}
.nav-logo {
  font-family: 'Starmagic', Georgia, serif;
  font-size: 30px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0;
  justify-self: start;
}
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
  color: rgba(233, 237, 245, 0.55);
  text-decoration: none;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.nav-active { color: var(--ink); }
.nav-right { justify-self: end; }
/* hover'da yuvarlak ok sağdan sola süzülür + 45° döner (↗ → →), metin sağa kayar */
.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 46px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  padding: 0 58px 0 26px;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: background 180ms, border-color 180ms,
              padding 520ms cubic-bezier(0.65, 0, 0.3, 1);
}
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
  padding: 0 26px 0 58px;
}
.nav-cta-icon {
  position: absolute;
  right: 5px; top: 50%;
  width: 36px; height: 36px;
  margin-top: -18px;
  background: var(--ink); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #040810; font-size: 14px; line-height: 1;
  transition: right 520ms cubic-bezier(0.65, 0, 0.3, 1),
              transform 520ms cubic-bezier(0.65, 0, 0.3, 1);
}
.nav-cta:hover .nav-cta-icon {
  right: calc(100% - 41px);
  transform: rotate(45deg);
}
/* beta şu an kapalı: hover'da metin "Çok Yakında" ile yer değiştirir */
.nav-cta-label { display: grid; align-items: center; justify-items: start; }
.nav-cta-label > span { grid-area: 1 / 1; white-space: nowrap; }
.nav-cta-text { transition: opacity 260ms ease; }
.nav-cta-text-alt { opacity: 0; }
.nav-cta:hover .nav-cta-text-main { opacity: 0; }
.nav-cta:hover .nav-cta-text-alt { opacity: 1; }
.nav-cta[aria-disabled="true"] { cursor: default; }
@media (prefers-reduced-motion: reduce) {
  .nav-cta, .nav-cta-icon, .nav-cta-text { transition: none; }
}

/* ════════════════════════ HERO ════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}
.bg-word {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  font-size: clamp(64px, 12vw, 180px);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.038);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.slogan-wrap {
  position: absolute;
  left: 0; right: 0;
  top: 37%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}
.slogan { text-align: left; }
.slogan-line {
  display: block;
  font-size: clamp(26px, 3.8vw, 60px);
  font-weight: 300;
  color: rgba(233, 237, 245, 0.88);
  letter-spacing: -0.01em;
  line-height: 1.18;
}
.slogan-line em { font-style: italic; font-weight: 700; color: #fff; }
.slogan-indent { visibility: hidden; }

.hero-note { position: absolute; bottom: 44px; left: 44px; z-index: 20; max-width: 330px; }
.hero-note p { font-size: 15px; line-height: 1.7; color: var(--muted-40); }
.hero-note .link-arrow { margin-top: 18px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 14.5px; font-weight: 500;
  text-decoration: none; letter-spacing: 0.01em;
}
.link-arrow .arr { transition: transform 220ms ease; }
.link-arrow:hover .arr { transform: translateX(4px); }

/* sağ alt: istatistik (teknik) ya da kimlik satırı (hakkimizda) */
.stats { position: absolute; bottom: 44px; right: 44px; z-index: 20; display: flex; gap: 44px; align-items: flex-end; }
.stat-val { font-size: 28px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.stat-val sup { font-size: 16px; font-weight: 500; color: var(--accent); letter-spacing: 0; }
.stat-lbl { font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted-48); margin-top: 8px; line-height: 1.4; }
.hero-ident {
  position: absolute; bottom: 44px; right: 44px; z-index: 20;
  font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--muted-40); text-align: right; line-height: 1.9;
}

.cue {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-40);
}
.cue::before {
  content: '';
  width: 1px; height: 44px;
  background: linear-gradient(rgba(154,200,255,0), rgba(154,200,255,0.7));
  animation: cue-drop 2.2s ease-in-out infinite;
}
@keyframes cue-drop {
  0%   { transform: scaleY(0); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ════════════════════════ BÖLÜM İSKELETİ ════════════════════════ */
.sec { position: relative; padding: clamp(90px, 12vh, 150px) 56px; }
.sec::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline), transparent);
}
.sec.no-line::before { display: none; }
/* orb bittikten sonraki bölümler fixed canvas'ı kapatır */
.sec-opaque { z-index: 2; background: #04070e; }

.band { position: relative; max-width: 1240px; margin: 0 auto; z-index: 2; }

.eyebrow {
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(154, 200, 255, 0.66);
  margin-bottom: 20px;
}
.sec-title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(30px, 3.8vw, 54px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
  color: var(--ink);
  max-width: 22ch;
}
.sec-title em { font-style: normal; color: var(--accent); }
.sec-lead {
  margin-top: 22px;
  font-size: 16.5px; line-height: 1.75;
  color: var(--muted-64);
  max-width: 56ch;
}

/* ════════════════════════ MANİFESTO ════════════════════════ */
.mani-band { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 56px; align-items: center; }
.mani {
  position: relative;
  margin-top: 42px;
  border-radius: 20px;
  padding: clamp(30px, 3.4vw, 46px);
  background: linear-gradient(155deg, rgba(14, 20, 34, 0.74), rgba(8, 12, 22, 0.66));
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
}
.mani-mark {
  font-family: Georgia, serif;
  font-size: 68px; line-height: 0.6;
  color: rgba(154, 200, 255, 0.22);
  margin-bottom: 20px;
}
.mani-text {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.55;
  color: rgba(233, 237, 245, 0.86);
  letter-spacing: -0.005em;
}
.mani-after { margin-top: 26px; display: grid; gap: 16px; }
.mani-after p { font-size: 15.5px; line-height: 1.78; color: var(--muted-64); max-width: 62ch; }
.mani-after strong { color: var(--ink); font-weight: 600; }
.orb-side { position: relative; min-height: 380px; }

/* ════════════════════════ SATIR LİSTESİ (ilkeler / ölçümler) ════════════════════════ */
.rows { margin-top: 52px; list-style: none; }
.row {
  display: grid;
  grid-template-columns: minmax(200px, 5fr) 7fr auto;
  align-items: baseline;
  gap: 28px;
  padding: 26px 20px;
  border-top: 1px solid var(--line-soft);
  border-radius: 14px;
  transition: background 240ms ease;
}
.rows .row:last-child { border-bottom: 1px solid var(--line-soft); }
.row:hover { background: rgba(255,255,255,0.045); }
.row-name {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 600; letter-spacing: -0.015em; color: var(--ink);
}
.row-desc { font-size: 14.5px; line-height: 1.7; color: var(--muted-48); }
.row-mark {
  font-size: 18px; color: var(--accent);
  opacity: 0; transform: translateX(-6px);
  transition: opacity 240ms ease, transform 240ms ease;
}
.row:hover .row-mark { opacity: 1; transform: none; }
/* skor varyantı (teknik ölçüm tablosu) */
.row-score {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 700; letter-spacing: -0.01em;
  color: var(--accent); white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.rows-note { margin-top: 18px; font-size: 12.5px; color: var(--muted-40); letter-spacing: 0.02em; }

/* ════════════════════════ PANEL KARTLARI (hasta / hekim) ════════════════════════ */
.duo { margin-top: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.panel-card {
  position: relative;
  border-radius: 20px;
  padding: 34px;
  min-height: 340px;
  display: flex; flex-direction: column;
  background: linear-gradient(160deg, #111a2e 0%, #0a1120 100%);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform 440ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 440ms ease, border-color 440ms ease;
}
.panel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(138, 172, 224, 0.4);
  box-shadow: 0 26px 60px -18px rgba(40, 80, 150, 0.6);
}
/* köşe nokta deseni (anasayfa svc-front imzası) */
.panel-card::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 150px; height: 150px;
  background-image: radial-gradient(circle, rgba(154,200,255,0.22) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  -webkit-mask-image: radial-gradient(circle at bottom right, #000 25%, transparent 72%);
  mask-image: radial-gradient(circle at bottom right, #000 25%, transparent 72%);
  pointer-events: none;
}
/* fareyi izleyen spotlight */
.panel-card::before {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
              rgba(154, 200, 255, 0.14), transparent 60%);
  opacity: 0; transition: opacity 300ms ease; pointer-events: none;
}
.panel-card:hover::before { opacity: 1; }
.pc-kicker {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(154, 200, 255, 0.66);
}
.pc-name {
  font-family: 'Manrope', 'Inter', sans-serif;
  margin-top: 14px;
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 700; letter-spacing: -0.02em; color: var(--ink);
}
.pc-body { margin-top: 16px; font-size: 15px; line-height: 1.76; color: var(--muted-64); max-width: 46ch; }
.pc-tags { margin-top: auto; padding-top: 24px; display: flex; gap: 7px; flex-wrap: wrap; }
.pc-tags span {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 600; padding: 5px 12px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.025);
  color: rgba(233,237,245,0.66); letter-spacing: 0.06em; text-transform: uppercase;
}

/* ════════════════════════ PIPELINE — "bir sorgunun yolculuğu" ════════════════════════ */
.pipeline { margin-top: 56px; display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 64px; align-items: start; }
.pipe-flow { position: relative; padding-left: 42px; }
/* dikey hat: soluk ray + scroll ile dolan parlak sinyal */
.pipe-track {
  position: absolute; left: 10px; top: 26px; bottom: 26px;
  width: 2px; border-radius: 2px;
  background: rgba(108, 160, 232, 0.14);
}
.pipe-fill {
  position: absolute; left: 0; top: 0;
  width: 100%; height: 0%;
  border-radius: inherit;
  background: linear-gradient(rgba(154,200,255,0.25), #9AC8FF);
  box-shadow: 0 0 12px rgba(126, 180, 248, 0.55);
}
.pipe-fill::after {
  content: '';
  position: absolute; left: 50%; bottom: -4px;
  width: 9px; height: 9px; border-radius: 50%;
  transform: translateX(-50%);
  background: #d9ecff;
  box-shadow: 0 0 12px rgba(154, 200, 255, 1);
}
.layer-card {
  position: relative;
  border-radius: 20px;
  padding: 30px 32px;
  background: linear-gradient(155deg, rgba(14, 20, 34, 0.74), rgba(8, 12, 22, 0.66));
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
  transition: border-color 360ms ease, box-shadow 360ms ease, background 360ms ease;
}
.layer-card + .layer-card { margin-top: 26px; }
/* hattaki düğüm: kartın hizasında nokta */
.layer-card::before {
  content: '';
  position: absolute; left: -37px; top: 38px;
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(154, 200, 255, 0.35);
  transition: background 360ms ease, box-shadow 360ms ease;
}
.layer-card.on {
  border-color: rgba(154, 200, 255, 0.35);
  box-shadow: 0 24px 60px -22px rgba(70, 110, 230, 0.5);
}
.layer-card.on::before { background: #d9ecff; box-shadow: 0 0 10px rgba(154, 200, 255, 0.9); }
.lc-top { display: flex; align-items: baseline; gap: 16px; }
.lc-num {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em;
  color: rgba(154, 200, 255, 0.5);
  font-variant-numeric: tabular-nums;
  transition: color 360ms ease;
}
.layer-card.on .lc-num { color: var(--accent); }
.lc-name {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(19px, 1.8vw, 24px);
  font-weight: 700; letter-spacing: -0.02em; color: var(--ink);
}
.lc-body { margin-top: 14px; font-size: 15px; line-height: 1.76; color: var(--muted-64); }
.lc-tags { margin-top: 18px; display: flex; gap: 7px; flex-wrap: wrap; }
.lc-tags span {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 600; padding: 4px 11px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.14); color: rgba(233,237,245,0.62);
  letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap;
}
/* sağ sütun: orb'un morph sahnesi (sticky) */
.pipe-stage { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; justify-content: center; }
.pipe-slot { width: min(100%, 420px); aspect-ratio: 1; }
.pipe-caption {
  position: absolute; bottom: 12vh; left: 50%; transform: translateX(-50%);
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-40); white-space: nowrap;
}

/* ════════════════════════ SINIRLAR / DÜRÜSTLÜK BLOĞU ════════════════════════ */
.limits {
  margin-top: 52px;
  border-radius: 18px;
  padding: 30px 34px;
  background: rgba(10, 15, 26, 0.6);
  border: 1px solid var(--line-soft);
  border-left: 2px solid rgba(154, 200, 255, 0.55);
  max-width: 760px;
}
.limits-title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: var(--ink);
}
.limits p { margin-top: 12px; font-size: 14.5px; line-height: 1.78; color: var(--muted-64); }
.limits p strong { color: var(--ink); font-weight: 600; }

/* ════════════════════════ YOLCULUK (dikey kilometre taşları) ════════════════════════ */
.miles { position: relative; margin-top: 56px; max-width: 780px; }
.miles::before {
  content: '';
  position: absolute; left: 5px; top: 12px; bottom: 12px;
  width: 1px;
  background: linear-gradient(rgba(108,160,232,0.05), rgba(108,160,232,0.35), rgba(108,160,232,0.05));
}
.mile { position: relative; padding: 0 0 44px 44px; }
.mile:last-child { padding-bottom: 0; }
.mile::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 11px; height: 11px; border-radius: 50%;
  background: #0a1120;
  border: 2px solid rgba(154, 200, 255, 0.55);
}
.mile-step {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(154, 200, 255, 0.6);
}
.mile h3 {
  margin-top: 8px;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700; letter-spacing: -0.015em; color: var(--ink);
}
.mile p { margin-top: 10px; font-size: 15px; line-height: 1.76; color: var(--muted-48); max-width: 58ch; }

/* ════════════════════════ KAPANIŞ + FOOTER (anasayfa dili) ════════════════════════ */
.closing-section {
  position: relative; z-index: 2; min-height: 100vh;
  background: #03060d;
  display: flex; flex-direction: column;
  padding: 96px 56px 38px;
}
.closing-card {
  position: relative; max-width: 1760px; width: 100%; margin: 0 auto;
  min-height: clamp(380px, 44vh, 540px); border-radius: 30px; overflow: hidden;
  border: 1px solid rgba(120, 150, 210, 0.16);
  background: linear-gradient(180deg, #0c1426 0%, #060b14 62%);
  box-shadow: 0 50px 130px -55px rgba(40, 80, 150, 0.55);
}
.closing-aurora {
  position: absolute; top: -55%; left: -12%; right: -12%; height: 100%;
  pointer-events: none; filter: blur(22px);
  background:
    radial-gradient(58% 70% at 32% 46%, rgba(69, 115, 184, 0.50), transparent 70%),
    radial-gradient(48% 62% at 70% 36%, rgba(46, 82, 140, 0.44), transparent 72%),
    radial-gradient(42% 56% at 52% 58%, rgba(138, 172, 224, 0.22), transparent 70%);
}
/* kapanış kartının sağında dönen marka orb'u (deznova-orb.js, v1'den geri geldi) */
.closing-orb {
  position: absolute; top: 50%; right: -6%;
  width: 620px; height: 620px;
  transform: translateY(-50%);
  z-index: 0; pointer-events: none; opacity: 0.55;
}
.closing-content {
  position: relative; z-index: 2;
  min-height: clamp(380px, 44vh, 540px); padding: clamp(40px, 5vw, 84px);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.closing-title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(28px, 3.6vw, 52px); font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.12; color: #fff; max-width: 20ch;
}
.closing-title-join { max-width: 25ch; }
.closing-title-join em { white-space: nowrap; }
.closing-title em { font-style: normal; color: var(--accent); }
/* kapanış CTA'sı — nav'daki "Beta Talep Et" butonuyla aynı dil ve hareket:
   şeffaf hap + sağda beyaz daire ikon; hover'da padding ters dönüp ikon
   sola kayar ve 45° döner. Süre/easing nav-cta ile birebir aynı (520ms). */
.closing-cta {
  margin-top: 30px; align-self: flex-start;
  position: relative;
  display: inline-flex; align-items: center;
  height: 56px;
  padding: 0 72px 0 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  color: #E9EDF5;
  font-family: 'Manrope', 'Inter', sans-serif; font-weight: 500;
  font-size: 16px; letter-spacing: 0.01em; text-decoration: none;
  cursor: pointer; overflow: hidden;
  transition: background 180ms, border-color 180ms,
              padding 520ms cubic-bezier(0.65, 0, 0.3, 1);
}
.closing-cta:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
  padding: 0 30px 0 72px;
}
.cta-icon {
  position: absolute;
  right: 6px; top: 50%;
  width: 44px; height: 44px; margin-top: -22px;
  background: #E9EDF5; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #040810; font-size: 15px; line-height: 1;
  transition: right 520ms cubic-bezier(0.65, 0, 0.3, 1),
              transform 520ms cubic-bezier(0.65, 0, 0.3, 1);
}
.closing-cta:hover .cta-icon { right: calc(100% - 50px); transform: rotate(45deg); }
/* beta şu an kapalı: nav-cta ile aynı metin-değişim tekniği */
.cta-label { display: grid; align-items: center; justify-items: start; }
.cta-label > span { grid-area: 1 / 1; white-space: nowrap; }
.cta-text { transition: opacity 260ms ease; }
.cta-text-alt { opacity: 0; }
[aria-disabled="true"]:hover .cta-text-main { opacity: 0; }
[aria-disabled="true"]:hover .cta-text-alt { opacity: 1; }
.closing-cta[aria-disabled="true"] { cursor: default; }
.foot-col span.foot-soon { color: rgba(233, 237, 245, 0.34); font-size: 14px; cursor: default; }

.closing-foot { max-width: 1760px; width: 100%; margin: auto auto 0; padding-top: 56px; }
.site-footer {
  display: grid; grid-template-columns: 1fr auto auto auto; gap: 56px;
  align-items: start;
}
.foot-brand-mail {
  font-family: 'Manrope', 'Inter', sans-serif; font-size: 19px; font-weight: 600;
  color: var(--ink); text-decoration: none; transition: color 200ms ease;
}
.foot-brand-mail:hover { color: #fff; }
.foot-social { margin-top: 16px; display: flex; gap: 12px; }
.foot-social a {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(233, 237, 245, 0.72);
  border: 1px solid rgba(233, 237, 245, 0.16);
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 200ms ease;
}
.foot-social a:hover {
  color: #fff; border-color: rgba(138, 172, 224, 0.6);
  background: rgba(69, 115, 184, 0.16); transform: translateY(-2px);
}
/* hesaplar henüz bağlanmadı: href gelene kadar tıklanamaz yer tutucu */
.foot-social a[aria-disabled="true"] { cursor: default; opacity: 0.55; }
.foot-social a[aria-disabled="true"]:hover {
  color: rgba(233, 237, 245, 0.72); border-color: rgba(233, 237, 245, 0.16);
  background: none; transform: none;
}
.foot-social svg { width: 18px; height: 18px; }
.foot-loc { margin-top: 24px; font-size: 13px; color: rgba(233, 237, 245, 0.45); }
.foot-col h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted-40); font-weight: 600; margin-bottom: 16px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { color: rgba(233, 237, 245, 0.72); text-decoration: none; font-size: 14px; transition: color 200ms ease; }
.foot-col a:hover { color: #fff; }
.closing-copy {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12.5px; color: rgba(233, 237, 245, 0.32);
}

/* ════════════════════════ REVEAL (rect-tabanlı JS sürer) ════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ════════════════════════ ERİŞİLEBİLİRLİK ════════════════════════ */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 10px;
}
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  nav.nav-glass::before { animation: none; }
  .cue::before { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .panel-card, .layer-card, .closing-cta, .cta-icon, .cta-text, .link-arrow .arr { transition: none !important; }
  .panel-card:hover { transform: none; }
  .pipe-fill { transition: none; }
}

/* ════════════════════════ RESPONSIVE ════════════════════════ */
@media (max-width: 1023px) {
  canvas#dz-orb-hero { display: none; }   /* mobilde orb kapalı (JS de mount'u atlar) */
  .mani-band { grid-template-columns: 1fr; gap: 0; }
  .orb-side { display: none; }
  .pipeline { grid-template-columns: 1fr; gap: 0; }
  .pipe-stage { display: none; }
  .duo { grid-template-columns: 1fr; }
  .sec { padding-left: 36px; padding-right: 36px; }
}
@media (max-width: 860px) {
  nav { grid-template-columns: 1fr 1fr; padding: 22px 24px; }
  .nav-links { display: none; }
  .hero-note { bottom: 118px; left: 24px; max-width: 280px; }
  .stats { right: auto; left: 24px; bottom: 32px; gap: 24px; }
  .hero-ident { right: auto; left: 24px; bottom: 32px; text-align: left; }
  .cue { display: none; }
  .sec { padding-left: 22px; padding-right: 22px; }
  .row { grid-template-columns: 1fr auto; gap: 8px 18px; padding: 22px 12px; }
  .row-desc { grid-column: 1 / -1; }
  .closing-section { padding: 64px 22px 44px; }
  .closing-title-join em { white-space: normal; }
  .site-footer { grid-template-columns: 1fr; gap: 32px; }
  .pipe-flow { padding-left: 32px; }
  .layer-card::before { left: -27px; }
}

/* ════════════════════════ FOTOĞRAF ÜÇLÜSÜ (trio) ════════════════════════
 * anasayfa/hakkimizda'nın koyu diline uydurulmuş fotoğraf kartları:
 * aynı 20px radius + var(--line-soft) kenarlık + var(--accent) mavisiyle
 * duoton overlay (foto kaynağı ne olursa olsun marka paletine çeker).
 * Mevcut hiçbir seçici değiştirilmedi — tamamen ek kurallar. */
.trio { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.shot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #0a1120;
  transition: border-color 360ms ease, box-shadow 360ms ease, transform 440ms cubic-bezier(0.16, 1, 0.3, 1);
}
.shot img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  filter: grayscale(0.3) saturate(1.05) brightness(0.82) contrast(1.06);
  transition: filter 520ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}
.shot::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(154, 200, 255, 0.20), transparent 58%),
    linear-gradient(168deg, rgba(15, 25, 50, 0.22) 0%, rgba(4, 7, 14, 0.66) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.shot:hover { transform: translateY(-5px); border-color: rgba(138, 172, 224, 0.4); box-shadow: 0 26px 60px -22px rgba(40, 80, 150, 0.55); }
.shot:hover img { filter: grayscale(0.05) saturate(1.15) brightness(0.92) contrast(1.04); transform: scale(1.035); }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 24px 22px 20px;
  display: flex; flex-direction: column; gap: 6px;
  background: linear-gradient(0deg, rgba(4, 7, 14, 0.92) 0%, rgba(4, 7, 14, 0.15) 78%, transparent 100%);
}
.shot-kicker {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(154, 200, 255, 0.78);
}
.shot-name {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em; color: #fff;
}
@media (max-width: 1023px) {
  .trio { grid-template-columns: 1fr; }
  .shot img { height: 280px; }
}
@media (prefers-reduced-motion: reduce) {
  .shot, .shot img { transition: none; }
  .shot:hover { transform: none; }
  .shot:hover img { transform: none; }
}
