/* ============================================================
   BİLGE ATLASI — "Gece Atlası" Tasarım Sistemi
   www.bilgeatlasi.com · el yazımı, build araçsız
   ============================================================ */

/* ---------- 1 · FONTLAR (self-host, değişken ağırlık) ---------- */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin-wght.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-latin-ext-wght.woff2") format("woff2-variations");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-wght.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin-ext-wght.woff2") format("woff2-variations");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/fraunces-latin-wght-italic.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/fraunces-latin-ext-wght-italic.woff2") format("woff2-variations");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- 2 · TOKEN'LAR ---------- */
:root {
  /* Renk — gece atlası */
  --ink-950: #04070d;
  --ink-900: #070b14;
  --ink-850: #0a101d;
  --ink-800: #0d1523;
  --ink-700: #16202f;
  --ivory: #f2eee3;
  --ivory-dim: #b0ada1;
  --ivory-faint: #7e7d74;
  --gold: #e3b458;
  --gold-bright: #f0c674;
  --gold-deep: #b8893a;
  --cyan: #7fd8e8;
  --cyan-dim: #3e8a99;
  --green-wa: #22b25f;
  --danger: #e06c5f;

  --line: rgba(242, 238, 227, 0.09);
  --line-strong: rgba(242, 238, 227, 0.16);
  --gold-glow: rgba(227, 180, 88, 0.35);
  --cyan-glow: rgba(127, 216, 232, 0.3);

  /* Tipografi */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-accent: "Fraunces", Georgia, serif;

  --fs-h1: clamp(2.75rem, 6.4vw, 5.5rem);
  --fs-h2: clamp(1.9rem, 3.8vw, 3.1rem);
  --fs-h3: clamp(1.2rem, 1.8vw, 1.45rem);
  --fs-lead: clamp(1.06rem, 1.5vw, 1.28rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9rem;
  --fs-eyebrow: 0.8125rem;

  /* Boşluk */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 1.5rem;
  --sp-lg: 2.5rem;
  --sp-xl: 4rem;
  --sp-2xl: 6.5rem;
  --sp-3xl: 9rem;

  /* Yapı */
  --container: 1200px;
  --container-wide: 1360px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 999px;

  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --header-h: 76px;

  color-scheme: dark;
}

/* ---------- 3 · RESET + TABAN ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--ink-900);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  min-height: 100vh;
}

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
ul[class], ol[class] { list-style: none; padding: 0; }
address { font-style: normal; }
summary { cursor: pointer; }
::selection { background: var(--gold); color: var(--ink-900); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* İnce scrollbar */
@supports (scrollbar-width: thin) {
  html { scrollbar-width: thin; scrollbar-color: var(--ink-700) var(--ink-950); }
}

/* Film greni — tüm sayfada çok hafif doku */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  z-index: 9990;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.032;
  animation: grain 9s steps(6) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -4%); }
  60% { transform: translate(-3%, -2%); }
  80% { transform: translate(4%, 2%); }
}

/* ---------- 4 · TİPOGRAFİ ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); font-weight: 500; }
h2 { font-size: var(--fs-h2); font-weight: 500; }
h3 { font-size: var(--fs-h3); line-height: 1.25; }
h4 { font-size: 1.05rem; line-height: 1.3; }

.accent-i {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 480;
  letter-spacing: 0;
  color: var(--gold-bright);
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: var(--ivory-dim);
  max-width: 62ch;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  font-family: var(--font-display);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 2.2em;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.coords {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: var(--ivory-faint);
  text-transform: uppercase;
}

a { color: var(--gold-bright); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--ivory); }

.muted { color: var(--ivory-dim); }
.small { font-size: var(--fs-small); }

/* ---------- 5 · YERLEŞİM ---------- */
.container { width: min(var(--container), 100% - var(--gutter) * 2); margin-inline: auto; }
.container--wide { width: min(var(--container-wide), 100% - var(--gutter) * 2); }

.section { padding-block: var(--sp-2xl); position: relative; }
.section--tight { padding-block: var(--sp-xl); }
.section--roomy { padding-block: var(--sp-3xl); }

.section-head { max-width: 780px; margin-bottom: var(--sp-lg); }
.section-head > * + * { margin-top: var(--sp-sm); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

/* Harita gridi zemin deseni */
.bg-grid { position: relative; }
.bg-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 84px 84px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 78%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, #000 30%, transparent 78%);
  opacity: 0.55;
}

.grid-2 { display: grid; gap: var(--sp-md); grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; gap: var(--sp-md); grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: var(--sp-md); grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 10001;
  background: var(--gold);
  color: var(--ink-900);
  padding: 0.6em 1.1em;
  border-radius: var(--r-sm);
  font-weight: 600;
  transform: translateY(-300%);
  transition: transform 0.25s;
}
.skip-link:focus { transform: none; clip: auto; width: auto; height: auto; }

.mt-sm { margin-top: var(--sp-sm); }
.mt-md { margin-top: var(--sp-md); }
.mt-lg { margin-top: var(--sp-lg); }

.separator {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

/* ---------- 6 · HEADER ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s, border-color 0.4s, transform 0.45s var(--ease-smooth);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 11, 20, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
          backdrop-filter: blur(16px) saturate(1.5);
  border-color: var(--line);
}
.site-header.is-hidden { transform: translateY(-100%); }

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ivory);
}
.site-header__logo svg { height: 40px; width: auto; }
.logo-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.logo-word small {
  display: block;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 1px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.6vw, 1.6rem);
}
.site-nav > a:not(.btn) {
  position: relative;
  color: var(--ivory-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.4em 0.1em;
  transition: color 0.25s;
}
.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0.1em;
  height: 1px;
  background: var(--gold);
  transition: right 0.35s var(--ease-smooth);
}
.site-nav > a:not(.btn):hover,
.site-nav > a[aria-current="page"] { color: var(--ivory); }
.site-nav > a:not(.btn):hover::after,
.site-nav > a[aria-current="page"]::after { right: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  z-index: 1002;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-spring), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: calc(var(--header-h) + 4vh) var(--gutter) 12vh;
    gap: 0.4rem;
    background:
      radial-gradient(120% 90% at 85% 10%, rgba(227, 180, 88, 0.07), transparent 55%),
      rgba(5, 8, 13, 0.97);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.35s, visibility 0.35s;
  }
  .site-nav[data-open="true"] { visibility: visible; opacity: 1; }
  .site-nav > a:not(.btn) {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 7vw, 2.6rem);
    font-weight: 500;
    color: var(--ivory);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease-spring), transform 0.5s var(--ease-spring);
    transition-delay: calc(var(--i, 0) * 55ms);
  }
  .site-nav[data-open="true"] > a:not(.btn) { opacity: 1; transform: none; }
  .site-nav .btn { margin-top: var(--sp-md); opacity: 0; transition: opacity 0.5s 0.35s; }
  .site-nav[data-open="true"] .btn { opacity: 1; }
}

/* ---------- 7 · BUTONLAR ---------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink-900);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.88em 1.7em;
  border-radius: var(--r-xl);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px -8px var(--gold-glow);
  color: var(--btn-fg);
}
.btn:active { transform: translateY(0); }
.btn--primary:hover { background: var(--gold-bright); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ivory);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px -12px var(--gold-glow);
  background: rgba(227, 180, 88, 0.06);
}

.btn--whatsapp {
  --btn-bg: var(--green-wa);
  --btn-fg: #06130b;
}
.btn--whatsapp:hover {
  background: #2cc76e;
  box-shadow: 0 10px 34px -8px rgba(34, 178, 95, 0.4);
}

.btn--lg { padding: 1.05em 2.2em; font-size: 1.05rem; }
.btn--sm { padding: 0.6em 1.2em; font-size: 0.88rem; }

.btn .btn-arrow { transition: transform 0.35s var(--ease-spring); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Metin-link ok'lu */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 500;
  text-decoration: none;
  color: var(--gold-bright);
}
.arrow-link svg { transition: transform 0.3s var(--ease-spring); }
.arrow-link:hover svg { transform: translateX(5px); }

/* ---------- 8 · HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: clip;
}

#atlas-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(90% 65% at 28% 50%, rgba(7, 11, 20, 0.88) 0%, rgba(7, 11, 20, 0.4) 55%, transparent 100%),
    linear-gradient(180deg, rgba(7, 11, 20, 0.5), transparent 22%, transparent 72%, var(--ink-900) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: var(--sp-xl);
}

.hero__content { max-width: 720px; }
.hero__content > * + * { margin-top: var(--sp-md); }

.hero h1 { max-width: 14ch; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  align-items: center;
}

.hero__ticks {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 7rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}

.scroll-hint {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.6rem;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--ivory-faint);
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2.2s var(--ease-smooth) infinite;
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero istatistik şeridi */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md) var(--sp-lg);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--line);
}
.hero-stat { display: grid; gap: 2px; }
.hero-stat b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ivory);
}
.hero-stat span { font-size: 0.85rem; color: var(--ivory-faint); }

/* ---------- 9 · MARQUEE ---------- */
.marquee {
  --gap: 3.5rem;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 1.1rem;
  display: flex;
  gap: var(--gap);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  flex-shrink: 0;
  gap: var(--gap);
  min-width: 100%;
  justify-content: space-around;
  align-items: center;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-100% - var(--gap))); } }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ivory-dim);
  white-space: nowrap;
}
.marquee__item::after { content: "✦"; color: var(--gold); font-size: 0.8em; }

/* ---------- 10 · KARTLAR ---------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  padding: clamp(1.4rem, 2.4vw, 2rem);
  background: linear-gradient(165deg, var(--ink-800), var(--ink-850) 70%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.45s var(--ease-spring), border-color 0.35s, box-shadow 0.45s;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 260px at var(--mx, 50%) var(--my, 0%), rgba(227, 180, 88, 0.09), transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 180, 88, 0.35);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(227, 180, 88, 0.06);
}
.card:hover::before { opacity: 1; }

.card__coord {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--ivory-faint);
}

.card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: rgba(227, 180, 88, 0.08);
  border: 1px solid rgba(227, 180, 88, 0.22);
  color: var(--gold);
  transition: transform 0.45s var(--ease-spring), box-shadow 0.4s;
}
.card:hover .card__icon {
  transform: translateY(-3px) rotate(-4deg);
  box-shadow: 0 8px 26px -8px var(--gold-glow);
}

.card h3 a {
  color: inherit;
  text-decoration: none;
}
.card h3 a::after { content: ""; position: absolute; inset: 0; }
.card p { color: var(--ivory-dim); font-size: 0.98rem; }

.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: var(--sp-xs);
}
.tag {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
  padding: 0.32em 0.85em;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: rgba(242, 238, 227, 0.03);
}

/* ---------- 11 · PROJE / TILT KARTLARI ---------- */
.project-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--r-lg);
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease-spring);
}
.project-card:hover { color: inherit; }

.browser-frame {
  position: relative;
  border-radius: var(--r-md);
  border: 1px solid var(--line-strong);
  background: var(--ink-850);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9);
  transition: border-color 0.4s, box-shadow 0.5s;
}
.project-card:hover .browser-frame {
  border-color: rgba(227, 180, 88, 0.4);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.95), 0 0 50px -18px var(--gold-glow);
}
.browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.95rem;
  background: rgba(242, 238, 227, 0.04);
  border-bottom: 1px solid var(--line);
}
.browser-frame__dots { display: flex; gap: 5px; }
.browser-frame__dots i {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--ink-700);
}
.browser-frame__dots i:first-child { background: rgba(224, 108, 95, 0.75); }
.browser-frame__dots i:nth-child(2) { background: rgba(227, 180, 88, 0.65); }
.browser-frame__dots i:last-child { background: rgba(34, 178, 95, 0.6); }
.browser-frame__url {
  flex: 1;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--ivory-faint);
  background: rgba(4, 7, 13, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 0.28em 0.9em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-frame__shot {
  position: relative;
  aspect-ratio: 16 / 10.6;
  overflow: hidden;
}
.browser-frame__shot img {
  width: 100%;
  height: auto;
  transition: transform 6.5s var(--ease-smooth);
}
.project-card:hover .browser-frame__shot img {
  transform: translateY(calc(-1 * var(--pan, 55%)));
}

.project-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-sm);
  padding: 1.1rem 0.35rem 0;
}
.project-card__meta h3 { font-size: 1.18rem; }
.project-card__meta .tag { flex-shrink: 0; }

/* ---------- 12 · GEO BANDI (amiral gemisi) ---------- */
.geo-band {
  position: relative;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(60% 120% at 80% 50%, rgba(127, 216, 232, 0.06), transparent 60%),
    radial-gradient(50% 130% at 15% 40%, rgba(227, 180, 88, 0.07), transparent 55%),
    var(--ink-850);
  overflow: clip;
}
.geo-band__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--sp-xl);
  align-items: center;
}
@media (max-width: 900px) { .geo-band__grid { grid-template-columns: 1fr; } }

.ai-chat {
  display: grid;
  gap: 0.8rem;
  padding: 1.4rem;
  background: rgba(4, 7, 13, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.9);
}
.ai-chat__q, .ai-chat__a {
  padding: 0.85rem 1.1rem;
  border-radius: var(--r-md);
  font-size: 0.95rem;
  line-height: 1.55;
}
.ai-chat__q {
  justify-self: end;
  background: var(--ink-700);
  border-top-right-radius: 4px;
  max-width: 85%;
}
.ai-chat__a {
  justify-self: start;
  background: rgba(227, 180, 88, 0.09);
  border: 1px solid rgba(227, 180, 88, 0.25);
  border-top-left-radius: 4px;
  max-width: 92%;
}
.ai-chat__a strong { color: var(--gold-bright); }
.ai-chat__source {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 0.5em;
  font-size: 0.78rem;
  color: var(--cyan);
}
.ai-chat__label {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.ai-chat__label .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: blink 2.4s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }

/* Kontrol listesi */
.check-list { display: grid; gap: 0.7rem; }
.check-list li {
  display: flex;
  gap: 0.75em;
  align-items: flex-start;
  color: var(--ivory-dim);
}
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 0.2em;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e3b458' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 11px no-repeat,
    rgba(227, 180, 88, 0.1);
  border: 1px solid rgba(227, 180, 88, 0.3);
}

/* ---------- 13 · SÜREÇ / TIMELINE ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-md);
  counter-reset: step;
}
@media (max-width: 1100px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

.process-step {
  position: relative;
  padding: 1.5rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(242, 238, 227, 0.02), transparent);
  counter-increment: step;
  transition: border-color 0.35s, transform 0.45s var(--ease-spring);
}
.process-step:hover { border-color: rgba(227, 180, 88, 0.3); transform: translateY(-4px); }
.process-step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 0.9rem;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 0.45rem; }
.process-step p { font-size: 0.9rem; color: var(--ivory-dim); line-height: 1.55; }

/* ---------- 14 · SSS ACCORDION ---------- */
.faq__list { display: grid; gap: 0.8rem; max-width: 860px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(242, 238, 227, 0.025), transparent);
  transition: border-color 0.3s;
  overflow: hidden;
}
.faq__item[open] { border-color: rgba(227, 180, 88, 0.35); }
.faq__question {
  position: relative;
  list-style: none;
  padding: 1.15rem 3.4rem 1.15rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  line-height: 1.4;
  transition: color 0.25s;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--gold-bright); }
.faq__question::after {
  content: "";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  width: 12px; height: 12px;
  translate: 0 -50%;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 12px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 2px 12px no-repeat;
  transition: transform 0.4s var(--ease-spring);
}
.faq__item[open] .faq__question::after { transform: rotate(135deg); }
.faq__answer { padding: 0 1.35rem 1.25rem; color: var(--ivory-dim); max-width: 72ch; }
.faq__answer p + p { margin-top: 0.6em; }

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: var(--sp-lg);
}
.faq-nav a {
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ivory-dim);
  padding: 0.5em 1.1em;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.faq-nav a:hover {
  color: var(--ink-900);
  background: var(--gold);
  border-color: var(--gold);
}

/* ---------- 15 · CTA BANNER ---------- */
.cta-banner {
  position: relative;
  text-align: center;
  padding: clamp(3rem, 7vw, 5.5rem) var(--sp-md);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(227, 180, 88, 0.12), transparent 60%),
    linear-gradient(180deg, var(--ink-850), var(--ink-900));
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(60% 90% at 50% 10%, #000, transparent 75%);
          mask-image: radial-gradient(60% 90% at 50% 10%, #000, transparent 75%);
  opacity: 0.5;
}
.cta-banner > * { position: relative; }
.cta-banner h2 { max-width: 22ch; margin-inline: auto; }
.cta-banner .lead { margin-inline: auto; margin-top: var(--sp-sm); }
.cta-banner .hero__cta { justify-content: center; margin-top: var(--sp-lg); }

/* ---------- 16 · BREADCRUMB & SAYFA HERO ---------- */
.breadcrumb-nav { padding-top: calc(var(--header-h) + 1.6rem); }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  font-size: 0.85rem;
  color: var(--ivory-faint);
}
.breadcrumb li { display: inline-flex; align-items: center; gap: 0.4em; }
.breadcrumb li:not(:last-child)::after { content: "/"; opacity: 0.5; }
.breadcrumb a { color: var(--ivory-dim); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-bright); }

.page-hero { padding-block: var(--sp-lg) var(--sp-xl); }
.page-hero > * + * { margin-top: var(--sp-md); }
.page-hero h1 { max-width: 18ch; }
.last-updated { color: var(--ivory-faint); font-size: 0.85rem; }

/* ---------- 17 · İÇERİK TİPOGRAFİSİ (.prose — blog/yasal) ---------- */
.prose {
  max-width: 72ch;
  font-size: 1.05rem;
}
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.7em; }
.prose p, .prose li { color: var(--ivory-dim); }
.prose strong { color: var(--ivory); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose ul li { list-style: none; position: relative; padding-left: 0.4em; }
.prose ul li::before {
  content: "✦";
  position: absolute;
  left: -1.25em;
  color: var(--gold);
  font-size: 0.75em;
  top: 0.45em;
}
.prose ol li { list-style: decimal; }
.prose ol li::marker { color: var(--gold); font-weight: 600; }
.prose blockquote {
  border-left: 2px solid var(--gold);
  padding: 0.4em 0 0.4em 1.4em;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.18em;
  color: var(--ivory);
}
.prose a { color: var(--gold-bright); }
.prose img { border-radius: var(--r-md); border: 1px solid var(--line); }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.prose th, .prose td {
  text-align: left;
  padding: 0.7em 0.9em;
  border: 1px solid var(--line);
}
.prose th {
  font-family: var(--font-display);
  font-weight: 600;
  background: rgba(242, 238, 227, 0.04);
  color: var(--ivory);
}
.prose .table-scroll { overflow-x: auto; }

/* Yazı meta satırı */
.post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em 1.2em;
  font-size: 0.88rem;
  color: var(--ivory-faint);
}
.post-meta b { color: var(--ivory-dim); font-weight: 500; }

/* Blog kartı */
.post-card { display: flex; flex-direction: column; gap: 1rem; text-decoration: none; color: inherit; }
.post-card__media {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16/9;
  background: var(--ink-850);
  transition: border-color 0.35s, transform 0.5s var(--ease-spring);
}
.post-card__media svg, .post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card:hover .post-card__media {
  border-color: rgba(227, 180, 88, 0.4);
  transform: translateY(-5px);
}
.post-card h3 { font-size: 1.15rem; transition: color 0.25s; }
.post-card:hover h3 { color: var(--gold-bright); }
.post-card p { color: var(--ivory-dim); font-size: 0.95rem; }

/* ---------- 18 · FORM ---------- */
.form-grid { display: grid; gap: var(--sp-md); grid-template-columns: repeat(2, 1fr); }
.form-grid .form-field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-field { display: grid; gap: 0.45rem; }
.form-field label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
}
.form-field label b { color: var(--gold); font-weight: 600; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85em 1.1em;
  background: rgba(4, 7, 13, 0.6);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  color: var(--ivory);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(227, 180, 88, 0.15);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b0ada1' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9em center; background-size: 16px; }
.form-consent {
  display: flex;
  gap: 0.7em;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--ivory-dim);
}
.form-consent input { width: 17px; height: 17px; margin-top: 0.2em; accent-color: var(--gold); }
.form-note { font-size: 0.85rem; color: var(--ivory-faint); }

/* ---------- 19 · FOOTER ---------- */
.site-footer {
  margin-top: var(--sp-2xl);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(70% 100% at 50% 100%, rgba(227, 180, 88, 0.05), transparent 60%),
    var(--ink-950);
  padding-top: var(--sp-xl);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: var(--sp-lg);
  padding-bottom: var(--sp-xl);
}
@media (max-width: 980px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .site-footer__grid { grid-template-columns: 1fr; } }

.site-footer h3 { font-size: 1.1rem; margin-bottom: 0.9rem; }
.site-footer h4 {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}
.site-footer p, .site-footer li { font-size: 0.93rem; color: var(--ivory-dim); }
.site-footer ul { display: grid; gap: 0.55rem; list-style: none; padding: 0; margin: 0; }
.site-footer a { color: var(--ivory-dim); text-decoration: none; transition: color 0.25s; }
.site-footer a:hover { color: var(--gold-bright); }
.site-footer address { display: grid; gap: 0.55rem; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem var(--sp-md);
  padding-block: 1.3rem;
  padding-right: 84px; /* WhatsApp float ile çakışmasın */
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ivory-faint);
}

/* ---------- 20 · WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 900;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-wa);
  color: #06130b;
  box-shadow: 0 12px 34px -8px rgba(34, 178, 95, 0.55);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 44px -8px rgba(34, 178, 95, 0.65);
  color: #06130b;
}
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(34, 178, 95, 0.7);
  animation: waPulse 2.6s var(--ease-smooth) infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.9; }
  70%, 100% { transform: scale(1.65); opacity: 0; }
}

/* ---------- 21 · PRELOADER ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--ink-950);
  transition: opacity 0.7s var(--ease-smooth), visibility 0.7s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__box {
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  text-align: center;
}
.preloader__mark { width: 74px; height: 74px; color: var(--gold); }
.preloader__mark .draw {
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: markDraw 1.6s var(--ease-smooth) forwards;
}
@keyframes markDraw { to { stroke-dashoffset: 0; } }
.preloader__coords {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.preloader__coords b { color: var(--gold); font-weight: 600; }
.preloader__bar {
  width: 190px;
  height: 1px;
  background: var(--ink-700);
  overflow: hidden;
}
.preloader__bar i {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform: scaleX(var(--p, 0));
  transform-origin: left;
  transition: transform 0.3s;
}

/* ---------- 22 · CUSTOM CURSOR (yalnız hassas imleç) ---------- */
@media (pointer: fine) {
  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    z-index: 10010;
    pointer-events: none;
    border-radius: 50%;
    translate: -50% -50%;
  }
  .cursor-dot {
    width: 6px; height: 6px;
    background: var(--gold);
  }
  .cursor-ring {
    width: 38px; height: 38px;
    border: 1px solid rgba(227, 180, 88, 0.45);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
  }
  body.cursor-on-link .cursor-ring {
    width: 58px; height: 58px;
    border-color: var(--gold);
    background: rgba(227, 180, 88, 0.08);
  }
  body.cursor-active .cursor-dot, body.cursor-active .cursor-ring { opacity: 1; }
  .cursor-dot, .cursor-ring { opacity: 0; }
}

/* ---------- 23 · REVEAL ANİMASYON SİSTEMİ ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s var(--ease-spring),
    transform 0.9s var(--ease-spring);
  transition-delay: calc(var(--d, 0) * 90ms);
  will-change: opacity, transform;
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ---------- 24 · 3D FALLBACK POSTERİ ---------- */
.atlas-poster {
  position: absolute;
  inset: 0;
  display: none;
  background:
    radial-gradient(52% 68% at 72% 46%, rgba(227, 180, 88, 0.14), transparent 62%),
    radial-gradient(40% 52% at 74% 44%, rgba(127, 216, 232, 0.1), transparent 65%),
    var(--ink-900);
}
.atlas-poster svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.no-webgl #atlas-canvas { display: none; }
.no-webgl .atlas-poster { display: block; }

/* ---------- 25 · YARDIMCILAR ---------- */
.text-center { text-align: center; }
.gold { color: var(--gold-bright); }
.cyan { color: var(--cyan); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  padding: 1.8rem 1.4rem;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(242, 238, 227, 0.02), transparent);
}
.stat-cell:last-child { border-right: 0; }
@media (max-width: 900px) {
  .stat-cell:nth-child(2n) { border-right: 0; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
.stat-cell b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--gold-bright);
  line-height: 1.1;
}
.stat-cell span { font-size: 0.88rem; color: var(--ivory-dim); }

/* İki kolonlu medya bölümü */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: var(--sp-lg); } }

/* Hizmet detay listeleri */
.feature-list { display: grid; gap: 1rem; }
.feature-list li {
  display: flex;
  gap: 1em;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(242, 238, 227, 0.02), transparent);
}
.feature-list b { display: block; font-family: var(--font-display); font-weight: 600; color: var(--ivory); }
.feature-list p { font-size: 0.92rem; color: var(--ivory-dim); margin-top: 0.2em; }
.feature-list .fl-ico { flex-shrink: 0; color: var(--gold); width: 26px; height: 26px; margin-top: 0.15em; }

/* ---------- 25a · KARŞILAŞTIRMA TABLOSU (Neden Biz) ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.vs-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.96rem;
}
.vs-table th, .vs-table td {
  padding: 1em 1.15em;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}
.vs-table thead th {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  background: rgba(242, 238, 227, 0.03);
}
.vs-table thead th.vs-us {
  color: var(--gold-bright);
  background: rgba(227, 180, 88, 0.07);
  border-bottom-color: rgba(227, 180, 88, 0.35);
}
.vs-table tbody th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ivory);
  white-space: nowrap;
  background: rgba(242, 238, 227, 0.02);
}
.vs-table td.no { color: var(--ivory-faint); }
.vs-table td.no::before { content: "✗"; color: var(--danger); margin-right: 0.6em; }
.vs-table td.yes {
  color: var(--ivory);
  background: rgba(227, 180, 88, 0.05);
}
.vs-table td.yes::before { content: "✓"; color: var(--gold); font-weight: 700; margin-right: 0.6em; }

/* ---------- 25c · FOTOĞRAF KARTI (stok/stüdyo görselleri) ---------- */
.photo-card {
  position: relative;
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 70px -35px rgba(0, 0, 0, 0.9);
}
.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(185deg, rgba(7, 11, 20, 0.05) 45%, rgba(7, 11, 20, 0.6)),
    radial-gradient(90% 70% at 12% 8%, rgba(227, 180, 88, 0.12), transparent 55%);
}
.photo-card figcaption {
  position: absolute;
  left: 1.1rem;
  bottom: 0.9rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.photo-card figcaption::before { content: "⌖ "; color: var(--gold); }

/* ---------- 25b · PUSULA (K & G — Kuzey & Güney) ---------- */
.compass {
  width: 78px;
  height: 78px;
  color: var(--ivory-dim);
  overflow: visible;
}
.compass--lg { width: 190px; height: 190px; display: inline-block; }
.compass__pt {
  fill: var(--ivory-faint);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-anchor: middle;
  letter-spacing: 0.05em;
}
.compass__pt--main {
  fill: var(--gold-bright);
  font-size: 14px;
  font-weight: 700;
}
.compass__needle {
  transform-origin: 60px 60px;
  animation: compassWobble 7s ease-in-out infinite;
}
@keyframes compassWobble {
  0%, 100% { transform: rotate(-7deg); }
  50% { transform: rotate(7deg); }
}
.hero__ticks .compass { opacity: 0.9; }
@media (max-width: 760px) { .hero__ticks { display: none; } }

.kg-mark {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: var(--ivory-faint);
  cursor: help;
}
.kg-mark span { color: var(--gold); font-weight: 700; }

/* ---------- 25d · ATLAS KONSOLU (⌘K komut paleti) ---------- */
.cmdk-overlay {
  position: fixed;
  inset: 0;
  z-index: 10005;
  display: grid;
  place-items: start center;
  padding: 12vh var(--gutter) 4vh;
  background: rgba(4, 7, 13, 0.72);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.cmdk-overlay.open { opacity: 1; visibility: visible; }
.cmdk {
  width: min(640px, 100%);
  background: linear-gradient(180deg, var(--ink-800), var(--ink-850));
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: 0 50px 140px -30px rgba(0, 0, 0, 0.95), 0 0 60px -30px var(--gold-glow);
  overflow: hidden;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.3s var(--ease-spring);
}
.cmdk-overlay.open .cmdk { transform: none; }
.cmdk__head { display: flex; align-items: center; gap: 0.7rem; padding: 0 1.1rem; border-bottom: 1px solid var(--line); }
.cmdk__head svg { color: var(--gold); flex-shrink: 0; }
.cmdk__input {
  flex: 1;
  padding: 1.05em 0;
  background: transparent;
  border: 0;
  color: var(--ivory);
  font-size: 1.02rem;
}
.cmdk__input:focus { outline: none; }
.cmdk__list { max-height: min(52vh, 430px); overflow: auto; padding: 0.5rem; }
.cmdk__group {
  padding: 0.7em 0.9em 0.35em;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.cmdk__item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72em 0.9em;
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--ivory-dim);
}
.cmdk__item b { color: var(--ivory); font-family: var(--font-display); font-weight: 500; }
.cmdk__item small { font-size: 0.8rem; color: var(--ivory-faint); white-space: nowrap; }
.cmdk__item.active { background: rgba(227, 180, 88, 0.12); }
.cmdk__item.active b { color: var(--gold-bright); }
.cmdk__empty { padding: 1.4rem; text-align: center; color: var(--ivory-faint); }
.cmdk__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  padding: 0.65rem 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--ivory-faint);
  font-size: 0.74rem;
}
kbd.chip {
  display: inline-block;
  padding: 0.1em 0.5em;
  border: 1px solid var(--line-strong);
  border-bottom-width: 2px;
  border-radius: 6px;
  background: rgba(242, 238, 227, 0.05);
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--ivory-dim);
}
.cmdk-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.45em 0.85em;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-xl);
  color: var(--ivory-dim);
  font-family: var(--font-display);
  font-size: 0.8rem;
  transition: border-color 0.25s, color 0.25s;
}
.cmdk-btn:hover { border-color: var(--gold); color: var(--ivory); }
@media (max-width: 980px) { .cmdk-btn { display: none; } }

/* ---------- 25e · KAYDIRMA İLERLEMESİ + TOAST + AI YAZIYOR ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10002;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  box-shadow: 0 0 12px var(--gold-glow);
  pointer-events: none;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 5.6rem;
  z-index: 10006;
  transform: translate(-50%, 12px);
  padding: 0.75em 1.35em;
  border-radius: var(--r-xl);
  background: var(--ink-800);
  border: 1px solid rgba(227, 180, 88, 0.45);
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 0.92rem;
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.9), 0 0 30px -12px var(--gold-glow);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s var(--ease-spring), visibility 0.3s;
  max-width: min(92vw, 480px);
  text-align: center;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.ai-typing { display: inline-flex; gap: 5px; padding: 0.2em 0; }
.ai-typing i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: aiDot 1s infinite;
}
.ai-typing i:nth-child(2) { animation-delay: 0.16s; }
.ai-typing i:nth-child(3) { animation-delay: 0.32s; }
@keyframes aiDot { 0%, 60%, 100% { opacity: 0.25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.ai-answer-in { animation: aiAnswer 0.5s var(--ease-spring); }
@keyframes aiAnswer { from { opacity: 0; transform: translateY(6px); } }

/* Küre sürükleme */
.hero.is-dragging { user-select: none; -webkit-user-select: none; }

/* Custom cursor aktifken native imleci gizle (form alanları hariç) */
@media (pointer: fine) {
  body.cursor-active, body.cursor-active a, body.cursor-active button,
  body.cursor-active summary, body.cursor-active .btn { cursor: none; }
  body.cursor-active input, body.cursor-active textarea, body.cursor-active select { cursor: auto; }
}

/* Sayfalar arası yumuşak geçiş (Chromium — progressive enhancement) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation-duration: 0.22s; }
::view-transition-new(root) { animation-duration: 0.3s; }

/* ---------- 26 · PRINT ---------- */
@media print {
  body::after, .whatsapp-float, .preloader, #atlas-canvas,
  .cursor-dot, .cursor-ring, .site-header, .scroll-hint { display: none !important; }
  body { background: #fff; color: #111; }
  a { color: #114488; }
}

/* ---------- 27 · HAREKET AZALTMA ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .reduced-motion #atlas-canvas { display: none; }
  .reduced-motion .atlas-poster { display: block; }
}
