/* ===========================
   BLOXBOOST — STYLES v2
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --bg:        #0c0518;
  --bg2:       #0e0620;
  --glass:     rgba(22,10,42,0.6);
  --glass2:    rgba(30,14,55,0.5);
  --gb:        rgba(150,120,200,0.15);
  --acc1:      #5e3f9e;
  --acc2:      #7c5cbf;
  --acc3:      #a888e8;
  --acc-light: #c4b5f4;
  --text:      #ede8f8;
  --muted:     #b0a5c8;
  --gray:      #7a708e;
  --green:     #4ade80;
  --fd:        'Bebas Neue', sans-serif;
  --fb:        'Outfit', sans-serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 92, 191, 0.75) rgba(12, 5, 24, 0.85);
}

/* Custom scrollbar (WebKit: Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(12, 5, 24, 0.75);
  border-radius: 999px;
  margin-block: 4px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--acc2), var(--acc1));
  border-radius: 999px;
  border: 2px solid rgba(12, 5, 24, 0.9);
  box-shadow: 0 0 12px rgba(168, 136, 232, 0.35);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--acc-light), var(--acc2));
}
::-webkit-scrollbar-corner {
  background: transparent;
}

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  cursor: default;
}

/* ========== BACKGROUND ========== */
.bg-wrap {
  position: fixed; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 20% 10%, #1d0a3a 0%, #080314 50%, #0e0325 100%);
  overflow: hidden;
}
#particleCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.4;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.orb1 { width:700px; height:700px; background:radial-gradient(circle,#4a2a80 0%,transparent 70%); top:-200px; left:-200px; animation: drift1 18s ease-in-out infinite; }
.orb2 { width:500px; height:500px; background:radial-gradient(circle,#3a1a6e 0%,transparent 70%); bottom:-150px; right:-100px; animation: drift2 22s ease-in-out infinite; }
.orb3 { width:400px; height:400px; background:radial-gradient(circle,#6b3da8 0%,transparent 70%); top:40%; left:55%; animation: drift3 16s ease-in-out infinite; }
.orb4 { width:250px; height:250px; background:radial-gradient(circle,#8b5cf6 0%,transparent 70%); top:60%; left:10%; animation: drift4 25s ease-in-out infinite; opacity:0.5; }

@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(60px,-40px) scale(1.08)} 66%{transform:translate(-30px,50px) scale(0.95)} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(-50px,30px) scale(1.05)} 66%{transform:translate(40px,-60px) scale(0.9)} }
@keyframes drift3 { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(-80px,60px) scale(1.1)} }
@keyframes drift4 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(50px,-40px)} }

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(140,100,220,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140,100,220,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 75%);
}
.noise-overlay {
  position: absolute; inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ========== GLASS ========== */
.glass {
  background: var(--glass);
  border: 1px solid var(--gb);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
}

/* ========== NAVBAR ========== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  border-bottom: 1px solid rgba(140,100,220,0.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  transition: background .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(8,2,18,0.92);
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 66px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; cursor: pointer;
}
.logo-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,92,191,0.15);
  border: 1px solid rgba(196,181,244,0.15);
  border-radius: 9px;
  transition: background .3s, transform .3s;
}
.logo-icon:hover { background: rgba(124,92,191,0.3); transform: rotate(8deg) scale(1.05); }
.logo-icon.small { width:28px; height:28px; border-radius:7px; }
.logo-text {
  font-family: var(--fd);
  font-size: 1.1rem; letter-spacing: 2px;
  color: var(--text);
}
.logo-text.small { font-size: .85rem; }
.logo-accent { color: var(--acc-light); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: .85rem; font-weight: 500; letter-spacing: .3px;
  position: relative; padding-bottom: 2px;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--acc-light);
  transition: right .3s ease;
}
.nav-links a:hover { color: var(--acc-light); }
.nav-links a:hover::after { right: 0; }

.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(94,63,158,0.2);
  border: 1px solid var(--gb);
  color: var(--acc-light);
  padding: 6px 14px; border-radius: 20px;
  cursor: pointer; font-size: .82rem; font-weight: 500;
  font-family: var(--fb);
  transition: all .25s;
}
.lang-btn:hover { background: var(--acc1); border-color: var(--acc2); color: #fff; }

.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .3s;
}
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: .5rem;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--gb);
  background: rgba(8,2,18,0.95);
  backdrop-filter: blur(20px);
}
.mobile-menu a {
  color: var(--muted); text-decoration: none;
  font-size: .95rem; padding: .4rem 0;
  border-bottom: 1px solid rgba(140,100,220,0.06);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--acc-light); }
.mobile-menu.open { display: flex; }

/* ========== HERO ========== */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(94,63,158,0.2);
  border: 1px solid rgba(150,120,220,0.3);
  color: var(--acc-light);
  padding: 7px 22px; border-radius: 30px;
  font-size: .72rem; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 2.5rem;
  animation: fadeUp .8s ease both;
}

.hero-title-wrap {
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.hero-h1 {
  display: flex; flex-direction: column;
  font-family: var(--fd);
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: .95; letter-spacing: 4px;
  color: var(--text);
}
.hero-h1 .line {
  display: block;
  animation: slideInUp .9s cubic-bezier(0.22,1,0.36,1) both;
}
.hero-h1 .line1 { animation-delay: .1s; }
.hero-h1 .line2 { animation-delay: .22s; }
.hero-h1 .line3 { animation-delay: .34s; }
.accent-line {
  background: linear-gradient(90deg, var(--acc2), var(--acc-light), var(--acc2));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp .9s cubic-bezier(0.22,1,0.36,1) .22s both,
             shimmer 4s linear 1.5s infinite !important;
}
@keyframes shimmer { 0%{background-position:0% center} 100%{background-position:200% center} }

.hero-sub {
  max-width: 520px; color: var(--muted);
  font-size: 1.05rem; line-height: 1.8; margin-bottom: 2.8rem;
  animation: fadeUp .9s ease .5s both;
}
.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .9s ease .65s both;
}

.btn-primary {
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--acc1), var(--acc3));
  color: #fff; padding: 15px 36px; border-radius: 12px;
  border: none; font-size: .95rem; font-weight: 600;
  cursor: pointer; font-family: var(--fb);
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--acc2), var(--acc-light));
  opacity: 0; transition: opacity .3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(124,92,191,0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-ghost {
  display: flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--gb);
  color: var(--muted); padding: 15px 36px; border-radius: 12px;
  font-size: .95rem; cursor: pointer; font-family: var(--fb);
  transition: all .25s;
}
.btn-ghost:hover { border-color: var(--acc3); color: var(--acc-light); background: rgba(124,92,191,0.08); }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  animation: fadeUp 1s ease 1.2s both;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--acc3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{opacity:.3;transform:scaleY(1)}
  50%{opacity:1;transform:scaleY(1.2)}
}

/* ========== STATS BAND ========== */
.stats-band {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  background: var(--glass);
  border: 1px solid var(--gb);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  margin-bottom: 3rem;
  overflow: hidden;
}
.stat-item {
  flex: 1; min-width: 140px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}
.stat-num {
  font-family: var(--fd);
  font-size: 2.8rem; letter-spacing: 1px;
  color: var(--acc-light);
  line-height: 1;
}
.star-icon { color: #fbbf24; font-style: normal; font-size: 1.8rem; }
.stat-lab {
  font-size: .7rem; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--gray);
  margin-top: .4rem; font-weight: 500;
}
.stat-divider {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gb), transparent);
  flex-shrink: 0;
}

/* ========== WHY SECTION ========== */
.why-section {
  position: relative; z-index: 1;
  padding: 6rem 2rem;
  border-top: 1px solid rgba(140,100,220,0.08);
  border-bottom: 1px solid rgba(140,100,220,0.08);
  background: linear-gradient(135deg, rgba(60,30,100,0.06), rgba(80,40,130,0.04));
}
.why-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.why-text .section-label { margin-bottom: .8rem; }
.why-title {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}
.why-title em { color: var(--acc3); font-style: normal; }
.why-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1.8rem; }
.why-tags {
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(94,63,158,0.18);
  border: 1px solid rgba(150,120,220,0.25);
  color: var(--acc-light);
  padding: 7px 14px; border-radius: 8px;
  font-size: .78rem; font-weight: 500;
  transition: all .25s; cursor: default;
}
.tag:hover { background: rgba(94,63,158,0.35); border-color: var(--acc2); transform: translateY(-2px); }

/* FPS GAUGE */
.fps-gauge {
  padding: 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.gauge-label {
  font-family: var(--fd);
  font-size: .7rem; letter-spacing: 4px; color: var(--gray);
  margin-bottom: 1.2rem;
}
.gauge-bar-wrap { margin-bottom: 1rem; }
.gauge-bar-track {
  height: 8px; background: rgba(255,255,255,0.06);
  border-radius: 4px; overflow: hidden; margin-bottom: .4rem;
  position: relative;
}
.gauge-bar-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--acc1), var(--acc-light));
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(168,136,232,0.6);
  animation: gaugeAnim 3s ease-in-out infinite;
}
@keyframes gaugeAnim {
  0%,100%{width:100%;filter:brightness(1)}
  50%{width:88%;filter:brightness(1.2)}
}
.gauge-vals {
  display: flex; justify-content: space-between;
  font-size: .65rem; color: var(--gray); letter-spacing: .5px;
}
.gauge-reading {
  font-family: var(--fd);
  font-size: 3.5rem; letter-spacing: 2px;
  color: var(--acc-light); line-height: 1;
  margin-bottom: .4rem;
  text-shadow: 0 0 30px rgba(196,181,244,0.4);
}
.gauge-reading small { font-size: 1rem; color: var(--gray); }
.gauge-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .72rem; color: var(--green); letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 1.5rem;
}
.mini-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: .5rem; margin-top: 1rem;
}
.mini-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(140,100,220,0.1);
  border-radius: 10px; padding: .7rem .5rem;
  display: flex; flex-direction: column; gap: .2rem;
}
.mini-label { font-size: .6rem; letter-spacing: 2px; color: var(--gray); text-transform: uppercase; }
.mini-val { font-family: var(--fd); font-size: 1.1rem; color: var(--acc-light); }

/* ========== SHARED SECTION ========== */
.section {
  position: relative; z-index: 1;
  padding: 5rem 2rem;
  max-width: 1160px; margin: 0 auto;
}
.section-label {
  font-size: .7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--acc3); margin-bottom: .6rem; font-weight: 600;
}
.section-label.center { text-align: center; }
.section-title {
  font-family: var(--fd);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; letter-spacing: 2px;
  margin-bottom: .8rem;
}
.section-title.center { text-align: center; }
.section-sub {
  color: var(--muted); max-width: 540px;
  line-height: 1.8; margin-bottom: 3rem; font-size: .95rem;
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
}
.feat-card {
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(0.22,1,0.36,1), box-shadow .3s;
  cursor: default;
}
.feat-card::before {
  content: ''; position: absolute;
  inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(124,92,191,0.06), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.feat-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(94,63,158,0.2);
}
.feat-card:hover::before { opacity: 1; }
.feat-icon-wrap {
  width: 50px; height: 50px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(94,63,158,0.3), rgba(124,92,191,0.15));
  border: 1px solid rgba(150,120,220,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--acc-light);
  transition: all .3s;
}
.feat-card:hover .feat-icon-wrap {
  background: linear-gradient(135deg, rgba(124,92,191,0.5), rgba(168,136,232,0.2));
  box-shadow: 0 0 20px rgba(168,136,232,0.3);
  transform: scale(1.08) rotate(-3deg);
}
.feat-card h3 {
  font-family: var(--fd);
  font-size: 1.1rem; letter-spacing: 1px;
  margin-bottom: .5rem; color: var(--text);
}
.feat-card p { font-size: .875rem; color: var(--muted); line-height: 1.7; }
.feat-glow {
  position: absolute; bottom: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,191,0.15), transparent 70%);
  transition: all .4s;
  pointer-events: none;
}
.feat-card:hover .feat-glow {
  width: 200px; height: 200px;
  bottom: -80px; right: -80px;
  background: radial-gradient(circle, rgba(168,136,232,0.2), transparent 70%);
}

/* ========== PREVIEW ========== */
.preview-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem; align-items: center;
}
.preview-img-box {
  border-radius: 18px; overflow: hidden;
  padding: 0;
  background: rgba(8,3,18,0.7);
  border: 1px solid var(--gb);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transition: transform .4s ease, box-shadow .4s ease;
}
.preview-img-box:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 40px 100px rgba(94,63,158,0.3);
}
.preview-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: .7rem 1rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--gb);
}
.preview-chrome span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.preview-chrome span:nth-child(1) { background: rgba(255,100,100,0.4); }
.preview-chrome span:nth-child(2) { background: rgba(255,200,50,0.4); }
.preview-chrome span:nth-child(3) { background: rgba(80,200,80,0.4); }
.preview-img-inner {
  position: relative; min-height: 260px;
  display: flex; align-items: center; justify-content: center;
}
.preview-img-inner img {
  width: 100%; display: block;
  transition: transform .5s ease, filter .25s ease;
  cursor: zoom-in;
}
.preview-img-box:hover img { transform: scale(1.02); filter: brightness(1.05); }
.img-placeholder {
  display: none;
  flex-direction: column; align-items: center; gap: .8rem;
  color: var(--gray); font-size: .8rem;
  padding: 3rem;
}
.preview-img-inner.no-img img { display: none; }
.preview-img-inner.no-img .img-placeholder { display: flex; }

/* ========== PREVIEW LIGHTBOX ========== */
.preview-lightbox {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .24s ease, visibility .24s ease;
}
.preview-lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 2, 12, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lightbox-content {
  position: relative;
  z-index: 1;
  width: min(1000px, 92vw);
  max-height: 88vh;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(196,181,244,0.35);
  transform: scale(.96) translateY(8px);
  transition: transform .26s ease;
}
.preview-lightbox.open .lightbox-content {
  transform: scale(1) translateY(0);
}
.lightbox-content img {
  display: block;
  width: 100%;
  max-height: calc(88vh - 24px);
  object-fit: contain;
  border-radius: 10px;
}
.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196,181,244,0.45);
  border-radius: 999px;
  background: rgba(20, 10, 35, 0.95);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.45);
  transition: transform .2s ease, background .2s ease;
}
.lightbox-close:hover {
  transform: scale(1.06);
  background: rgba(40, 18, 70, 0.98);
}

.preview-text h3 {
  font-family: var(--fd);
  font-size: 2rem; letter-spacing: 2px;
  margin-bottom: 1rem; color: var(--text);
}
.preview-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-size: .9rem; }
.prev-note { font-size: .78rem !important; color: var(--gray) !important; }
.compat-chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(78,58,112,0.2);
  border: 1px solid rgba(120,90,180,0.2);
  color: var(--muted);
  padding: 5px 12px; border-radius: 8px; font-size: .74rem;
}
.chip.win { border-color: rgba(168,136,232,0.3); color: var(--acc-light); }

/* ========== DOWNLOAD ========== */
.download-section { text-align: center; }
.dl-card {
  max-width: 500px; margin: 0 auto;
  padding: 3rem 2.8rem;
  position: relative; overflow: hidden;
}
.dl-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(135deg, rgba(124,92,191,0.08), transparent 60%);
  pointer-events: none;
}
.dl-badge {
  display: inline-block;
  background: rgba(94,63,158,0.25);
  border: 1px solid rgba(150,120,220,0.3);
  color: var(--acc-light);
  padding: 4px 16px; border-radius: 20px;
  font-size: .7rem; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 600; margin-bottom: 1.5rem;
}
.dl-price-row {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-bottom: 1.5rem;
}
.dl-price {
  font-family: var(--fd);
  font-size: 5rem; line-height: 1;
  color: var(--acc-light);
  text-shadow: 0 0 40px rgba(196,181,244,0.3);
}
.dl-price sup { font-size: 1.8rem; vertical-align: top; margin-top: .8rem; display: inline-block; }
.dl-desc { color: var(--muted); font-size: .88rem; line-height: 1.6; text-align: left; }
.dl-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gb), transparent);
  margin: 1.5rem 0;
}
.dl-list {
  text-align: left; display: flex; flex-direction: column; gap: .8rem;
  margin-bottom: 2rem;
}
.dl-item {
  display: flex; align-items: center; gap: .7rem;
  font-size: .88rem; color: var(--muted);
}
.dl-item svg { color: var(--acc3); flex-shrink: 0; }

.btn-download {
  width: 100%; padding: 18px;
  font-family: var(--fd);
  font-size: 1.3rem; letter-spacing: 2px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--acc1), var(--acc3));
  border: none; color: #fff; cursor: pointer;
  text-decoration: none; box-sizing: border-box;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.btn-download::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--acc2), var(--acc-light));
  opacity: 0; transition: opacity .3s;
}
.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(124,92,191,0.55);
}
.btn-download:hover::before { opacity: 1; }
.btn-download span, .btn-download svg { position: relative; z-index: 1; }
.btn-shine {
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-20deg);
  animation: shine 3.5s ease-in-out infinite;
}
@keyframes shine { 0%,100%{left:-100%} 40%,60%{left:160%} }

.win-compat {
  display: flex; justify-content: center;
  gap: .4rem; flex-wrap: wrap; margin-top: 1.2rem;
}
.dl-note {
  font-size: .74rem; color: var(--gray);
  margin-top: 1rem; text-align: center;
}

/* ========== FOOTER ========== */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(140,100,220,0.08);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: .6rem;
}
.footer-logo-row { display: flex; align-items: center; gap: 8px; }
.footer-copy { font-size: .78rem; color: var(--gray); }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInUp {
  from { opacity: 0; transform: translateY(60px) skewY(2deg); }
  to { opacity: 1; transform: translateY(0) skewY(0deg); }
}

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s cubic-bezier(0.22,1,0.36,1), transform .8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children of features grid */
.features-grid .feat-card {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.features-grid.visible .feat-card:nth-child(1) { opacity:1;transform:none;transition-delay:.05s }
.features-grid.visible .feat-card:nth-child(2) { opacity:1;transform:none;transition-delay:.12s }
.features-grid.visible .feat-card:nth-child(3) { opacity:1;transform:none;transition-delay:.19s }
.features-grid.visible .feat-card:nth-child(4) { opacity:1;transform:none;transition-delay:.26s }
.features-grid.visible .feat-card:nth-child(5) { opacity:1;transform:none;transition-delay:.33s }
.features-grid.visible .feat-card:nth-child(6) { opacity:1;transform:none;transition-delay:.40s }

/* ========== PULSE DOT ========== */
.pulse-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: pulseGlow 2s ease-in-out infinite;
}
.pulse-dot.green { background: var(--green); }
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .fps-gauge { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .preview-wrap { grid-template-columns: 1fr; }
  .stats-band { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { min-width: 120px; }
  .hero-h1 { font-size: clamp(3.2rem, 14vw, 6rem); }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(2.8rem, 16vw, 4rem); }
  .dl-card { padding: 2rem 1.5rem; }
  .dl-price { font-size: 3.5rem; }
  .features-grid { grid-template-columns: 1fr; }
}