/* ===========================================================================
   LURO MEDIA — tasarım sistemi
   Derleme adımı yoktur; bu dosya doğrudan yüklenir.
   Renkler "R G B" üçlüsü olarak CSS değişkenlerinde tutulur; böylece
   rgb(var(--luro-primary) / 0.2) yazılabilir ve panelden değiştirilebilir.
   =========================================================================== */

/* --- Token'lar (yedek değerler) -------------------------------------------
   Aktif tema <head> içine satır içi olarak basılır ve bunları ezer. */
:root {
  --luro-primary: 139 92 246;
  --luro-secondary: 124 58 237;
  --luro-accent: 56 189 248;

  --luro-bg: 8 8 11;
  --luro-bg-soft: 13 13 17;
  --luro-bg-elevated: 18 18 24;

  --luro-text: 244 244 245;
  --luro-text-muted: 161 161 170;
  --luro-border: 39 39 46;

  --luro-gradient-from: 139 92 246;
  --luro-gradient-via: 99 102 241;
  --luro-gradient-to: 56 189 248;

  --luro-success: 34 197 94;
  --luro-danger: 244 63 94;
  --luro-warning: 250 204 21;

  --luro-glow: 1;
  --luro-radius: 14px;

  --luro-font-heading: 'Sora';
  --luro-font-body: 'Inter';
  --luro-font-stack: var(--luro-font-body), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --luro-font-display: var(--luro-font-heading), var(--luro-font-stack);
  --luro-font-mono: ui-monospace, 'SFMono-Regular', 'Cascadia Code', monospace;

  --header-h: 72px;
  --container: 1360px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

:root[data-theme='light'] {
  --luro-bg: 250 250 252;
  --luro-bg-soft: 244 244 248;
  --luro-bg-elevated: 255 255 255;
  --luro-text: 12 12 16;
  --luro-text-muted: 82 82 91;
  --luro-border: 226 226 234;
  --luro-glow: 0.45;
}

/* --- Sıfırlama ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

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

body {
  font-family: var(--luro-font-stack);
  background: rgb(var(--luro-bg));
  color: rgb(var(--luro-text));
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
}

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

/* Satır içi ikonlar metinle birlikte ölçeklenir ve asla kabını doldurmaz.
   Özel bağlamlar (.btn svg, .drawer__link svg …) bunu ezer. */
.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4, h5 {
  font-family: var(--luro-font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-wrap: balance;
}

::selection { background: rgb(var(--luro-primary) / 0.32); }

:focus-visible {
  outline: 2px solid rgb(var(--luro-primary));
  outline-offset: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: rgb(var(--luro-bg)); }
::-webkit-scrollbar-thumb {
  background: rgb(var(--luro-border));
  border-radius: 999px;
  border: 2px solid rgb(var(--luro-bg));
}
::-webkit-scrollbar-thumb:hover { background: rgb(var(--luro-primary) / 0.6); }

/* --- Yerleşim ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px) { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.section { position: relative; padding-block: 5rem; }
@media (min-width: 640px) { .section { padding-block: 6rem; } }
@media (min-width: 1024px) { .section { padding-block: 8rem; } }

.section--tight { padding-block: 3.5rem; }
.section--flush-top { padding-top: 0; }

.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.stack > * + * { margin-top: 1rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.relative { position: relative; }
.hidden { display: none; }

/* --- Tipografi ------------------------------------------------------------ */
.display-xl { font-size: clamp(3.5rem, 13vw, 9rem);   line-height: 0.94; letter-spacing: -0.045em; }
.display-lg { font-size: clamp(3rem, 10vw, 6.5rem);   line-height: 0.98; letter-spacing: -0.04em; }
.display-md { font-size: clamp(2.5rem, 8vw, 4.5rem);  line-height: 1.02; letter-spacing: -0.035em; }
.display-sm { font-size: clamp(2rem, 6vw, 3rem);      line-height: 1.05; letter-spacing: -0.03em; }

.h-lg { font-size: clamp(1.5rem, 3vw, 2rem); }
.h-md { font-size: 1.25rem; }
.lead { font-size: clamp(1rem, 2vw, 1.125rem); color: rgb(var(--luro-text-muted)); text-wrap: pretty; }
.muted { color: rgb(var(--luro-text-muted)); }
.faint { color: rgb(var(--luro-text-muted) / 0.7); }
.small { font-size: 0.875rem; }
.tiny { font-size: 0.75rem; }
.mono { font-family: var(--luro-font-mono); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgb(var(--luro-text-muted));
}
.eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: rgb(var(--luro-primary) / 0.7);
}
.eyebrow--center { justify-content: center; }

.gradient-text {
  background: linear-gradient(120deg,
    rgb(var(--luro-gradient-from)),
    rgb(var(--luro-gradient-via)),
    rgb(var(--luro-gradient-to)));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-pan 8s ease infinite;
}

@keyframes gradient-pan {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Yüzeyler ------------------------------------------------------------- */
.glass {
  position: relative;
  border-radius: var(--luro-radius);
  border: 1px solid rgb(255 255 255 / 0.07);
  background: rgb(255 255 255 / 0.025);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 0 rgb(255 255 255 / 0.06), 0 24px 60px -28px rgb(0 0 0 / 0.85);
}

:root[data-theme='light'] .glass {
  border-color: rgb(0 0 0 / 0.07);
  background: rgb(255 255 255 / 0.7);
  box-shadow: 0 12px 40px -20px rgb(0 0 0 / 0.15);
}

/* Kartın üst kenarında gradient bir çizgi */
.glass--edge::before {
  content: '';
  position: absolute;
  inset-inline: 1.5rem;
  top: 0;
  height: 1px;
  opacity: 0.7;
  background: linear-gradient(90deg, transparent, rgb(var(--luro-primary) / 0.9), transparent);
}

.glass--hover {
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.glass--hover:hover {
  transform: translateY(-4px);
  border-color: rgb(255 255 255 / 0.14);
  box-shadow:
    inset 0 1px 0 0 rgb(255 255 255 / 0.09),
    0 40px 80px -32px rgb(0 0 0 / 0.9),
    0 0 calc(70px * var(--luro-glow)) rgb(var(--luro-primary) / calc(0.16 * var(--luro-glow)));
}

.card { padding: 1.75rem; }
@media (min-width: 640px) { .card { padding: 2rem; } }

.panel {
  border: 1px solid rgb(var(--luro-border));
  border-radius: var(--luro-radius);
  background: rgb(var(--luro-bg-soft) / 0.4);
}

.divider {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgb(var(--luro-border)), rgb(var(--luro-primary) / 0.4), rgb(var(--luro-border)), transparent);
}

/* --- Butonlar ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.3s var(--ease);
  will-change: transform;
}

.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

.btn--primary {
  background: linear-gradient(120deg, rgb(var(--luro-gradient-from)), rgb(var(--luro-gradient-via)), rgb(var(--luro-gradient-to)));
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 0 calc(24px * var(--luro-glow)) rgb(var(--luro-primary) / calc(0.3 * var(--luro-glow)));
}
.btn--primary:hover {
  background-position: 100% 50%;
  filter: brightness(1.1);
  box-shadow: 0 0 calc(60px * var(--luro-glow)) rgb(var(--luro-primary) / calc(0.35 * var(--luro-glow)));
}

.btn--secondary {
  border: 1px solid rgb(255 255 255 / 0.12);
  background: rgb(255 255 255 / 0.04);
  backdrop-filter: blur(12px);
}
.btn--secondary:hover {
  border-color: rgb(255 255 255 / 0.25);
  background: rgb(255 255 255 / 0.08);
}
:root[data-theme='light'] .btn--secondary { border-color: rgb(0 0 0 / 0.12); background: rgb(0 0 0 / 0.03); }

.btn--ghost { color: rgb(var(--luro-text-muted)); }
.btn--ghost:hover { background: rgb(255 255 255 / 0.06); color: rgb(var(--luro-text)); }

.btn--danger { background: rgb(var(--luro-danger) / 0.9); color: #fff; }
.btn--danger:hover { background: rgb(var(--luro-danger)); }

.btn--lg { min-height: 56px; padding: 0 2rem; font-size: 1rem; }
.btn--sm { min-height: 36px; padding: 0 1rem; font-size: 0.875rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.5; pointer-events: none; }

.btn--icon {
  width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(255 255 255 / 0.03);
  color: rgb(var(--luro-text-muted));
}
.btn--icon:hover { border-color: rgb(var(--luro-primary) / 0.4); color: rgb(var(--luro-primary)); transform: translateY(-2px); }

/* --- Arka plan efektleri --------------------------------------------------- */
.fx { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
}
.aurora--1 {
  left: -15%; top: -25%;
  width: 62vw; height: 62vw; max-width: 820px; max-height: 820px;
  background: radial-gradient(circle, rgb(var(--luro-primary) / 0.36), transparent 68%);
  animation: aurora-drift 22s ease-in-out infinite;
}
.aurora--2 {
  right: -12%; top: 8%;
  width: 50vw; height: 50vw; max-width: 680px; max-height: 680px;
  background: radial-gradient(circle, rgb(var(--luro-accent) / 0.26), transparent 70%);
  animation: aurora-drift 22s ease-in-out -7s infinite;
}
.aurora--3 {
  left: 28%; bottom: -30%;
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgb(var(--luro-secondary) / 0.24), transparent 70%);
  animation: aurora-drift 22s ease-in-out -14s infinite;
}

@keyframes aurora-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  33% { transform: translate3d(6%, -8%, 0) scale(1.15); }
  66% { transform: translate3d(-7%, 6%, 0) scale(0.92); }
}

/* İnce ızgara, kenarlara doğru soluyor */
.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgb(var(--luro-border) / 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgb(var(--luro-border) / 0.6) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 78%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 78%);
}

/* Film grenli doku — ağ isteği yok, satır içi SVG */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* İmleci izleyen ışık */
#cursor-glow {
  position: fixed;
  left: 0; top: 0;
  width: 520px; height: 520px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  filter: blur(90px);
  transition: opacity 0.5s;
  background: radial-gradient(circle, rgb(var(--luro-primary) / calc(0.14 * var(--luro-glow))), transparent 62%);
}

/* --- Başlık (header) ------------------------------------------------------- */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s;
}
.header.is-scrolled {
  background: rgb(var(--luro-bg) / 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgb(255 255 255 / 0.07);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
}

.logo { display: inline-flex; align-items: center; gap: 0.625rem; }
.logo__mark { width: 32px; height: 32px; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-family: var(--luro-font-display); font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.02em; }
.logo__name span { color: rgb(var(--luro-primary)); }
.logo__sub { margin-top: 2px; font-size: 0.5rem; text-transform: uppercase; letter-spacing: 0.32em; color: rgb(var(--luro-text-muted) / 0.7); }

.nav { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav { display: flex; } }

.nav__link {
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--luro-text-muted));
  transition: color 0.3s;
}
.nav__link::after {
  content: '';
  position: absolute;
  inset-inline: 1rem;
  bottom: 0.25rem;
  height: 1px;
  background: linear-gradient(90deg, rgb(var(--luro-gradient-from)), rgb(var(--luro-gradient-to)));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: rgb(var(--luro-text)); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  left: 0; top: 100%;
  min-width: 16rem;
  padding-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: all 0.3s var(--ease);
}
.nav__item:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown-inner {
  padding: 0.375rem;
  border-radius: var(--luro-radius);
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(var(--luro-bg-elevated) / 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px -20px rgb(0 0 0 / 0.7);
}
.nav__dropdown a {
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: calc(var(--luro-radius) * 0.6);
  font-size: 0.875rem;
  color: rgb(var(--luro-text-muted));
  transition: all 0.2s;
}
.nav__dropdown a:hover { background: rgb(255 255 255 / 0.06); color: rgb(var(--luro-text)); }

.header__actions { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .header__actions { gap: 0.75rem; } }
.header__cta { display: none; }
@media (min-width: 640px) { .header__cta { display: inline-flex; } }

.menu-toggle { display: inline-flex; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* Dil seçici */
.lang { position: relative; }
.lang__button {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-height: 40px;
  padding: 0 0.875rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(255 255 255 / 0.04);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(var(--luro-text-muted));
  text-transform: uppercase;
  transition: all 0.3s;
}
.lang__button:hover, .lang.is-open .lang__button { border-color: rgb(255 255 255 / 0.25); color: rgb(var(--luro-text)); }
.lang__chevron { transition: transform 0.3s; }
.lang.is-open .lang__chevron { transform: rotate(180deg); }

.lang__menu {
  position: absolute;
  right: 0; top: calc(100% + 0.5rem);
  z-index: 60;
  min-width: 13rem;
  padding: 0.375rem;
  border-radius: var(--luro-radius);
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(var(--luro-bg-elevated) / 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px -20px rgb(0 0 0 / 0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.97);
  transition: all 0.2s var(--ease);
}
.lang.is-open .lang__menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.lang__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border-radius: calc(var(--luro-radius) * 0.6);
  font-size: 0.875rem;
  color: rgb(var(--luro-text-muted));
  transition: all 0.2s;
}
.lang__option:hover { background: rgb(255 255 255 / 0.06); color: rgb(var(--luro-text)); }
.lang__option.is-current { background: rgb(var(--luro-primary) / 0.12); color: rgb(var(--luro-text)); }

/* Mobil menü */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.drawer.is-open { visibility: visible; opacity: 1; }
.drawer__backdrop { position: absolute; inset: 0; background: rgb(var(--luro-bg) / 0.95); backdrop-filter: blur(20px); }
.drawer__panel {
  position: absolute;
  inset-block: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 26rem;
  border-left: 1px solid rgb(255 255 255 / 0.07);
  background: rgb(var(--luro-bg-soft) / 0.98);
  transform: translateX(100%);
  transition: transform 0.42s var(--ease);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); padding-inline: 1.25rem; border-bottom: 1px solid rgb(255 255 255 / 0.07); }
.drawer__body { flex: 1; overflow-y: auto; padding: 2rem 1.25rem; }
.drawer__foot { padding: 1.25rem; border-top: 1px solid rgb(255 255 255 / 0.07); }
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  border-bottom: 1px solid rgb(var(--luro-border) / 0.6);
  font-family: var(--luro-font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
.drawer__link:hover { color: rgb(var(--luro-primary)); }
/* Bağlantı 1.5rem; ikon em ile ölçeklenirse çok büyür. */
.drawer__link svg { width: 1.25rem; height: 1.25rem; color: rgb(var(--luro-text-muted) / 0.7); }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  padding-top: 4rem;
  padding-bottom: 6rem;
  overflow: hidden;
}
.hero__grid { position: relative; z-index: 10; display: grid; gap: 3rem; align-items: center; }
/* Görsel yüklendiyse iki sütun; yüklenmediyse metin tam genişlik kalır. */
@media (min-width: 1024px) {
  .hero__grid--split { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
  .hero__grid--split .hero__inner { max-width: none; }
}

.hero__visual {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--luro-radius) * 2);
  border: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(var(--luro-bg-elevated));
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 100px -40px rgb(0 0 0 / 0.9),
              0 0 calc(90px * var(--luro-glow)) rgb(var(--luro-primary) / calc(0.18 * var(--luro-glow)));
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; }
.hero__visual-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(160deg, rgb(var(--luro-primary) / 0.18), transparent 45%),
              linear-gradient(to top, rgb(var(--luro-bg) / 0.55), transparent 55%);
}
@media (max-width: 1023px) {
  .hero__visual { aspect-ratio: 16 / 10; max-width: 34rem; margin-inline: auto; }
}

.hero__inner { position: relative; z-index: 10; max-width: 56rem; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(255 255 255 / 0.04);
  backdrop-filter: blur(12px);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgb(var(--luro-text-muted));
}
.hero__badge-sep { width: 1px; height: 0.75rem; background: rgb(var(--luro-border)); }
.hero__title { margin-top: 2rem; }
@media (min-width: 640px) { .hero__title { margin-top: 2.5rem; } }
.hero__desc { margin-top: 1.75rem; max-width: 36rem; }
.hero__actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .hero__actions { flex-direction: row; align-items: center; gap: 1rem; margin-top: 3rem; } }

/* Satır satır açılan başlık */
.line-mask { display: block; overflow: hidden; padding-bottom: 0.08em; }
.line-mask > span { display: block; transform: translateY(110%); opacity: 0; }
.is-ready .line-mask > span { animation: line-in 1.1s var(--ease) forwards; }
.is-ready .line-mask:nth-child(1) > span { animation-delay: 0.15s; }
.is-ready .line-mask:nth-child(2) > span { animation-delay: 0.24s; }
.is-ready .line-mask:nth-child(3) > span { animation-delay: 0.33s; }
.is-ready .line-mask:nth-child(4) > span { animation-delay: 0.42s; }

@keyframes line-in { to { transform: translateY(0); opacity: 1; } }

/* --- Marquee -------------------------------------------------------------- */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee var(--marquee-duration, 40s) linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 2.5rem; padding-right: 2.5rem; flex-shrink: 0; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero__marquee {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 10;
  padding-block: 1rem;
  border-top: 1px solid rgb(255 255 255 / 0.06);
  background: rgb(var(--luro-bg) / 0.4);
  backdrop-filter: blur(4px);
}
.marquee__item { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.24em; color: rgb(var(--luro-text-muted) / 0.7); white-space: nowrap; }
.marquee__dot { width: 4px; height: 4px; border-radius: 50%; background: rgb(var(--luro-primary) / 0.6); }
.marquee__word { font-family: var(--luro-font-display); font-size: clamp(2rem, 6vw, 3.75rem); font-weight: 600; letter-spacing: -0.03em; color: rgb(255 255 255 / 0.07); white-space: nowrap; }

/* --- İstatistikler --------------------------------------------------------- */
.stats {
  border-block: 1px solid rgb(255 255 255 / 0.06);
  background: rgb(var(--luro-bg-soft) / 0.4);
  padding-block: 3.5rem;
}
.stats__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
@media (min-width: 1024px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__value { font-family: var(--luro-font-display); font-size: clamp(2.25rem, 5vw, 3rem); font-weight: 600; line-height: 1; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.stat__label { margin-top: 0.75rem; font-size: 0.875rem; color: rgb(var(--luro-text-muted)); }
.stat__bar { display: block; height: 1px; width: 100%; margin-top: 1.25rem; transform: scaleX(0.25); transform-origin: left; transition: transform 0.7s var(--ease); background: linear-gradient(90deg, rgb(var(--luro-gradient-from)), rgb(var(--luro-gradient-to))); }
.stat:hover .stat__bar { transform: scaleX(1); }

/* --- Bölüm başlıkları ------------------------------------------------------ */
.section-head { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.section-head__text { max-width: 42rem; }
.section-head__title { margin-top: 1rem; font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.05; }
.section-head__desc { margin-top: 1.25rem; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head--center .section-head__text { margin-inline: auto; }

/* --- Hizmet kartları ------------------------------------------------------- */
.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem; height: 3rem;
  border-radius: calc(var(--luro-radius) * 0.8);
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(255 255 255 / 0.04);
  color: rgb(var(--luro-primary));
  transition: all 0.5s var(--ease);
}
.service-card:hover .service-card__icon { border-color: rgb(var(--luro-primary) / 0.4); background: rgb(var(--luro-primary) / 0.1); }
.service-card__title { margin-top: 1.5rem; font-size: 1.125rem; font-weight: 600; }
.service-card__desc { margin-top: 0.75rem; flex: 1; font-size: 0.875rem; color: rgb(var(--luro-text-muted)); }
.service-card__more { display: inline-flex; align-items: center; gap: 0.375rem; margin-top: 1.75rem; font-size: 0.875rem; font-weight: 500; color: rgb(var(--luro-primary)); }
.service-card:hover .service-card__more svg { transform: translate(2px, -2px); }
.service-card__more svg { transition: transform 0.3s; }

/* Hizmet listesi (hizmetler sayfası) */
.service-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-block: 2.25rem;
  border-bottom: 1px solid rgb(var(--luro-border));
}
@media (min-width: 640px) { .service-row { flex-direction: row; align-items: center; gap: 2.5rem; padding-block: 2.75rem; } }
.service-row:first-child { border-top: 1px solid rgb(var(--luro-border)); }
.service-row__num { font-family: var(--luro-font-mono); font-size: 0.75rem; color: rgb(var(--luro-text-muted) / 0.7); }
@media (min-width: 640px) { .service-row__num { width: 3rem; } }
.service-row__body { flex: 1; min-width: 0; }
.service-row__title { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; transition: color 0.3s; }
@media (min-width: 640px) { .service-row__title { font-size: 1.5rem; } }
.service-row:hover .service-row__title { color: rgb(var(--luro-primary)); }
.service-row__desc { margin-top: 0.5rem; max-width: 42rem; font-size: 0.875rem; color: rgb(var(--luro-text-muted)); }
.service-row__arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgb(var(--luro-border));
  color: rgb(var(--luro-text-muted));
  transition: all 0.5s var(--ease);
}
.service-row:hover .service-row__arrow { border-color: rgb(var(--luro-primary) / 0.5); background: rgb(var(--luro-primary) / 0.1); color: rgb(var(--luro-primary)); }

/* --- Proje kartları -------------------------------------------------------- */
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--luro-radius);
  border: 1px solid rgb(255 255 255 / 0.07);
  background: rgb(var(--luro-bg-elevated));
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease);
  height: 100%;
}
.project-card:hover { transform: translateY(-6px); border-color: rgb(255 255 255 / 0.2); }
.project-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.project-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.project-card:hover .project-card__media img { transform: scale(1.06); }
.project-card__placeholder { position: absolute; inset: 0; opacity: 0.25; background: linear-gradient(120deg, rgb(var(--luro-gradient-from)), rgb(var(--luro-gradient-via)), rgb(var(--luro-gradient-to))); }
.project-card__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgb(var(--luro-bg)), rgb(var(--luro-bg) / 0.2) 50%, transparent); opacity: 0.9; }
.project-card__tag {
  position: absolute; left: 1rem; top: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.15);
  background: rgb(var(--luro-bg) / 0.7);
  backdrop-filter: blur(12px);
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em;
  color: rgb(var(--luro-text-muted));
}
.project-card__arrow {
  position: absolute; right: 1rem; top: 1rem;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.15);
  background: rgb(var(--luro-bg) / 0.7);
  backdrop-filter: blur(12px);
  opacity: 0; transform: translateY(8px);
  transition: all 0.5s var(--ease);
}
.project-card:hover .project-card__arrow { opacity: 1; transform: translateY(0); }
.project-card__body { padding: 1.5rem; }
@media (min-width: 640px) { .project-card__body { padding: 1.75rem; } }
.project-card__client { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: rgb(var(--luro-text-muted) / 0.7); }
.project-card__title { margin-top: 0.625rem; font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; }
.project-card__excerpt { margin-top: 0.75rem; font-size: 0.875rem; color: rgb(var(--luro-text-muted)); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.project-card__metrics { display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgb(var(--luro-border) / 0.7); }
.project-card__metric dt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgb(var(--luro-text-muted) / 0.7); }
.project-card__metric dd { margin-top: 0.25rem; font-family: var(--luro-font-display); font-size: 1.125rem; font-weight: 600; }

/* Yatay proje rayı */
.rail { margin-top: 3.5rem; overflow: hidden; }
.rail__track { display: flex; gap: 1.5rem; will-change: transform; }
.rail__item { flex-shrink: 0; width: 34vw; min-width: 320px; max-width: 520px; }
@media (max-width: 767px) {
  .rail { margin-top: 3rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-inline: 1.25rem; padding-bottom: 1rem; -ms-overflow-style: none; scrollbar-width: none; }
  .rail::-webkit-scrollbar { display: none; }
  .rail__track { transform: none !important; gap: 1rem; }
  .rail__item { width: 85vw; max-width: 24rem; scroll-snap-align: center; }
}

/* --- Filtre sekmeleri ------------------------------------------------------ */
.filters { display: flex; gap: 0.5rem; overflow-x: auto; padding-bottom: 0.5rem; -ms-overflow-style: none; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .filters { flex-wrap: wrap; overflow: visible; } }
.filter {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.1);
  font-size: 0.875rem; font-weight: 500;
  color: rgb(var(--luro-text-muted));
  transition: all 0.3s;
}
.filter:hover { border-color: rgb(255 255 255 / 0.25); color: rgb(var(--luro-text)); }
.filter.is-active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(120deg, rgb(var(--luro-gradient-from)), rgb(var(--luro-gradient-to)));
}

/* --- Süreç ----------------------------------------------------------------- */
.process { border-block: 1px solid rgb(255 255 255 / 0.06); background: rgb(var(--luro-bg-soft) / 0.3); }
.process__layout { display: grid; gap: 3.5rem; }
@media (min-width: 1024px) { .process__layout { grid-template-columns: 5fr 7fr; gap: 4rem; } .process__aside { position: sticky; top: 8rem; align-self: start; } }
.process__list { position: relative; }
.process__track, .process__fill { position: absolute; left: 19px; top: 0.5rem; width: 1px; height: calc(100% - 1rem); display: none; }
@media (min-width: 640px) { .process__track, .process__fill { display: block; } }
.process__track { background: rgb(var(--luro-border)); }
.process__fill { transform-origin: top; transform: scaleY(0); background: linear-gradient(180deg, rgb(var(--luro-gradient-from)), rgb(var(--luro-gradient-to))); transition: transform 0.1s linear; }
.process__step { position: relative; }
.process__step + .process__step { margin-top: 2.5rem; }
@media (min-width: 640px) { .process__step { padding-left: 4rem; } .process__step + .process__step { margin-top: 3rem; } }
.process__num {
  position: absolute; left: 0; top: 0;
  display: none; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgb(var(--luro-border));
  background: rgb(var(--luro-bg));
  font-family: var(--luro-font-mono); font-size: 0.75rem;
  color: rgb(var(--luro-text-muted));
}
@media (min-width: 640px) { .process__num { display: flex; } }
.process__num-inline { margin-right: 0.75rem; font-family: var(--luro-font-mono); font-size: 0.875rem; color: rgb(var(--luro-primary)); }
@media (min-width: 640px) { .process__num-inline { display: none; } }

/* --- Değer/özellik ızgarası ------------------------------------------------ */
.tile-grid { display: grid; gap: 1px; overflow: hidden; border-radius: var(--luro-radius); border: 1px solid rgb(var(--luro-border)); background: rgb(var(--luro-border)); }
@media (min-width: 640px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tile-grid--3 { grid-template-columns: repeat(3, 1fr); } .tile-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.tile { height: 100%; padding: 2rem; background: rgb(var(--luro-bg)); transition: background 0.5s; }
.tile:hover { background: rgb(var(--luro-bg-elevated)); }
.tile__num { font-family: var(--luro-font-mono); font-size: 0.75rem; color: rgb(var(--luro-primary) / 0.7); }
.tile__title { margin-top: 1rem; font-size: 1.0625rem; font-weight: 600; }
.tile__desc { margin-top: 0.625rem; font-size: 0.875rem; color: rgb(var(--luro-text-muted)); }

/* --- Yorumlar -------------------------------------------------------------- */
.quotes { columns: 1; column-gap: 1rem; margin-top: 3.5rem; }
@media (min-width: 640px) { .quotes { columns: 2; } }
@media (min-width: 1024px) { .quotes { columns: 3; } }
.quote { break-inside: avoid; margin-bottom: 1rem; }
.quote__text { margin-top: 1.25rem; font-size: 0.9375rem; line-height: 1.75; }
.quote__foot { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid rgb(var(--luro-border) / 0.7); }
.avatar {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 999px;
  font-size: 0.875rem; font-weight: 600; color: #fff;
  background: linear-gradient(120deg, rgb(var(--luro-gradient-from)), rgb(var(--luro-gradient-to)));
}
.stars { display: flex; gap: 2px; }
.stars svg { width: 14px; height: 14px; fill: rgb(var(--luro-primary) / 0.7); color: rgb(var(--luro-primary) / 0.7); }

/* --- Akordeon (SSS) -------------------------------------------------------- */
.accordion { border-block: 1px solid rgb(var(--luro-border) / 0.7); }
.accordion__item + .accordion__item { border-top: 1px solid rgb(var(--luro-border) / 0.7); }
.accordion__button {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  width: 100%; padding-block: 1.5rem; text-align: left;
  transition: color 0.3s;
}
.accordion__button:hover { color: rgb(var(--luro-primary)); }
.accordion__q { font-size: 1rem; font-weight: 500; }
@media (min-width: 640px) { .accordion__q { font-size: 1.125rem; } }
.accordion__icon {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; flex-shrink: 0; margin-top: 2px;
  border-radius: 999px;
  border: 1px solid rgb(var(--luro-border));
  transition: all 0.5s var(--ease);
}
.accordion__icon svg { width: 1rem; height: 1rem; }
.accordion__item.is-open .accordion__icon { transform: rotate(45deg); border-color: rgb(var(--luro-primary) / 0.6); background: rgb(var(--luro-primary) / 0.1); color: rgb(var(--luro-primary)); }
.accordion__panel { overflow: hidden; height: 0; transition: height 0.42s var(--ease); }
.accordion__answer { max-width: 48rem; padding-right: 2.5rem; padding-bottom: 1.75rem; font-size: 0.9375rem; color: rgb(var(--luro-text-muted)); }

/* --- Formlar --------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field__label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; }
.field__req { color: rgb(var(--luro-primary)); }
.field__hint { font-size: 0.75rem; color: rgb(var(--luro-text-muted) / 0.8); }
.field__error { font-size: 0.75rem; color: rgb(var(--luro-danger)); }

.input, .textarea, .select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: calc(var(--luro-radius) * 0.8);
  border: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(255 255 255 / 0.03);
  font-size: 0.9375rem;
  color: rgb(var(--luro-text));
  transition: border-color 0.3s, background 0.3s;
}
:root[data-theme='light'] .input,
:root[data-theme='light'] .textarea,
:root[data-theme='light'] .select { border-color: rgb(0 0 0 / 0.12); background: rgb(255 255 255 / 0.8); }

.input::placeholder, .textarea::placeholder { color: rgb(var(--luro-text-muted) / 0.6); }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: rgb(var(--luro-primary) / 0.6); background: rgb(255 255 255 / 0.05); }
.input[aria-invalid='true'], .textarea[aria-invalid='true'] { border-color: rgb(var(--luro-danger) / 0.6); }
.textarea { min-height: 9rem; resize: vertical; }
.select { appearance: none; background-color: rgb(var(--luro-bg-elevated)); padding-right: 2.5rem; }

.file-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: calc(var(--luro-radius) * 0.8);
  border: 1px dashed rgb(255 255 255 / 0.12);
  background: rgb(255 255 255 / 0.02);
  font-size: 0.875rem;
  color: rgb(var(--luro-text-muted));
  cursor: pointer;
}
.file-input::file-selector-button {
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  border: 0; border-radius: 999px;
  background: rgb(var(--luro-primary) / 0.15);
  color: rgb(var(--luro-primary));
  font-size: 0.875rem; font-weight: 500;
  cursor: pointer;
}

.checkbox { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; font-size: 0.875rem; color: rgb(var(--luro-text-muted)); }
.checkbox input { width: 1rem; height: 1rem; margin-top: 3px; flex-shrink: 0; accent-color: rgb(var(--luro-primary)); }
.checkbox a { color: rgb(var(--luro-primary)); text-decoration: underline; text-underline-offset: 2px; }

.form-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid { grid-template-columns: repeat(2, 1fr); } .form-grid__full { grid-column: 1 / -1; } }

.alert { padding: 1rem; border-radius: calc(var(--luro-radius) * 0.8); font-size: 0.875rem; }
.alert--error { border: 1px solid rgb(var(--luro-danger) / 0.3); background: rgb(var(--luro-danger) / 0.1); }
.alert--success { border: 1px solid rgb(var(--luro-success) / 0.3); background: rgb(var(--luro-success) / 0.1); }
.alert--warning { border: 1px solid rgb(var(--luro-warning) / 0.3); background: rgb(var(--luro-warning) / 0.1); }

/* Bal küpü — ekran dışında, kullanıcı görmez */
.honeypot { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* --- Zengin metin ---------------------------------------------------------- */
.prose { max-width: none; font-size: 1.0625rem; line-height: 1.8; color: rgb(var(--luro-text-muted)); }
.prose > * + * { margin-top: 1.5rem; }
.prose h2 { margin-top: 3rem; margin-bottom: 1rem; font-size: 1.75rem; color: rgb(var(--luro-text)); }
.prose h3 { margin-top: 2.25rem; margin-bottom: 0.75rem; font-size: 1.375rem; color: rgb(var(--luro-text)); }
.prose a { color: rgb(var(--luro-primary)); text-decoration: underline; text-decoration-color: rgb(var(--luro-primary) / 0.4); text-underline-offset: 4px; }
.prose a:hover { text-decoration-color: rgb(var(--luro-primary)); }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: 0.5rem; }
.prose li::marker { color: rgb(var(--luro-primary)); }
.prose blockquote { border-left: 2px solid rgb(var(--luro-primary) / 0.6); padding-left: 1.5rem; font-size: 1.125rem; font-style: italic; color: rgb(var(--luro-text)); }
.prose img { width: 100%; border-radius: var(--luro-radius); border: 1px solid rgb(var(--luro-border)); }
.prose code { padding: 0.125rem 0.375rem; border-radius: 4px; background: rgb(255 255 255 / 0.05); font-family: var(--luro-font-mono); font-size: 0.9em; color: rgb(var(--luro-accent)); }
.prose pre { overflow-x: auto; padding: 1.25rem; border-radius: var(--luro-radius); border: 1px solid rgb(var(--luro-border)); background: rgb(var(--luro-bg-soft)); font-size: 0.875rem; }
.prose pre code { background: none; padding: 0; }
.prose strong { color: rgb(var(--luro-text)); font-weight: 600; }
.prose hr { margin-block: 3rem; border: 0; border-top: 1px solid rgb(var(--luro-border)); }

/* --- Footer ---------------------------------------------------------------- */
.footer { position: relative; overflow: hidden; border-top: 1px solid rgb(255 255 255 / 0.07); background: rgb(var(--luro-bg-soft)); }
.footer__glow { position: absolute; inset-inline: 0; top: -10rem; height: 20rem; opacity: 0.5; filter: blur(120px); background: radial-gradient(60% 100% at 50% 100%, rgb(var(--luro-primary) / 0.28), transparent); pointer-events: none; }
.footer__inner { position: relative; padding-block: 4rem; }
@media (min-width: 1024px) { .footer__inner { padding-block: 5rem; } }
.footer__grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 4fr 8fr; } }
.footer__cols { display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .footer__cols { grid-template-columns: repeat(3, 1fr); } }
.footer__heading { font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: rgb(var(--luro-text-muted) / 0.7); }
.footer__list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.footer__list a { font-size: 0.875rem; color: rgb(var(--luro-text-muted)); transition: color 0.3s; }
.footer__list a:hover { color: rgb(var(--luro-text)); }
.footer__socials { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.footer__bottom { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 640px) { .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__wordmark {
  overflow: hidden;
  pointer-events: none;
  user-select: none;
  text-align: center;
  transform: translateY(22%);
  font-family: var(--luro-font-display);
  font-size: 22vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgb(255 255 255 / 0.028);
  white-space: nowrap;
}

/* --- Animasyon: kaydırınca beliren öğeler ---------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal='left']  { transform: translateX(28px); }
[data-reveal='right'] { transform: translateX(-28px); }
[data-reveal='fade']  { transform: none; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* --- Yükleme perdesi ------------------------------------------------------- */
.preloader {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  background: rgb(var(--luro-bg));
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.preloader__logo { font-family: var(--luro-font-display); font-size: clamp(2rem, 6vw, 3rem); font-weight: 600; letter-spacing: -0.03em; }
.preloader__bar { width: 10rem; height: 1px; overflow: hidden; background: rgb(var(--luro-border)); }
.preloader__bar span { display: block; height: 100%; transform-origin: left; transform: scaleX(0); background: linear-gradient(90deg, rgb(var(--luro-gradient-from)), rgb(var(--luro-gradient-to))); animation: bar-fill 0.95s cubic-bezier(0.65, 0, 0.35, 1) forwards; }
.preloader__tag { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.4em; color: rgb(var(--luro-text-muted) / 0.7); }

@keyframes bar-fill { to { transform: scaleX(1); } }

/* --- Yardımcılar ----------------------------------------------------------- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 70;
}
.skip-link:focus {
  left: 1rem; top: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: rgb(var(--luro-primary));
  color: #fff;
  font-size: 0.875rem;
}
.no-scroll { overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* --- Hareket azaltma ------------------------------------------------------- */
/* İşletim sistemi "hareketi azalt" derse tüm süslemeler kapanır. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .aurora, #cursor-glow, .noise { display: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .line-mask > span { transform: none !important; opacity: 1 !important; }
  .preloader { display: none !important; }
  .marquee__track { animation: none !important; }
}
