/* ===== Hero, live band, client mockup ===== */

.hero {
  position: relative;
  min-height: min(980px, 100vh);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 70px) 0 90px;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
#hero-canvas.ready { opacity: 1; }

/* vignette so text always wins over the 3D scene */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 50% 45%, rgba(8, 11, 16, 0.55) 0%, rgba(8, 11, 16, 0.25) 45%, transparent 70%),
    linear-gradient(180deg, transparent 55%, var(--bg) 100%);
}

.hero .wrap { position: relative; z-index: 2; }

.hero-inner { max-width: 880px; }

.hero h1 { margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 30px rgba(47, 139, 255, 0.35));
}

.hero-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  max-width: 620px;
  color: var(--text-soft);
  margin-bottom: 32px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  font-size: 0.9rem;
  color: var(--text-mute);
}

.stars { display: inline-flex; gap: 3px; color: #ffc056; }
.stars svg { width: 15px; height: 15px; }

.trust-item { display: inline-flex; align-items: center; gap: 8px; }
.trust-item b { color: var(--text); font-weight: 700; }

/* version chip above the headline */
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 100px;
  border: 1px solid var(--line-strong);
  background: rgba(20, 26, 36, 0.66);
  backdrop-filter: var(--blur);
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.hero-chip .tag {
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--grad-ice);
  color: #07121e;
  font: 700 0.72rem/1 'Inter', sans-serif;
  letter-spacing: 0.04em;
}

/* floating glass stat cards (parallax via JS) */
.float-card {
  position: absolute;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(16, 22, 32, 0.72);
  backdrop-filter: var(--blur);
  box-shadow: var(--shadow-lg);
  min-width: 168px;
  will-change: transform;
  animation: float-y 7s ease-in-out infinite;
}
.float-card .fc-label {
  font: 600 0.68rem/1 'Inter', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.float-card .fc-value {
  font: 700 1.5rem/1.2 'Sora', sans-serif;
  color: #fff;
  margin-top: 8px;
}
.float-card .fc-value small { font-size: 0.78rem; color: var(--ice-200); font-weight: 600; }

.fc-1 { top: 24%; right: 4%; animation-delay: -1.2s; }
.fc-2 { bottom: 20%; right: 13%; animation-delay: -3.4s; }
.fc-3 { bottom: 12%; left: 2%; animation-delay: -5.1s; }

@media (max-width: 1080px) {
  .float-card { display: none; }
}

/* ---------- Anti-cheat marquee ---------- */
.acs {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 21, 0.6);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}
.acs::before,
.acs::after {
  content: '';
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.acs::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.acs::after { right: 0; background: linear-gradient(270deg, var(--bg), transparent); }

.acs-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.acs:hover .acs-track { animation-play-state: paused; }

.acs-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 600 1rem/1 'Sora', sans-serif;
  color: #6f7d92;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.acs-item:hover { color: var(--ice-200); }
.acs-item svg { width: 16px; height: 16px; color: var(--ok); }

/* ---------- Live stat band ---------- */
.statband {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  padding: 26px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--grad-panel);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(87, 166, 255, 0.6), transparent);
}
.stat-value {
  font: 800 clamp(1.8rem, 3.2vw, 2.6rem)/1 'Sora', sans-serif;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label {
  margin-top: 10px;
  font: 500 0.84rem/1.4 'Inter', sans-serif;
  color: var(--text-mute);
}

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