/* IPDigi - Cinematic Entertainment Landing
   ============================================ */

:root {
  /* Cinematic noir base — derin mavi-siyah, monolitik siyah değil.
     Apple TV+ / MUBI'nin altyapı tonu: midnight + slate, hafif soğuk. */
  --black: #05070C;
  --ink: #0A0E18;
  --ink-2: #111726;
  --bg-base: #05070C;
  --bg-elevated: #0E1320;
  --bg-surface: #161D2E;
  --midnight: #070B14;
  --slate: #0B1320;
  --steel: #1A2238;

  /* Teal accent — SADECE button BG, hover glow, ambient halo. ASLA text.
     Daha derin / kısık tonlar, neon değil; ice-teal cinematic glow. */
  --accent: #14B8A6;
  --accent-hi: #2DD4BF;
  --accent-lo: #0D9488;
  --accent-soft: #5EEAD4;
  --accent-deep: #0F766E;
  --ice-blue: #5BE8F5;
  --indigo-glow: #4F5AE0;

  /* Backwards-compatible aliases — eski selektörler yine bu paleti çeker.
     Text gradient'leri için artık beyaz-silver kullanacak. */
  --magenta: #14B8A6;
  --hot-pink: #2DD4BF;
  --purple: #0D9488;
  --violet: #5EEAD4;
  --cyan: #2DD4BF;
  --mint: #5EEAD4;
  --coral: #0D9488;
  --gold: #2DD4BF;
  --neon-lime: #5EEAD4;

  /* Silver gradient stops — teal text'lerin yerine geçen beyaz palette */
  --silver-0: #FFFFFF;
  --silver-1: #F2F4F8;
  --silver-2: #D8DDE6;
  --silver-3: #A8B0BF;

  /* Text: beyaz birincil. Açık siyah/krem yardımcı yok. */
  --text: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.78);
  --text-dim: rgba(255, 255, 255, 0.50);
  --text-on-light: #05070C;

  --glass: rgba(14, 19, 32, 0.55);
  --glass-strong: rgba(14, 19, 32, 0.82);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.22);

  --font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Bebas Neue", "Inter", -apple-system, sans-serif;

  --container: 1280px;
  --container-wide: 1440px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg-base);
  color-scheme: dark;
}

body {
  font-family: var(--font);
  /* Cinematic noir backdrop — derin mavi-siyah gradient katmanları.
     Üstte hafif spotlight, altta vignette. Hiç düz siyah yok. */
  background:
    radial-gradient(ellipse 110vw 70vh at 50% -10%, rgba(40, 60, 110, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 80vw 60vh at 95% 25%, rgba(20, 184, 166, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 70vw 55vh at 5% 75%, rgba(79, 90, 224, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 100vw 70vh at 50% 110%, rgba(8, 12, 22, 1) 0%, transparent 70%),
    linear-gradient(180deg, #070B14 0%, #0A1020 35%, #08101C 70%, #05080F 100%);
  background-attachment: fixed;
  /* background-attachment: fixed scroll'da composite layer'i her frame yeniden boyar; mobilde scroll'a düşer. */
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Cinematic vignette — sahnenin köşelerinde soft koyu çerçeve */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 130vw 100vh at 50% 50%, transparent 40%, rgba(0, 0, 0, 0.55) 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* =========================================================================
   GLOBAL FX: Moving gradient orbs and grain that live behind everything
   ========================================================================= */

.fx-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  /* blur(140px) + scale animasyonu GPU'yu çökertiyor; 80px ve scale'siz yumuşak drift'e indirildi. */
  filter: blur(80px);
  opacity: 0.45;
  will-change: transform;
  contain: layout paint style;
}

/* Cinematic colored halo orbs — Apple TV+ landing tarzı.
   Çoklu katmanlı, hafif desature, derin teal + indigo + ice-blue.
   Görünür ambient glow yaratıyor ama hiçbir text rengi etkilemiyor.
   max-width ile viewport-locked reflow engellendi. */
.orb-1 {
  width: 70vw;
  height: 70vw;
  max-width: 720px;
  max-height: 720px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.55) 0%, rgba(20, 184, 166, 0.18) 35%, transparent 70%);
  top: -25vw;
  left: -15vw;
  animation: orb-drift-1 60s ease-in-out infinite alternate;
}
.orb-2 {
  width: 65vw;
  height: 65vw;
  max-width: 680px;
  max-height: 680px;
  background: radial-gradient(circle, rgba(79, 90, 224, 0.55) 0%, rgba(79, 90, 224, 0.20) 35%, transparent 70%);
  top: 15vh;
  right: -20vw;
  animation: orb-drift-2 70s ease-in-out infinite alternate;
}
.orb-3 {
  width: 60vw;
  height: 60vw;
  max-width: 640px;
  max-height: 640px;
  background: radial-gradient(circle, rgba(91, 232, 245, 0.45) 0%, rgba(91, 232, 245, 0.15) 35%, transparent 70%);
  bottom: -20vh;
  left: 25vw;
  animation: orb-drift-3 80s ease-in-out infinite alternate;
}
.orb-4 {
  width: 50vw;
  height: 50vw;
  max-width: 560px;
  max-height: 560px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.50) 0%, rgba(45, 212, 191, 0.16) 35%, transparent 70%);
  top: 55vh;
  left: 8vw;
  animation: orb-drift-4 65s ease-in-out infinite alternate;
}

/* scale() kaldırıldı: blur edilmiş büyük layer'ı scale etmek her frame composite'i patlatıyordu. */
@keyframes orb-drift-1 {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(15vw, 22vh, 0); }
}
@keyframes orb-drift-2 {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-18vw, 18vh, 0); }
}
@keyframes orb-drift-3 {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-12vw, -15vh, 0); }
}
@keyframes orb-drift-4 {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(22vw, -12vh, 0); }
}

/* Cinematic film grain — biraz daha belirgin, premium sinema hissi */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/></svg>");
}

/* Spotlight - dramatik ana sahne ışığı */
.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse 70vw 45vh at 50% 35%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 100vw 70vh at 50% 50%, transparent 35%, rgba(0, 0, 0, 0.5) 100%);
}

/* All content must sit above fx-layer */
.navbar, main, footer, section, .legal-content {
  position: relative;
  z-index: 3;
}

/* Cinematic section separator — Apple TV+ style sübtil gradient mask */
section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(60vw, 800px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.10), transparent);
  pointer-events: none;
}

/* =========================================================================
   LAYOUT
   ========================================================================= */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.container-wide {
  max-width: var(--container-wide);
}

section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 20px; }
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  letter-spacing: -0.028em;
  line-height: 1.05;
  color: var(--text);
}

.display {
  font-size: clamp(3.5rem, 12vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.86;
  text-transform: none;
}

.display-2 {
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.88;
}

.h-section {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 26px;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.75));
}

.lead {
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  line-height: 1.6;
  font-weight: 400;
}

/* gradient-text artık BEYAZ→silver gradient — teal yazı yok */
.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 0%, #F2F4F8 35%, #C7CFDD 70%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradient-shift 10s ease infinite;
  text-shadow: 0 0 60px rgba(255, 255, 255, 0.08);
}

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

.outline-text {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.5);
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 20px 38px; font-size: 1.05rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent-lo) 0%, var(--accent) 50%, var(--accent-hi) 100%);
  color: #05131A;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 18px 60px rgba(20, 184, 166, 0.45),
    0 0 24px rgba(91, 232, 245, 0.20);
  background-size: 200% 200%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.30) inset,
    0 26px 80px rgba(45, 212, 191, 0.60),
    0 0 36px rgba(91, 232, 245, 0.35);
  background-position: 100% 0;
  color: #05131A;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 8px 30px rgba(0, 0, 0, 0.35);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--text);
  transform: translateY(-2px);
}

.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { color: #FFFFFF; background: rgba(255, 255, 255, 0.05); }

.btn-block { width: 100%; justify-content: center; }

/* =========================================================================
   NAVIGATION
   ========================================================================= */

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Eskiden saturate(200%) blur(28px) idi; sticky element üzerinde scroll'da Safari'yi öldürüyordu.
     Opaklık artırılıp blur düşürüldü; arka plan zaten %85+ koyu. */
  background: rgba(5, 8, 15, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  pointer-events: none;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

/* Brand wordmark — TÜM TEXT BEYAZ. "IP" hafif silver gradient ile diferansiyasyon. */
.brand-text {
  display: inline-flex;
  align-items: baseline;
  color: #FFFFFF;
}
.brand-ip {
  background: linear-gradient(135deg, #FFFFFF 0%, #C7CFDD 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: conic-gradient(from 200deg, var(--accent-deep), var(--accent), var(--ice-blue), var(--accent-hi), var(--accent-deep));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 8px 32px rgba(20, 184, 166, 0.45),
    0 0 18px rgba(91, 232, 245, 0.25);
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, #05080F 0%, #0B1320 100%);
  border-radius: 9px;
}

/* Brand mark "IP" yazısı beyaz/silver */
.brand-mark span {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #FFFFFF, #C7CFDD);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--glass);
  border: 1px solid var(--border);
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn:not(.btn-primary) { display: none; }
}

.mobile-menu {
  display: none;
  padding: 16px 24px 24px;
  background: rgba(10, 15, 14, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }

/* =========================================================================
   HERO - fullscreen cinematic
   ========================================================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

/* Hero stage spotlight — Apple TV+ landing'deki "sahne ışığı" hissi */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60vw 50vh at 50% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 90vw 70vh at 50% 100%, rgba(0, 0, 0, 0.55) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero-badge .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-hi);
  box-shadow: 0 0 12px var(--accent-hi), 0 0 24px rgba(45, 212, 191, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.4); }
}

.hero h1 {
  margin-bottom: 32px;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .word {
  display: inline-block;
  /* Önceden 1.2s rise + per-word 0.1-0.6s delay vardi; hero baslik 1.8sn'ye kadar
     ekranda yoktu ve site "yavas yukleniyor" hissi veriyordu. Tek geciktirici fade silindi. */
}

@keyframes rise {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.hero-sub {
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 0 auto 48px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta svg {
  color: var(--accent-hi);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(45, 212, 191, 0.5));
}

/* =========================================================================
   MARQUEE - infinite scrolling poster wall
   ========================================================================= */

.marquee-section {
  padding: 64px 0 96px;
  position: relative;
  overflow: hidden;
}

.marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  margin-bottom: 18px;
}

.marquee-track {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
  animation: marquee 45s linear infinite;
}

.marquee-reverse .marquee-track {
  animation: marquee-reverse 50s linear infinite;
}

.marquee-fast .marquee-track {
  animation-duration: 35s;
}

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

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

.poster {
  flex-shrink: 0;
  width: 200px;
  aspect-ratio: 2/3;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.poster:hover {
  transform: scale(1.05) translateY(-6px);
  z-index: 5;
}

.poster-art {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
}

.poster-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.poster-genre {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}

/* Gradient poster art (no image required) — teal-shifted, varied luminance */
.art-1  { background: linear-gradient(135deg, #0F766E, #2DD4BF); }
.art-2  { background: linear-gradient(135deg, #134E4A, #14B8A6); }
.art-3  { background: linear-gradient(135deg, #0D9488, #5EEAD4); }
.art-4  { background: linear-gradient(135deg, #115E59, #2DD4BF); }
.art-5  { background: linear-gradient(135deg, #0F766E, #99F6E4); }
.art-6  { background: linear-gradient(135deg, #042F2E, #14B8A6); }
.art-7  { background: linear-gradient(135deg, #0D9488, #99F6E4); }
.art-8  { background: linear-gradient(135deg, #134E4A, #5EEAD4); }
.art-9  { background: linear-gradient(135deg, #042F2E, #2DD4BF); }
.art-10 { background: linear-gradient(135deg, #115E59, #5EEAD4); }
.art-11 { background: linear-gradient(135deg, #0F766E, #2DD4BF); }
.art-12 { background: linear-gradient(135deg, #134E4A, #99F6E4); }

/* Add visual texture (concentric circles for poster art feel) */
.poster-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
}

/* =========================================================================
   STATS BAR - minimal floating
   ========================================================================= */

.stats {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 56px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%),
    rgba(10, 14, 24, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 30px 80px rgba(0, 0, 0, 0.4);
}

.stats-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(13, 148, 136, 0.18), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(45, 212, 191, 0.16), transparent 50%);
  pointer-events: none;
}

.stat {
  position: relative;
  z-index: 1;
}

.stat-value {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 50%, #B6BFCE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 760px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 36px 24px;
    gap: 28px;
  }
}

/* =========================================================================
   FEATURES - Overlapping cards with backdrops
   ========================================================================= */

.features {
  padding: 140px 0 120px;
  position: relative;
}

.section-head {
  margin-bottom: 80px;
  max-width: 900px;
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head h2 { margin-bottom: 20px; }

.features-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(10, 14, 24, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 56px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 30px 80px rgba(0, 0, 0, 0.35);
}

/* Gradient stroke - top→bottom fade premium border */
.feature-row::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.feature-row:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 40px 100px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(20, 184, 166, 0.08);
}

.feature-row:nth-child(even) {
  grid-template-columns: 1.2fr 1fr;
}

.feature-row:nth-child(even) .feature-text {
  order: 2;
}

.feature-row:nth-child(even) .feature-visual {
  order: 1;
}

.feature-row::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
}

.feature-row:nth-child(1)::before { background: var(--accent-lo); top: -100px; right: -100px; opacity: 0.18; }
.feature-row:nth-child(2)::before { background: var(--accent-hi); top: -100px; left: -100px; opacity: 0.18; }
.feature-row:nth-child(3)::before { background: var(--accent); bottom: -100px; right: -100px; opacity: 0.18; }
.feature-row:nth-child(4)::before { background: var(--accent-soft); bottom: -100px; left: -100px; opacity: 0.18; }

.feature-num {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.feature-text {
  position: relative;
  z-index: 1;
}

.feature-text h3 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.feature-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.feature-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.feature-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-lo), var(--accent-hi));
  margin-top: 8px;
}

.feature-visual {
  position: relative;
  z-index: 1;
  aspect-ratio: 5/4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
}

.fv-1 {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(13, 148, 136, 0.55), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(45, 212, 191, 0.45), transparent 50%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
  display: grid;
  place-items: center;
}

.fv-2 {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(94, 234, 212, 0.5), transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(15, 118, 110, 0.55), transparent 50%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
}

.fv-3 {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(20, 184, 166, 0.5), transparent 60%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
}

.fv-4 {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(45, 212, 191, 0.45), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(15, 118, 110, 0.45), transparent 50%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
}

.fv-content {
  width: 80%;
  height: 80%;
  position: relative;
}

.device-frame {
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.device-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: 14px 0 0 #ffbd2e, 28px 0 0 #28c840;
  z-index: 2;
}

.device-laptop {
  inset: 10% 10% 25% 10%;
}

.device-phone {
  bottom: 5%;
  right: 8%;
  width: 28%;
  aspect-ratio: 9/19;
  border-radius: 22px;
}

.device-phone::before { display: none; }

.device-content {
  position: absolute;
  inset: 24px 12px 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.device-card {
  aspect-ratio: 2/3;
  border-radius: 4px;
  background: var(--glass-strong);
}

.device-card:nth-child(1) { background: linear-gradient(135deg, #0F766E, #2DD4BF); }
.device-card:nth-child(2) { background: linear-gradient(135deg, #134E4A, #14B8A6); }
.device-card:nth-child(3) { background: linear-gradient(135deg, #0D9488, #5EEAD4); }
.device-card:nth-child(4) { background: linear-gradient(135deg, #115E59, #2DD4BF); }
.device-card:nth-child(5) { background: linear-gradient(135deg, #0F766E, #99F6E4); }
.device-card:nth-child(6) { background: linear-gradient(135deg, #042F2E, #14B8A6); }
.device-card:nth-child(7) { background: linear-gradient(135deg, #0D9488, #99F6E4); }
.device-card:nth-child(8) { background: linear-gradient(135deg, #134E4A, #5EEAD4); }

@media (max-width: 880px) {
  .feature-row {
    grid-template-columns: 1fr !important;
    padding: 36px 24px;
    gap: 32px;
  }
  .feature-row .feature-text,
  .feature-row .feature-visual {
    order: unset !important;
  }
}

/* =========================================================================
   FEATURE GRID (smaller cards)
   ========================================================================= */

.feature-grid-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 1080px) {
  .feature-grid-mini { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .feature-grid-mini { grid-template-columns: 1fr; }
}

.mini {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%),
    rgba(10, 14, 24, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.mini::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10) 0%, transparent 50%);
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.mini:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.20);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(14, 19, 32, 0.85);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(20, 184, 166, 0.10);
}

.mini-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: white;
}

.mini:nth-child(1) .mini-icon { background: linear-gradient(135deg, var(--accent-deep), var(--accent)); }
.mini:nth-child(2) .mini-icon { background: linear-gradient(135deg, var(--accent-lo), var(--accent-hi)); }
.mini:nth-child(3) .mini-icon { background: linear-gradient(135deg, var(--accent), var(--accent-soft)); }
.mini:nth-child(4) .mini-icon { background: linear-gradient(135deg, var(--accent-hi), var(--accent-soft)); }
.mini-icon { color: #04201C; }

.mini h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.mini p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* =========================================================================
   COMPARE
   ========================================================================= */

.compare-table {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%),
    rgba(10, 14, 24, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  overflow: hidden;
  margin-top: 48px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 30px 80px rgba(0, 0, 0, 0.4);
}

.compare-table::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(13, 148, 136, 0.14), transparent 50%),
    radial-gradient(circle at 75% 50%, rgba(45, 212, 191, 0.12), transparent 50%);
  pointer-events: none;
}

.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 22px 32px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  position: relative;
}

.compare-row:last-child { border-bottom: none; }

.compare-row.head {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.compare-row.head .us {
  background: linear-gradient(135deg, #FFFFFF, #C7CFDD);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.compare-cell {
  text-align: center;
  font-size: 0.95rem;
}

.compare-cell.label {
  text-align: left;
  font-weight: 500;
}

.check {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.2);
  color: var(--accent-hi);
  font-weight: 700;
}

.cross {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-dim);
}

@media (max-width: 760px) {
  .compare-row {
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    padding: 14px 16px;
    font-size: 0.85rem;
  }
  .compare-cell { font-size: 0.85rem; }
}

/* =========================================================================
   PRICING
   ========================================================================= */

.beta-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(10, 14, 24, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 18px 22px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 12px 40px rgba(0, 0, 0, 0.3);
}

.beta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 0% 50%, rgba(20, 184, 166, 0.12), transparent 70%);
  pointer-events: none;
}

.beta-hero {
  max-width: 640px;
  margin: 40px auto;
  padding: 56px 40px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%),
    rgba(10, 14, 24, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 30px 80px rgba(0, 0, 0, 0.4);
}

.beta-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(20, 184, 166, 0.12), transparent 70%);
  pointer-events: none;
}

.beta-hero .beta-banner-pill {
  display: inline-block;
  margin-bottom: 24px;
}

.beta-hero h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.beta-hero p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 auto 28px;
  max-width: 480px;
}

@media (max-width: 640px) {
  .beta-hero { padding: 40px 24px; }
}

.beta-banner-pill {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-lo), var(--accent), var(--accent-hi));
  color: #05131A;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 6px 20px rgba(20, 184, 166, 0.4);
}

.beta-banner p {
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .beta-banner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

@media (max-width: 1080px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .pricing-grid { grid-template-columns: 1fr; } }

.plan {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%),
    rgba(10, 14, 24, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.plan:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(20, 184, 166, 0.08);
}

.plan.popular {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(14, 19, 32, 0.88);
  border-color: transparent;
  box-shadow:
    0 0 0 1px rgba(20, 184, 166, 0.22) inset,
    0 30px 80px rgba(20, 184, 166, 0.22),
    0 0 40px rgba(91, 232, 245, 0.10);
}

.plan.popular::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--accent-lo), var(--accent), var(--accent-hi));
  border-radius: 24px;
  z-index: -1;
  opacity: 0.55;
}

.plan.popular::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.35), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-lo), var(--accent), var(--accent-hi));
  color: #05131A;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 7px 20px;
  border-radius: 999px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 10px 30px rgba(20, 184, 166, 0.45),
    0 0 18px rgba(91, 232, 245, 0.20);
}

.plan-name {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.plan-price strong {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.plan-period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 26px;
  min-height: 48px;
  line-height: 1.5;
}

.plan-cta {
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  font-size: 0.92rem;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.plan-features li svg {
  flex-shrink: 0;
  color: var(--mint);
  margin-top: 3px;
}

.pricing-foot {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =========================================================================
   PLATFORMS
   ========================================================================= */

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 860px) { .platforms-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; } }
@media (max-width: 540px) { .platforms-grid { grid-template-columns: 1fr; max-width: 380px; } }

/* Version + size slot — JS manifest.json'dan doldurur */
.platform-version {
  display: block;
  margin-top: 14px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.platform-version[data-loading="true"] { opacity: 0.3; }

.platform {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%),
    rgba(10, 14, 24, 0.55);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 22px;
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.platform::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, var(--glass));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.platform:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(20, 184, 166, 0.10);
}

.platform:hover::before { opacity: 1; }

.platform-icon {
  margin: 0 auto 18px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.platform h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.platform p {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.platform .btn {
  position: relative;
  z-index: 1;
}

/* =========================================================================
   FEATURES GRID (features.html)
   ========================================================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%),
    rgba(10, 14, 24, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.feature:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(20, 184, 166, 0.08);
}

/* Decorative SVG illustration anchored at bottom-right of each feature card */
.feature-decor {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 170px;
  height: 170px;
  color: #ffffff;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.feature-decor svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature:hover .feature-decor {
  opacity: 0.14;
  transform: scale(1.04) rotate(-1deg);
}

/* Ensure the content sits above the decoration */
.feature > .feature-icon,
.feature > h3,
.feature > p {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--text);
  margin-bottom: 14px;
}

.feature h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
  font-weight: 600;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}

/* =========================================================================
   SHOWCASE (features.html "A player that respects your sources")
   ========================================================================= */

.showcase {
  padding: 120px 0;
  position: relative;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 980px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 48px; }
}

.showcase-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
}

.showcase-point {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: flex-start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%),
    rgba(10, 14, 24, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px 26px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.showcase-point:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.20);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(14, 19, 32, 0.85);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(20, 184, 166, 0.10);
}

.showcase-point-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 45%, #8B95A8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  align-self: center;
  text-align: center;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.showcase-point > div:last-child h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.showcase-point > div:last-child p {
  font-size: 0.94rem;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}

.showcase-visual {
  position: relative;
}

.search-mockup {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.search-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(20, 184, 166, 0.18), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(45, 212, 191, 0.14), transparent 55%);
  pointer-events: none;
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(10, 15, 14, 0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.search-bar svg { color: var(--accent-hi); flex-shrink: 0; }
.search-bar span { color: var(--text-dim); }

.search-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  position: relative;
  z-index: 1;
}

.result-card {
  aspect-ratio: 2/3;
  border-radius: 8px;
  background: linear-gradient(135deg, #0F766E, #2DD4BF);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.result-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
}

.result-card:nth-child(2) { background: linear-gradient(135deg, #134E4A, #14B8A6); }
.result-card:nth-child(3) { background: linear-gradient(135deg, #0D9488, #5EEAD4); }
.result-card:nth-child(4) { background: linear-gradient(135deg, #042F2E, #14B8A6); }
.result-card:nth-child(5) { background: linear-gradient(135deg, #115E59, #2DD4BF); }
.result-card:nth-child(6) { background: linear-gradient(135deg, #0F766E, #99F6E4); }
.result-card:nth-child(7) { background: linear-gradient(135deg, #0D9488, #2DD4BF); }
.result-card:nth-child(8) { background: linear-gradient(135deg, #134E4A, #5EEAD4); }

/* Force a hard grid on .features-grid so global cascade can't collapse it */
.features-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; } }
@media (max-width: 540px) { .features-grid { grid-template-columns: 1fr !important; } }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */

.testimonials {
  position: relative;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

@media (max-width: 880px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

.testimonial {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%),
    rgba(10, 14, 24, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.48),
    0 0 30px rgba(20, 184, 166, 0.10);
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: -24px;
  right: 24px;
  font-size: 8rem;
  line-height: 1;
  color: #FFFFFF;
  opacity: 0.10;
  font-family: Georgia, serif;
}

.testimonial blockquote {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
}

.testimonial:nth-child(1) .testimonial-avatar { background: linear-gradient(135deg, var(--accent-deep), var(--accent)); color: #04201C; }
.testimonial:nth-child(2) .testimonial-avatar { background: linear-gradient(135deg, var(--accent-lo), var(--accent-hi)); color: #04201C; }
.testimonial:nth-child(3) .testimonial-avatar { background: linear-gradient(135deg, var(--accent), var(--accent-soft)); color: #04201C; }

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-author span {
  display: block;
  font-size: 0.825rem;
  color: var(--text-dim);
}

/* =========================================================================
   FAQ
   ========================================================================= */

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%),
    rgba(10, 14, 24, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.20);
}

.faq-item[open] {
  border-color: rgba(45, 212, 191, 0.35);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(14, 19, 32, 0.82);
  box-shadow: 0 0 30px rgba(20, 184, 166, 0.10);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--glass);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--accent-lo), var(--accent-hi));
  color: #04201C;
}

.faq-body {
  padding: 0 28px 28px;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.975rem;
}

/* =========================================================================
   FINAL CTA - cinematic
   ========================================================================= */

.final-cta {
  text-align: center;
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 90vw;
  height: 90vw;
  max-width: 1400px;
  max-height: 1400px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(20, 184, 166, 0.32) 0%, rgba(91, 232, 245, 0.16) 25%, rgba(79, 90, 224, 0.10) 45%, transparent 65%);
  filter: blur(60px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.final-cta h2 {
  font-size: clamp(2.5rem, 7vw, 6rem);
  margin-bottom: 28px;
  letter-spacing: -0.04em;
  line-height: 0.95;
  position: relative;
  z-index: 1;
}

.final-cta p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 640px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.final-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* =========================================================================
   FOOTER
   ========================================================================= */

footer {
  background:
    linear-gradient(180deg, transparent 0%, rgba(3, 5, 10, 0.6) 50%, rgba(3, 5, 10, 0.95) 100%);
  backdrop-filter: blur(10px);
  padding: 96px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 2;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 80px;
  margin-bottom: 56px;
  align-items: start;
}

@media (max-width: 880px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 320px;
}

.footer-col h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-col a:hover { color: #FFFFFF; }

.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--text-dim);
  font-size: 0.825rem;
  line-height: 1.5;
  max-width: 720px;
}

.lang-select {
  background: var(--glass);
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.875rem;
  cursor: pointer;
  font-family: inherit;
}

/* =========================================================================
   SUB-PAGE HEADERS
   ========================================================================= */

.page-hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  position: relative;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6vw, 5rem);
}

.page-hero .lead {
  margin-inline: auto;
  position: relative;
}

/* Legal page */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 2;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.legal-content .updated {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.75;
  font-size: 1.02rem;
}

/* Support cards */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .support-grid { grid-template-columns: 1fr; }
}

.support-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.support-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.support-card p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.support-card a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.25s ease;
}

.support-card a:hover {
  border-color: var(--accent-hi);
}

/* =========================================================================
   UTILITIES & ACCESSIBILITY
   ========================================================================= */

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.text-center { text-align: center; }

[data-hidden] { display: none !important; }

/* Eskiden body'ye .loading ekleyip locale fetch bitene kadar sayfayi opacity:0
   ile gizliyorduk; prerendered sayfalarda i18n zaten HTML'de oldugu icin
   bu sadece "yavas aciliyor" fade hissi yaratiyordu. Kurallar no-op. */
.loading, .loaded { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  html { scroll-behavior: auto; }
  .marquee-track { animation: none !important; }
  .orb { animation: none !important; }
}

/* =========================================================================
   RTL SUPPORT (Arabic and other right-to-left languages)
   ========================================================================= */

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .nav-links,
html[dir="rtl"] .nav-actions,
html[dir="rtl"] .hero-meta,
html[dir="rtl"] .hero-cta,
html[dir="rtl"] .platform-meta,
html[dir="rtl"] .footer-grid,
html[dir="rtl"] .footer-bottom,
html[dir="rtl"] .feature-grid,
html[dir="rtl"] .pricing-grid,
html[dir="rtl"] .platform-grid,
html[dir="rtl"] .testimonial-grid,
html[dir="rtl"] .compare-row,
html[dir="rtl"] .showcase-points,
html[dir="rtl"] .support-grid {
  direction: rtl;
}

html[dir="rtl"] .feature-decor {
  right: auto;
  left: -36px;
  transform: scaleX(-1);
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .hero-eyebrow {
  text-align: inherit;
}

html[dir="rtl"] .feature-card,
html[dir="rtl"] .pricing-card,
html[dir="rtl"] .platform-card,
html[dir="rtl"] .testimonial-card,
html[dir="rtl"] .support-card,
html[dir="rtl"] .footer-col,
html[dir="rtl"] .showcase-point {
  text-align: right;
}

html[dir="rtl"] .pricing-features li,
html[dir="rtl"] .feature-list li {
  text-align: right;
}

html[dir="rtl"] .pricing-features li::before,
html[dir="rtl"] .feature-list li::before {
  margin-right: 0;
  margin-left: 8px;
}

html[dir="rtl"] .compare-row .label,
html[dir="rtl"] .compare-row .value {
  text-align: inherit;
}

html[dir="rtl"] .lang-select {
  text-align: right;
}

/* Logo and brand markup remain LTR to preserve "IP" + "Digi" visual */
html[dir="rtl"] .brand,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .logo {
  direction: ltr;
  text-align: left;
}

/* =========================================================================
   PERFORMANCE OVERRIDES — paint/scroll maliyetini kısar.
   Mobilde fx-layer komple kapanır, masaüstünde tek orb kalır.
   prefers-reduced-motion ise tüm infinite animasyonları durdurur.
   ========================================================================= */

@media (max-width: 768px) {
  /* fixed background ve fixed fx katmanları mobilde scroll'da composite'i patlatıyor.
     Mobilde sadece düz gradient kalır. */
  body { background-attachment: scroll; }
  .fx-layer,
  .grain,
  .spotlight,
  body::before { display: none !important; }

  /* Kartların hover transform/shadow animasyonları touch'ta gözükmediği için kapatılır. */
  .feature-row,
  .mini,
  .platform,
  .feature,
  .showcase-point,
  .testimonial,
  .plan {
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  /* Tablet aralığında 4 orb yerine sadece en alttaki kalır; blur ucuzlar. */
  .orb-2, .orb-3, .orb-4 { display: none; }
  .orb-1 { animation-duration: 90s; opacity: 0.35; filter: blur(60px); }
}

@media (prefers-reduced-motion: reduce) {
  /* Erişilebilirlik + perf: animasyon kapalıysa sayfa idle'da CPU kullanmaz. */
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .orb { animation: none !important; }
  .gradient-text { animation: none !important; }
  .marquee-track { animation: none !important; }
}
