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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--c-ink);
  background-color: var(--c-void);
  /* Sade, desensiz taban: tek düzlemde çok hafif derinlik */
  background-image: linear-gradient(165deg, #050816 0%, #070c1a 38%, #060a17 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--c-cyan);
}

:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--c-accent);
  color: var(--c-void);
  font-weight: 600;
  border-radius: var(--r-xs);
  z-index: 100000;
}

.skip:focus {
  left: 0.75rem;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.muted {
  color: var(--c-ink-soft);
}

.smallcaps {
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-ink-faint);
}

/* Desen / grain kapatıldı — arka plan sade kalsın */
.noise {
  display: none;
}
