/* =====================================================
   OZ IPTV Player — Landing Site Stylesheet
   Color palette from oziptvplayer_project_spec.md §4.1
   ===================================================== */

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #070708;
  --surface:       #141428;
  --surface-light: #1a2644;
  --accent:        #E50914;
  --accent-hover:  #FF3D47;
  --text:          #FFFFFF;
  --text-sec:      #D4D4D8;
  --text-muted:    #9898A0;
  --divider:       #353542;
  --success:       #3DDC84;
  --warning:       #FFB800;

  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     16px;
  --radius-full:   9999px;
  --transition:    0.25s ease;
  --shadow:        0 4px 24px rgba(0,0,0,0.5);

  --text-lg:       clamp(1.05rem, 1.5vw, 1.15rem);
  --text-xl:       clamp(1.35rem, 2.5vw, 1.75rem);
  --text-2xl:      clamp(1.75rem, 4vw, 2.75rem);

  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;

  --gradient-accent: linear-gradient(135deg, #E50914 0%, #FF3D47 100%);
  --gradient-dark:   linear-gradient(180deg, rgba(7,7,8,0) 0%, rgba(7,7,8,0.92) 100%);
  --glass:           rgba(20, 20, 40, 0.62);
  --glass-border:    rgba(255, 255, 255, 0.08);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

/* ---- Typography ---- */
h1 { font-size: var(--text-2xl); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-sec); }

/* ---- Utility ---- */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.sr-only   { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-accent { color: var(--accent); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(229,9,20,0.4); }

.btn-outline {
  background: transparent; color: var(--text);
  border-color: var(--divider);
}
.btn-outline:hover { border-color: var(--text-sec); background: var(--surface); }

.btn-disabled {
  background: var(--surface); color: var(--text-muted);
  border-color: var(--divider); cursor: not-allowed; pointer-events: none;
  opacity: 0.65;
}

/* ---- Badge ---- */
.badge {
  display: inline-block;
  padding: 3px 9px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge-soon { background: var(--surface-light); color: var(--text-muted); border: 1px solid var(--divider); }
.badge-new  { background: var(--accent); color: #fff; }

/* ======================================================
   NAV
   ====================================================== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
  transition: background var(--transition);
}
.site-nav .container {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em;
}
.nav-logo img {
  width: 36px; height: 36px; border-radius: 8px;
}
.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  color: var(--text-sec); font-size: 0.9rem; font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-right {
  display: flex; align-items: center; gap: 16px;
}
.lang-switcher {
  display: flex; gap: 4px;
}
.lang-btn {
  padding: 5px 10px; border-radius: 6px; font-size: 0.8rem; font-weight: 600;
  border: 1px solid var(--divider); background: transparent; color: var(--text-sec); cursor: pointer;
  transition: all var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  background: var(--surface); color: var(--text); border-color: var(--text-muted);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
/* Mobile menu */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .site-nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
    position: fixed; top: 65px; left: 0; right: 0; bottom: 0;
    background: var(--bg); padding: 32px 24px;
    border-top: 1px solid var(--divider);
  }
  .site-nav.open .nav-links a { font-size: 1.1rem; }
}

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 50% -5%, rgba(229,9,20,0.22), transparent 62%),
    radial-gradient(ellipse 60% 45% at 85% 25%, rgba(80,120,255,0.08), transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 60%, rgba(229,9,20,0.06), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background:
    radial-gradient(circle at 30% 20%, rgba(229,9,20,0.12) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(100,80,255,0.06) 0%, transparent 35%);
  animation: heroMesh 20s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes heroMesh {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -1%) scale(1.05); }
}
.hero .container { position: relative; z-index: 1; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  animation: floatOrb 12s ease-in-out infinite;
}
.hero-orb--1 { width: 280px; height: 280px; background: rgba(229,9,20,0.15); top: 10%; left: 5%; animation-delay: 0s; }
.hero-orb--2 { width: 200px; height: 200px; background: rgba(80,120,255,0.1); top: 30%; right: 8%; animation-delay: -4s; }
.hero-orb--3 { width: 160px; height: 160px; background: rgba(229,9,20,0.08); bottom: 20%; left: 15%; animation-delay: -8s; }
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(12px, -18px); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-sec); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent-word { color: var(--accent); }
.hero p.lead {
  max-width: 640px; margin: 0 auto 40px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
}
.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
}
.btn-download-win {
  background: var(--accent); color: #fff; font-size: 1rem;
  padding: 15px 32px; border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; transition: all var(--transition);
  border: none; cursor: pointer;
}
.btn-download-win:hover {
  background: var(--accent-hover); transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(229,9,20,0.45);
}
/* Mağaza pill’leri — ortak */
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition),
    background var(--transition), color var(--transition);
}
.btn-store svg { flex-shrink: 0; opacity: 0.95; }

/* Yakında (Google Play): ikincil ama silik değil */
span.btn-store {
  cursor: default;
  color: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.25);
}
span.btn-store svg {
  opacity: 0.75;
}
span.btn-store > span > span:first-child {
  color: rgba(255, 193, 94, 0.98) !important;
  opacity: 1 !important;
  font-weight: 700;
}

/* App Store — yayında, tıklanabilir */
a.btn-store {
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  border-color: rgba(229,9,20,0.55);
  background: linear-gradient(160deg, rgba(229,9,20,0.35) 0%, rgba(26,26,46,0.95) 55%);
  box-shadow: 0 4px 24px rgba(229,9,20,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}
a.btn-store svg {
  opacity: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}
/* Küçük üst satır (Yayında / Available) */
a.btn-store > span > span:first-child {
  color: var(--success) !important;
  opacity: 1 !important;
  font-weight: 700;
  letter-spacing: 0.02em;
}
a.btn-store:hover {
  border-color: var(--accent-hover);
  background: linear-gradient(160deg, rgba(255,61,71,0.45) 0%, rgba(26,26,52,0.98) 55%);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(229,9,20,0.45), inset 0 1px 0 rgba(255,255,255,0.12);
}
a.btn-store:active {
  transform: translateY(-1px);
}
.hero-disclaimer {
  margin-top: 32px; font-size: 0.82rem; color: rgba(255,255,255,0.52);
  max-width: 520px; margin-left: auto; margin-right: auto;
  line-height: 1.55;
}
.hero-mockup {
  margin-top: 64px; max-width: 900px; margin-left: auto; margin-right: auto;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px var(--glass-border);
  border: 1px solid var(--divider);
  position: relative;
}
.hero-mockup::before {
  content: '';
  display: block;
  height: 36px;
  background: linear-gradient(180deg, #2a2a3a 0%, #1e1e2e 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background-image:
    radial-gradient(circle at 18px 50%, #ff5f57 6px, transparent 6px),
    radial-gradient(circle at 38px 50%, #febc2e 6px, transparent 6px),
    radial-gradient(circle at 58px 50%, #28c840 6px, transparent 6px);
  background-repeat: no-repeat;
}
.hero-mockup img { width: 100%; height: auto; display: block; }
/* Placeholder when no image */
.mockup-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.9rem; letter-spacing: 0.05em;
}

/* ======================================================
   FEATURES
   ====================================================== */
.section { padding: 96px 0; }
.section-label {
  display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-heading { margin-bottom: 16px; }
.section-subtext { color: var(--text-sec); max-width: 560px; }

.features { background: var(--bg); }
.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-subtext { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all var(--transition);
  position: relative;
}
.feature-card:hover {
  border-color: rgba(229,9,20,0.4); transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55), 0 0 0 1px rgba(229,9,20,0.15);
}
.feature-num {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.12);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(229,9,20,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 8px; font-size: 1rem; }
.feature-card p  { font-size: 0.88rem; line-height: 1.65; }

/* ======================================================
   SCREENSHOTS
   ====================================================== */
.screenshots { background: var(--surface); }
.screenshots-header { text-align: center; margin-bottom: 56px; }
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.screenshot-item {
  border-radius: var(--radius-sm); overflow: hidden;
  border: 1px solid var(--divider);
  background: var(--surface-light);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.screenshot-item:hover { transform: scale(1.03); }
.screenshot-item img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; }
.screenshot-caption {
  padding: 10px 14px;
  font-size: 0.82rem; color: var(--text-muted);
  border-top: 1px solid var(--divider);
}
@media (max-width: 768px) {
  .screenshots-grid { grid-template-columns: 1fr; }
}

/* ======================================================
   DOWNLOAD
   ====================================================== */
.download { background: var(--bg); }
.download-header { text-align: center; margin-bottom: 56px; }
.download-cards {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px;
}
.download-card {
  background: var(--surface); border: 1px solid var(--divider);
  border-radius: var(--radius); padding: 36px 28px;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px;
  transition: all var(--transition);
}
.download-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(229,9,20,0.06) 100%);
}
.download-card.featured:hover {
  box-shadow: 0 0 40px rgba(229,9,20,0.2);
  transform: translateY(-4px);
}
.download-card .platform-icon {
  font-size: 2.8rem; line-height: 1;
}
.download-card h3 { font-size: 1.2rem; color: var(--text); }
.download-card p  { font-size: 0.9rem; color: var(--text-sec); }
.download-meta {
  font-size: 0.78rem; color: var(--text-muted);
  display: flex; flex-direction: column; gap: 4px;
}
.download-meta span {
  background: var(--surface-light); border-radius: 6px; padding: 3px 10px;
}
@media (max-width: 768px) {
  .download-cards { grid-template-columns: 1fr; }
}

/* ======================================================
   STATS STRIP
   ====================================================== */
.stats-strip {
  background: var(--surface); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider);
  padding: 40px 0;
}
.stats-grid {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 32px;
  text-align: center;
}
.stat-value { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ======================================================
   FAQ
   ====================================================== */
.faq { background: var(--bg); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-bottom: 1px solid var(--divider);
}
.faq-question {
  width: 100%; background: none; border: none; color: var(--text);
  font-size: 1rem; font-weight: 600; text-align: left;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0; width: 18px; height: 18px;
  border-right: 2px solid var(--text-muted); border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg); transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(-135deg); }
.faq-answer {
  overflow: hidden; max-height: 0; transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  color: var(--text-sec); font-size: 0.95rem; line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: none; }

/* ---- Skip link ---- */
.skip-link {
  position: absolute; top: -100%; left: var(--space-4); z-index: 200;
  padding: var(--space-3) var(--space-5);
  background: var(--accent); color: #fff; font-weight: 600; font-size: 0.9rem;
  border-radius: var(--radius-sm); transition: top var(--transition);
}
.skip-link:focus { top: var(--space-4); outline: 2px solid #fff; outline-offset: 2px; }

/* ---- Hero trust strip ---- */
.hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3);
  margin-top: var(--space-6);
}
.hero-trust-item {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius-full);
  background: var(--glass); border: 1px solid var(--glass-border);
  font-size: 0.78rem; font-weight: 600; color: var(--text-sec);
  backdrop-filter: blur(12px);
}
.hero-trust-item .star { color: var(--warning); }

/* ---- Trust bar ---- */
.trust-bar {
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--divider);
  background: var(--surface);
}
.trust-bar-label {
  text-align: center; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: var(--space-5);
}
.trust-bar-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--space-6) var(--space-8);
}
.trust-logo {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 700; color: var(--text-muted);
  filter: grayscale(1); opacity: 0.65;
  transition: all var(--transition);
}
.trust-logo:hover { filter: grayscale(0); opacity: 1; color: var(--text); }
.trust-logo-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--surface-light); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
}

/* ---- Features alternating ---- */
.features-list { display: flex; flex-direction: column; gap: var(--space-6); }
.feature-row {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--space-8);
  align-items: center; padding: var(--space-8);
  background: var(--glass); backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.feature-row:hover {
  border-color: rgba(229,9,20,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.45);
}
.feature-row:nth-child(even) { direction: rtl; }
.feature-row:nth-child(even) > * { direction: ltr; }
.feature-visual {
  display: flex; align-items: center; justify-content: center;
  min-height: 120px; font-size: 4rem;
  background: linear-gradient(135deg, rgba(229,9,20,0.12) 0%, rgba(80,120,255,0.08) 100%);
  border-radius: var(--radius); border: 1px solid var(--glass-border);
}
.feature-body { position: relative; }
.feature-body .feature-num {
  position: static; display: block; margin-bottom: var(--space-2);
  font-size: 0.8rem; color: var(--accent); letter-spacing: 0.1em;
}

/* ---- Compare table ---- */
.compare-section { background: var(--bg); }
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%; border-collapse: collapse; min-width: 560px;
  background: var(--glass); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare-table th, .compare-table td {
  padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--divider);
  font-size: 0.9rem;
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; font-weight: 600; color: var(--text); }
.compare-table thead th {
  background: var(--surface-light); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted);
}
.compare-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-yes { color: var(--success); font-weight: 700; }
.compare-no  { color: var(--text-muted); }
.compare-partial { color: var(--warning); font-size: 0.82rem; }

/* ---- Changelog ---- */
.changelog-section { background: var(--surface); }
.changelog-timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: 28px; }
.changelog-timeline::before {
  content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--accent), var(--divider));
}
.changelog-entry {
  position: relative; margin-bottom: var(--space-8); padding: var(--space-6);
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); backdrop-filter: blur(16px);
}
.changelog-entry::before {
  content: ''; position: absolute; left: -25px; top: 28px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--surface);
}
.changelog-entry:first-child::before { box-shadow: 0 0 0 4px var(--surface), 0 0 12px var(--accent); }
.changelog-version {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.changelog-version h3 { font-size: 1.15rem; color: var(--text); }
.changelog-date { font-size: 0.82rem; color: var(--text-muted); }
.changelog-entry ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.changelog-entry li {
  font-size: 0.9rem; color: var(--text-sec); padding-left: 18px; position: relative;
}
.changelog-entry li::before {
  content: '•'; position: absolute; left: 0; color: var(--accent);
}

/* ---- FAQ categories ---- */
.faq-category { margin-bottom: var(--space-10); }
.faq-category-title {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: var(--space-4); padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--divider);
}

/* ---- Screenshot lightbox ---- */
.screenshot-item { cursor: pointer; }
.screenshot-item img { transition: transform var(--transition); }
.screenshot-item:hover img { transform: scale(1.03); }
.lightbox-dialog, .demo-dialog {
  border: none; padding: 0; background: transparent; max-width: 95vw; max-height: 95vh;
}
.lightbox-dialog::backdrop, .demo-dialog::backdrop { background: rgba(0,0,0,0.88); backdrop-filter: blur(8px); }
.lightbox-inner { position: relative; }
.lightbox-inner img { max-height: 85vh; border-radius: var(--radius); }
.lightbox-close, .demo-close {
  position: absolute; top: -40px; right: 0;
  background: var(--surface); border: 1px solid var(--divider); color: var(--text);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.demo-inner { width: min(900px, 90vw); aspect-ratio: 16/9; background: #000; border-radius: var(--radius-lg); overflow: hidden; }
.demo-inner iframe { width: 100%; height: 100%; border: none; }

/* ---- Download badges ---- */
.download-built {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: var(--space-3);
}
.download-built span {
  font-size: 0.72rem; padding: 4px 10px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.06); color: var(--text-muted); border: 1px solid var(--divider);
}

/* ---- Footer extras ---- */
.footer-social {
  display: flex; gap: var(--space-3); margin-top: var(--space-3);
}
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--text-sec); transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-newsletter {
  margin-top: var(--space-4); font-size: 0.85rem; color: var(--text-muted);
}
.footer-newsletter a { color: var(--accent); text-decoration: underline; }

/* ---- Back to top ---- */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-accent); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(229,9,20,0.5); }
.back-to-top svg { width: 20px; height: 20px; }

/* ---- Count-up stat ---- */
.stat-value[data-count] { font-variant-numeric: tabular-nums; }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero::after, .hero-orb { animation: none !important; }
  .fade-in { opacity: 1; transform: none; transition: none; }
  .feature-row:hover, .feature-card:hover, .screenshot-item:hover img { transform: none; }
}

@media (max-width: 768px) {
  .feature-row { grid-template-columns: 1fr; direction: ltr !important; }
  .feature-row:nth-child(even) { direction: ltr !important; }
  .trust-bar-logos { gap: var(--space-4); }
  .back-to-top { bottom: 20px; right: 20px; }
}

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background: var(--surface); border-top: 1px solid var(--divider);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 800;
}
.footer-brand-logo img { width: 32px; height: 32px; border-radius: 7px; }
.footer-brand p { font-size: 0.87rem; max-width: 300px; }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--text-sec); font-size: 0.9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  border-top: 1px solid var(--divider); padding-top: 24px;
  font-size: 0.8rem; color: var(--text-muted);
}
.footer-disclaimer {
  text-align: center; font-size: 0.77rem; color: var(--text-muted);
  padding: 20px 0 0; line-height: 1.6;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ======================================================
   PRIVACY PAGE
   ====================================================== */
.privacy-page {
  padding-top: 100px; padding-bottom: 80px;
  max-width: 820px; margin: 0 auto;
}
.privacy-page h1 { margin-bottom: 8px; }
.privacy-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 48px; }
.privacy-section { margin-bottom: 40px; }
.privacy-section h2 {
  font-size: 1.15rem; margin-bottom: 12px; color: var(--text);
  padding-bottom: 8px; border-bottom: 1px solid var(--divider);
}
.privacy-section p { font-size: 0.95rem; line-height: 1.8; }
.privacy-section a { color: var(--accent); text-decoration: underline; }

/* ======================================================
   404 PAGE
   ====================================================== */
.page-404 {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px 20px;
}
.page-404 h1 { font-size: 6rem; color: var(--accent); margin-bottom: 8px; }
.page-404 p  { margin-bottom: 32px; }

/* ======================================================
   ANIMATIONS (IntersectionObserver driven)
   ====================================================== */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1; transform: translateY(0);
}

/* stagger children */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.0s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.07s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.14s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.21s; }
.features-grid .feature-card:nth-child(5) { transition-delay: 0.28s; }
.features-grid .feature-card:nth-child(6) { transition-delay: 0.35s; }
.features-grid .feature-card:nth-child(7) { transition-delay: 0.42s; }
.features-grid .feature-card:nth-child(8) { transition-delay: 0.49s; }

.features-list .feature-row:nth-child(1) { transition-delay: 0.0s; }
.features-list .feature-row:nth-child(2) { transition-delay: 0.06s; }
.features-list .feature-row:nth-child(3) { transition-delay: 0.12s; }
.features-list .feature-row:nth-child(4) { transition-delay: 0.18s; }
.features-list .feature-row:nth-child(5) { transition-delay: 0.24s; }
.features-list .feature-row:nth-child(6) { transition-delay: 0.30s; }
.features-list .feature-row:nth-child(7) { transition-delay: 0.36s; }
.features-list .feature-row:nth-child(8) { transition-delay: 0.42s; }

.btn-download-win:active, .btn-primary:active { transform: translateY(0) scale(0.98); }

/* ======================================================
   RESPONSIVE OVERRIDES
   ====================================================== */
@media (max-width: 1024px) {
  .screenshots-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero { padding: 110px 0 72px; }
  .section { padding: 72px 0; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-download-win, .btn-store { width: 100%; max-width: 320px; justify-content: center; }
  .download-cards { grid-template-columns: 1fr; }
  .screenshots-grid { grid-template-columns: 1fr; }
  .stats-grid { gap: 20px; }
}
