/* ═══════════════════════════════════════════════════════════════
   HEDEF ATLAS — sinematik statik landing
   Gece atlası: mürekkep laciverdi, yıldız tozu, dev serif anlatı
   ═══════════════════════════════════════════════════════════════ */

:root {
  --ink: #04060f;
  --ink-2: #070c1e;
  --ink-3: #0b1228;
  --hairline: rgba(140, 170, 235, 0.16);
  --hairline-strong: rgba(140, 170, 235, 0.32);
  --text: #e9eefb;
  --text-dim: rgba(196, 210, 245, 0.68);
  --text-faint: rgba(168, 184, 228, 0.42);
  --blue: #6ea8ff;
  --cyan: #7dd3fc;
  --ember: #ff7a1a;
  --ember-deep: #ff3d00;
  --paper: #ece3cf;
  --paper-2: #e3d7bd;
  --paper-ink: #2b2314;
  --paper-dim: rgba(58, 48, 28, 0.72);
  --paper-red: #a83b1c;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(110, 168, 255, 0.35); }

a { color: inherit; text-decoration: none; }
em { font-family: var(--serif); font-style: italic; }

/* ── Yıldız tozu tuvali ── */
#dust {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

main { position: relative; z-index: 2; }

/* ═══ AÇILIŞ PERDESİ ═══ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease 0.2s, visibility 1s ease 0.2s;
}

.intro--done { opacity: 0; visibility: hidden; }

.intro-inner { text-align: center; }

.intro-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  opacity: 0;
  animation: intro-fade 1.1s ease 0.15s forwards;
  box-shadow: 0 0 70px -8px rgba(70, 130, 255, 0.75);
}

.intro-word {
  margin-top: 22px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.55em;
  padding-left: 0.55em;
  opacity: 0;
  animation: intro-track 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.intro-line {
  margin: 26px auto 0;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, transparent, rgba(125, 180, 255, 0.8), transparent);
  animation: intro-line 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

@keyframes intro-fade { to { opacity: 1; } }
@keyframes intro-track { from { opacity: 0; letter-spacing: 0.9em; } to { opacity: 1; letter-spacing: 0.55em; } }
@keyframes intro-line { to { width: 220px; } }

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px clamp(20px, 4vw, 56px);
  transition: background 0.5s ease, backdrop-filter 0.5s ease, padding 0.4s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}

.nav--solid {
  background: rgba(4, 6, 15, 0.72);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
  padding-top: 12px;
  padding-bottom: 12px;
}

.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-brand span {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: clamp(16px, 2.4vw, 34px); }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s ease;
}
.nav-links a:hover { color: #fff; }

.nav-cta { display: flex; gap: 10px; }

/* ── Butonlar ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 999px;
  transition: all 0.35s ease;
  white-space: nowrap;
}

.btn-line {
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  background: rgba(140, 170, 235, 0.04);
}
.btn-line:hover { border-color: rgba(160, 195, 255, 0.75); background: rgba(140, 170, 235, 0.12); }

.btn-fill {
  border: 1px solid rgba(255, 140, 40, 0.5);
  background: linear-gradient(135deg, var(--ember), var(--ember-deep));
  color: #fff;
  box-shadow: 0 10px 36px -12px rgba(255, 92, 0, 0.7);
}
.btn-fill:hover { transform: translateY(-2px); box-shadow: 0 16px 48px -12px rgba(255, 100, 0, 0.85); }

.btn-big { padding: 17px 40px; font-size: 0.8rem; }

.btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

/* ═══ REVEAL ═══ */
.rv {
  opacity: 0;
  transform: translateY(34px);
  filter: blur(6px);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv-d1 { transition-delay: 0.15s; }
.rv-d2 { transition-delay: 0.3s; }
.rv-d3 { transition-delay: 0.45s; }
.rv.on { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ═══ SAHNE 1 · HERO ═══ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 20px 150px;
  overflow: hidden;
}

.hero-sky { position: absolute; inset: 0; }

.hero-constellation { position: absolute; inset: 0; width: 100%; height: 100%; }

.cline {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: cline-draw 3.2s cubic-bezier(0.4, 0, 0.2, 1) 1.4s forwards;
}
.cline:nth-child(2) { animation-delay: 1.9s; }
.cline:nth-child(3) { animation-delay: 2.4s; }
.cline:nth-child(4) { animation-delay: 2.7s; }
.cline:nth-child(5) { animation-delay: 3s; }

@keyframes cline-draw { to { stroke-dashoffset: 0; } }

.constel-stars circle { opacity: 0; animation: star-in 1.6s ease 1.2s forwards; }
.constel-stars circle:nth-child(odd) { animation-delay: 1.7s; }

@keyframes star-in { to { opacity: 0.9; } }

.hero-glow {
  position: absolute;
  left: 50%;
  top: 58%;
  width: 900px;
  height: 520px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(38, 90, 220, 0.28), transparent 65%);
  filter: blur(50px);
}

.hero-kicker {
  position: relative;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: clamp(18px, 3vh, 34px);
}

.hero-title {
  position: relative;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0.06em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-row {
  display: block;
  font-size: clamp(3.6rem, min(13.5vw, 22vh), 11.5rem);
  background: linear-gradient(180deg, #ffffff 20%, #b9d2ff 75%, #7ba7ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 90px rgba(80, 140, 255, 0.25);
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  animation: title-rise 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

.hero-title-row--2 { animation-delay: 0.8s; }

@keyframes title-rise { to { opacity: 1; transform: translateY(0) scale(1); } }

.hero-sub {
  position: relative;
  margin-top: clamp(20px, 3.4vh, 38px);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  color: var(--text-dim);
  max-width: 640px;
}

.side-text {
  position: absolute;
  top: 50%;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-faint);
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.side-text--left { left: clamp(14px, 2.6vw, 44px); transform: translateY(-50%) rotate(180deg); }
.side-text--right { right: clamp(14px, 2.6vw, 44px); transform: translateY(-50%); }

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.3s ease;
}
.scroll-cue:hover { color: var(--text-dim); }
.scroll-cue i {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, rgba(150, 185, 255, 0.7), transparent);
  overflow: hidden;
  position: relative;
}
.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff, transparent);
  animation: cue-drop 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes cue-drop { from { transform: translateY(-100%); } to { transform: translateY(120%); } }

/* ═══ ARA SAHNELER ═══ */
.interlude {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
  position: relative;
}

.chapter-no {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: clamp(22px, 4vh, 40px);
}

.interlude-line {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  line-height: 1.35;
  max-width: 900px;
}
.interlude-line em { color: var(--blue); }

.interlude-line--big {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 500;
}

.interlude-after {
  margin-top: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  color: var(--text-dim);
}

.interlude--turn {
  background:
    radial-gradient(ellipse 70% 50% at 50% 60%, rgba(30, 70, 190, 0.16), transparent 70%);
}

.seal {
  margin-top: 54px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  transform: rotate(-4deg);
  opacity: 0.92;
  box-shadow: 0 0 36px -8px rgba(110, 168, 255, 0.55);
}

/* ═══ SAHNE 2 · PARŞÖMEN ═══ */
.paper-scene {
  position: relative;
  z-index: 3;
  background:
    radial-gradient(ellipse 90% 70% at 50% 10%, rgba(255, 252, 240, 0.5), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(120, 96, 50, 0.025) 3px 4px),
    repeating-linear-gradient(90deg, transparent 0 3px, rgba(120, 96, 50, 0.02) 3px 4px),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  color: var(--paper-ink);
  padding: clamp(100px, 16vh, 170px) 24px;
  box-shadow:
    inset 0 40px 80px -40px rgba(40, 28, 8, 0.45),
    inset 0 -40px 80px -40px rgba(40, 28, 8, 0.45);
}

.paper-inner { max-width: 1060px; margin: 0 auto; text-align: center; }

.chapter-no--paper { color: var(--paper-red); }

.paper-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.05;
  color: #221b0d;
}

.paper-sub {
  margin: 22px auto 0;
  max-width: 620px;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-style: italic;
  color: var(--paper-dim);
}

.paper-scraps {
  margin-top: clamp(50px, 8vh, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(18px, 3vw, 34px);
  text-align: left;
}

.scrap {
  background: #f6efdc;
  border: 1px solid rgba(90, 70, 30, 0.25);
  padding: 22px 20px 24px;
  transform: rotate(var(--rot, 0deg)) translateY(34px);
  box-shadow: 0 14px 34px -14px rgba(50, 36, 10, 0.5);
  transition-property: opacity, transform, filter;
}
.scrap.on { transform: rotate(var(--rot, 0deg)) translateY(0); }
.scrap:hover { transform: rotate(0deg) translateY(-4px); }

.scrap-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--paper-red);
  border: 1px solid rgba(168, 59, 28, 0.45);
  padding: 3px 10px;
  margin-bottom: 12px;
}

.scrap p {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.45;
  color: #33290f;
}

.paper-footnote {
  margin-top: clamp(46px, 7vh, 70px);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--paper-red);
}

/* ═══ SAHNE 3 · ATLAS (sabit sahne) ═══ */
.atlas { position: relative; height: 340vh; }

.atlas-pinwrap {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.atlas-stage {
  width: min(1100px, 94vw);
  text-align: center;
  padding: 90px 0 20px;
}

.atlas-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  line-height: 1.05;
}

.atlas-map { position: relative; margin-top: clamp(18px, 4vh, 44px); }
.atlas-map svg { width: 100%; height: auto; display: block; }

.atlas-trail-bg {
  fill: none;
  stroke: rgba(125, 165, 240, 0.14);
  stroke-width: 1.5;
  stroke-dasharray: 6 8;
}

.atlas-trail {
  fill: none;
  stroke: #6ea8ff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 7px rgba(110, 168, 255, 0.8));
}

.atlas-node circle:first-child {
  fill: #0b1228;
  stroke: rgba(140, 180, 255, 0.4);
  stroke-width: 1.5;
  transition: fill 0.5s ease, stroke 0.5s ease;
}
.atlas-node .halo {
  fill: none;
  stroke: rgba(125, 211, 252, 0);
  stroke-width: 1;
  transition: stroke 0.5s ease;
}
.atlas-node.on circle:first-child { fill: #7dd3fc; stroke: #d7ecff; }
.atlas-node.on .halo { stroke: rgba(125, 211, 252, 0.45); animation: halo-pulse 2.4s ease-out infinite; }
.atlas-node--goal.on circle:first-child { fill: var(--ember); stroke: #ffd9b8; }
.atlas-node--goal.on .halo { stroke: rgba(255, 140, 50, 0.55); }

@keyframes halo-pulse {
  0% { transform: scale(0.75); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.atlas-step {
  position: absolute;
  width: min(240px, 26vw);
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.atlas-step.on { opacity: 1; transform: translateY(0); }

.atlas-step b {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 5px;
}
.atlas-step p { font-size: 0.8rem; line-height: 1.5; color: var(--text-dim); }

.atlas-step[data-step="0"] { left: 1%; top: 62%; }
.atlas-step[data-step="1"] { left: 24%; top: 24%; }
.atlas-step[data-step="2"] { left: 51%; top: 74%; }
.atlas-step[data-step="3"] { left: 62%; top: 8%; }
.atlas-step[data-step="4"] { right: 0%; top: 30%; text-align: right; }

.atlas-note {
  margin-top: clamp(12px, 3vh, 30px);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: var(--text-dim);
}
.atlas-note em { color: var(--cyan); }

/* ═══ BÖLÜMLER (genel) ═══ */
.chapter {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(110px, 16vh, 190px) clamp(20px, 4vw, 48px);
  text-align: center;
}

.chapter-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.3rem, 5.2vw, 4.2rem);
  line-height: 1.08;
}

.chapter-sub {
  margin: 22px auto 0;
  max-width: 620px;
  font-size: 1rem;
  color: var(--text-dim);
}

.chapter-quote {
  margin: clamp(60px, 9vh, 90px) auto 0;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: var(--text);
}
.chapter-quote em { color: var(--blue); }

/* ═══ ROLLER ═══ */
.roles {
  margin-top: clamp(56px, 9vh, 90px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  border: 1px solid var(--hairline);
  text-align: left;
}

.role {
  padding: clamp(28px, 3.4vw, 44px);
  border-right: 1px solid var(--hairline);
  transition: background 0.5s ease;
  position: relative;
}
.role:last-child { border-right: none; }
.role:hover { background: rgba(110, 160, 255, 0.045); }

.role-no {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--text-faint);
  display: block;
  margin-bottom: 18px;
}

.role h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.role p { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 18px; }

.role ul { list-style: none; }
.role li {
  font-size: 0.82rem;
  color: var(--text-dim);
  padding: 8px 0 8px 18px;
  border-top: 1px solid var(--hairline);
  position: relative;
}
.role li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--cyan);
}

/* ═══ ÖZELLİKLER ═══ */
.features {
  margin-top: clamp(56px, 9vh, 90px);
  list-style: none;
  counter-reset: feat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(30px, 5vw, 70px);
  text-align: left;
}

.features li {
  counter-increment: feat;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 4px 18px;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
  position: relative;
}

.features li::before {
  content: counter(feat, decimal-leading-zero);
  grid-row: 1 / span 2;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-faint);
  line-height: 1.2;
}

.features b { font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; }
.features span { grid-column: 2; font-size: 0.83rem; color: var(--text-dim); }

/* ═══ EKRANLAR ═══ */
.shots {
  margin-top: clamp(56px, 9vh, 90px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.shot { text-align: left; }

.shot-frame {
  border: 1px solid var(--hairline-strong);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(8, 13, 32, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 40px 90px -40px rgba(20, 60, 190, 0.5);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}
.shot:hover .shot-frame { transform: translateY(-8px); box-shadow: 0 56px 110px -40px rgba(30, 80, 220, 0.65); }

.shot-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--hairline);
}
.shot-bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(150, 180, 240, 0.22); }
.shot-bar span { margin-left: 10px; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); }

.shot-body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }

.shot-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.shot-card {
  border: 1px solid var(--hairline);
  border-radius: 9px;
  padding: 12px;
  background: rgba(12, 19, 44, 0.6);
}
.shot-card b { display: block; font-size: 1.25rem; font-weight: 600; color: #fff; }
.shot-card span { font-size: 0.66rem; color: var(--text-faint); }

.shot-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 110px;
  border: 1px solid var(--hairline);
  border-radius: 9px;
  padding: 12px;
  background: rgba(12, 19, 44, 0.6);
}
.shot-chart i {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, rgba(110, 168, 255, 0.95), rgba(40, 90, 220, 0.5));
}
.shot-chart i:last-child { background: linear-gradient(180deg, #ff9a4d, #ff5a00); }

.shot-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--hairline);
  border-radius: 9px;
  padding: 12px;
  background: rgba(12, 19, 44, 0.6);
}
.shot-ava {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, #3f8cff, #1d4ed8);
  color: #fff;
}
.shot-profile b { display: block; font-size: 0.9rem; }
.shot-profile div span { font-size: 0.7rem; color: var(--text-faint); }
.shot-profile em { margin-left: auto; font-family: var(--sans); font-style: normal; font-weight: 600; color: var(--cyan); }

.shot-rows { display: flex; flex-direction: column; gap: 10px; }
.shot-row {
  border: 1px solid var(--hairline);
  border-radius: 9px;
  padding: 12px 14px;
  background: rgba(12, 19, 44, 0.6);
}
.shot-row span { display: block; font-size: 0.7rem; color: var(--text-faint); margin-bottom: 8px; }
.shot-row i {
  display: block;
  height: 4px;
  width: var(--w, 50%);
  border-radius: 999px;
  background: linear-gradient(90deg, #7dd3fc, #3f8cff);
}

.shot figcaption {
  margin-top: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--text-dim);
  text-align: center;
}

.mobile-soon {
  margin: clamp(50px, 8vh, 80px) auto 0;
  max-width: 640px;
  border: 1px solid rgba(255, 130, 50, 0.35);
  border-radius: 14px;
  padding: 26px 30px;
  text-align: left;
  background: rgba(255, 110, 26, 0.05);
}
.mobile-soon b { font-size: 0.95rem; letter-spacing: 0.04em; color: #ffb37e; }
.mobile-soon p { margin-top: 6px; font-size: 0.85rem; color: var(--text-dim); }

/* ═══ HİKAYELER ═══ */
.stories {
  margin-top: clamp(56px, 9vh, 90px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(16px, 2.6vw, 28px);
}

.story {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 26px 24px;
  text-align: left;
  background: rgba(10, 16, 38, 0.5);
}
.story i {
  display: block;
  height: 7px;
  width: 100%;
  border-radius: 4px;
  background: rgba(150, 180, 240, 0.12);
  margin-bottom: 10px;
}
.story b { display: block; margin-top: 20px; font-size: 0.92rem; }
.story span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }
.story::after {
  content: "Hikaye yakında";
  display: inline-block;
  margin-top: 14px;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(125, 211, 252, 0.35);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ═══ PAKETLER ═══ */
.plans {
  margin-top: clamp(56px, 9vh, 90px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2.4vw, 26px);
  align-items: stretch;
}

.plan {
  position: relative;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  background: rgba(9, 14, 34, 0.55);
  backdrop-filter: blur(8px);
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.plan:hover { border-color: var(--hairline-strong); transform: translateY(-5px); }

.plan--pro {
  border-color: rgba(255, 130, 50, 0.55);
  box-shadow: 0 30px 80px -36px rgba(255, 100, 0, 0.45);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--ember), var(--ember-deep));
  border-radius: 999px;
  padding: 6px 16px;
  white-space: nowrap;
}

.plan h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
}

.plan-price { margin-top: 8px; font-size: 2rem; font-weight: 600; color: #fff; }
.plan--pro .plan-price { color: #ffa35c; }
.plan-price span { font-size: 0.8rem; font-weight: 400; color: var(--text-faint); }

.plan > p { margin-top: 10px; font-size: 0.84rem; color: var(--text-dim); }

.plan-limits { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 6px; }
.plan-limits span {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  padding: 4px 9px;
}

.plan ul { list-style: none; margin-top: 20px; flex: 1; }
.plan li {
  font-size: 0.83rem;
  color: var(--text-dim);
  padding: 7px 0 7px 20px;
  position: relative;
}
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: var(--cyan);
}
.plan--pro li::before { background: var(--ember); }

.plan .btn { margin-top: 24px; width: 100%; }

/* ═══ HESAPLAYICI ═══ */
.calc {
  margin-top: clamp(56px, 9vh, 90px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  background: rgba(9, 14, 34, 0.55);
  backdrop-filter: blur(10px);
}

.calc-in { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 30px; }

.calc-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.calc-row label { font-size: 0.86rem; font-weight: 500; color: #fff; }
.calc-row output { font-size: 1.5rem; font-weight: 600; color: var(--cyan); }

.calc-label { display: block; font-size: 0.86rem; font-weight: 500; color: #fff; margin-bottom: 14px; }

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) var(--fill, 50%), rgba(140, 170, 235, 0.16) var(--fill, 50%));
  outline: none;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  box-shadow: 0 0 18px rgba(110, 168, 255, 0.8);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--blue);
  box-shadow: 0 0 18px rgba(110, 168, 255, 0.8);
  cursor: pointer;
}
input[type="range"]:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

.calc-seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.calc-seg button {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-dim);
  background: rgba(140, 170, 235, 0.05);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 11px 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.calc-seg button:hover { border-color: var(--hairline-strong); color: #fff; }
.calc-seg button.on {
  background: rgba(110, 168, 255, 0.16);
  border-color: rgba(140, 180, 255, 0.6);
  color: #fff;
  box-shadow: 0 0 24px -8px rgba(110, 168, 255, 0.6);
}

.calc-out {
  padding: clamp(28px, 4vw, 48px);
  border-left: 1px solid var(--hairline);
  background: linear-gradient(160deg, rgba(50, 110, 255, 0.1), rgba(255, 122, 26, 0.06));
  display: flex;
  flex-direction: column;
}

.calc-out-kicker {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.calc-plan { display: flex; align-items: baseline; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.calc-plan b { font-family: var(--serif); font-size: 3rem; font-weight: 600; line-height: 1; color: #fff; }
.calc-plan em { font-family: var(--sans); font-style: normal; font-size: 1.3rem; font-weight: 600; color: #ffa35c; }

.calc-note { margin-top: 10px; font-size: 0.85rem; color: var(--text-dim); }

.calc-stats { margin-top: 26px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.calc-stats > div {
  border: 1px solid var(--hairline);
  border-radius: 11px;
  padding: 16px 10px;
  text-align: center;
  background: rgba(4, 6, 15, 0.45);
}
.calc-stats b { display: block; font-size: 1.25rem; font-weight: 600; color: #fff; }
.calc-stats span { font-size: 0.64rem; line-height: 1.35; display: block; margin-top: 4px; color: var(--text-faint); }

.calc-fine { margin-top: 22px; font-size: 0.72rem; line-height: 1.6; color: var(--text-faint); flex: 1; }

.calc-cta { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; }

/* ═══ FİNAL ═══ */
.finale {
  position: relative;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px;
  overflow: hidden;
}

.finale-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1000px;
  height: 560px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(36, 90, 230, 0.3), transparent 65%);
  filter: blur(60px);
}

.finale-title {
  position: relative;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.4rem, 10vw, 8rem);
  line-height: 1;
  background: linear-gradient(180deg, #fff 25%, #b9d2ff 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.finale-sub {
  position: relative;
  margin-top: 24px;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-dim);
}

.finale-cta { position: relative; margin-top: 44px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.finale-login {
  position: relative;
  margin-top: 26px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  transition: color 0.3s ease;
}
.finale-login:hover { color: #fff; }

/* ═══ FOOTER ═══ */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--hairline);
  padding: 40px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 9px; }
.footer-brand b { display: block; font-size: 0.9rem; }
.footer-brand span { font-size: 0.72rem; color: var(--text-faint); }

.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: #fff; }

.footer-copy { font-size: 0.72rem; color: var(--text-faint); }

/* ═══ DUYARLILIK ═══ */
@media (max-width: 1020px) {
  .nav-links { display: none; }

  .atlas { height: auto; }
  .atlas-pinwrap { position: static; height: auto; padding: 110px 0 70px; }
  .atlas-stage { padding: 0; }
  .atlas-map { display: flex; flex-direction: column; gap: 0; }
  .atlas-map svg { max-height: 46vh; }
  .atlas-step {
    position: static;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    text-align: left !important;
    padding: 14px 0;
    border-top: 1px solid var(--hairline);
  }
  .atlas-step[data-step="0"] { margin-top: 26px; }
}

@media (max-width: 860px) {
  .features { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .calc-out { border-left: none; border-top: 1px solid var(--hairline); }
  .roles { border: none; gap: 14px; }
  .role { border: 1px solid var(--hairline); border-radius: 14px; }
}

@media (max-width: 640px) {
  .nav { padding-left: 16px; padding-right: 16px; }
  .nav-brand span { display: none; }
  .btn { padding: 10px 16px; font-size: 0.64rem; letter-spacing: 0.18em; }
  .btn-big { padding: 15px 28px; font-size: 0.72rem; }
  .side-text { display: none; }
  .hero-title-row { font-size: clamp(3.4rem, 17vw, 5.4rem); }
  .calc-stats { grid-template-columns: 1fr; }
  .footer { justify-content: center; text-align: center; }
}

.mobile-soon {
  width: 100%;
  max-height: 50px;
  height: 50px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.mobile-soon-list {
  max-height: 50px;
  height: 50px;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.mobile-soon-card {
  height: 44px;
  max-height: 44px;
  min-width: 120px;
  padding: 0 12px;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 8px;

  border-radius: 12px;
  border: 1px solid rgba(30, 58, 95, 0.5);
  background: rgba(13, 25, 41, 0.8);
}

.mobile-soon-icon {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  min-height: 16px !important;
  max-height: 16px !important;
  flex: 0 0 16px !important;
  color: #64748B;
  display: block;
}

.mobile-soon-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  text-align: left;
  overflow: hidden;
}

.mobile-soon-text p {
  margin: 0;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.mobile-soon-text span {
  margin-top: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.status-ok {
  color: #34D399;
}

.status-soon {
  color: #FB923C;
}

@media (max-width: 520px) {
  .mobile-soon {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .mobile-soon-list {
    height: auto;
    max-height: none;
    flex-wrap: wrap;
    overflow: visible;
  }
}

/* ═══ AZALTILMIŞ HAREKET ═══ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .intro { display: none; }

  .rv, .scrap, .atlas-step {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .hero-title-row { animation: none; opacity: 1; transform: none; }
  .cline { animation: none; stroke-dashoffset: 0; }
  .constel-stars circle { animation: none; opacity: 0.9; }
  .scroll-cue i::after, .atlas-node.on .halo { animation: none; }

  .atlas { height: auto; }
  .atlas-pinwrap { position: static; height: auto; padding: 110px 0 70px; }
  .atlas-trail { stroke-dashoffset: 0; }
  .atlas-node circle:first-child { fill: #7dd3fc; }
}
.testimonial-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 56px;
  position: relative;
  padding: 8px 0 18px;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #050812 0%, rgba(5, 8, 18, 0) 100%);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #050812 0%, rgba(5, 8, 18, 0) 100%);
}

.testimonial-track {
  display: flex;
  width: max-content;
  animation: testimonialMoveLeft 70s linear infinite;
  will-change: transform;
}

.testimonial-group {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  flex-shrink: 0;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 360px;
  min-height: 250px;
  flex: 0 0 360px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(125, 180, 255, 0.18);
  background:
    radial-gradient(circle at top left, rgba(125, 180, 255, 0.10), transparent 42%),
    rgba(8, 13, 29, 0.88);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.testimonial-card p {
  margin: 0;
  color: rgba(235, 241, 255, 0.92);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
}

.testimonial-card strong {
  color: #7dd3fc;
  font-weight: 650;
}

.testimonial-card footer {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(125, 180, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.testimonial-card footer b {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 650;
}

.testimonial-card footer span {
  color: rgba(166, 177, 205, 0.78);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes testimonialMoveLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .testimonial-marquee {
    margin-top: 36px;
  }

  .testimonial-card {
    width: 300px;
    flex-basis: 300px;
    min-height: 270px;
    padding: 22px;
  }

  .testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 48px;
  }
}