/* ==== Tools — cold-blue theme ============================================ */

:root {
  --accent:        #1E90FF;
  --accent-2:      #6bb6ff;
  --accent-hover:  #4aa9ff;
  --accent-soft:   rgba(30, 144, 255, 0.15);
  --accent-glow:   rgba(30, 144, 255, 0.4);
  --bg:            #05070d;
  --bg-2:          #0a0f1c;
  --text:          #f5f8ff;
  --muted:         rgba(255, 255, 255, 0.58);
  --dim:           rgba(255, 255, 255, 0.4);
  --line:          rgba(255, 255, 255, 0.08);
  --line-2:        rgba(255, 255, 255, 0.14);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, .logo, .price-final, .val {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.3px;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection { background: var(--accent); color: #fff; }

/* ==== Background =========================================================== */

.hero-bg-container {
  position: fixed; inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse at 20% 0%, #0d1e3f 0%, transparent 40%),
    radial-gradient(ellipse at 80% 30%, #061633 0%, transparent 55%),
    linear-gradient(180deg, #05070d 0%, #030510 100%);
  pointer-events: none;
}
#topo-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  opacity: 0.55;
}

/* Background video */
.bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  filter: saturate(1.1) brightness(0.9);
}
.bg-video-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(5,7,13,0.55) 0%,
      rgba(5,7,13,0.75) 45%,
      rgba(5,7,13,0.96) 100%),
    radial-gradient(ellipse at 50% 0%, transparent 0%, rgba(5,7,13,0.5) 80%);
}
@media (max-width: 700px), (prefers-reduced-motion: reduce) {
  .bg-video { display: none; }
}
.orb-glow {
  position: fixed;
  top: 20%; left: 55%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(30,144,255,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: -2;
  filter: blur(20px);
  animation: orbFloat 18s ease-in-out infinite;
}
@keyframes orbFloat {
  0%,100% { transform: translate(-50%, -50%) scale(1); }
  50%     { transform: translate(-52%, -45%) scale(1.1); }
}

/* ==== Header =============================================================== */

header.top-nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex; justify-content: center;
  pointer-events: none;
}
header.top-nav.scrolled { padding: 14px 0; }

header.top-nav .nav-inner {
  pointer-events: auto;
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  width: 95%; max-width: 1100px;
  padding: 14px 28px;
  background: rgba(10, 15, 28, 0.72);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--line);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.65),
              0 0 40px rgba(30,144,255,0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}
header.top-nav.scrolled .nav-inner {
  box-shadow: 0 20px 40px rgba(0,0,0,0.85),
              0 0 40px rgba(30,144,255,0.12);
}

.nav-left, .nav-center, .nav-right { display: flex; flex: 1; align-items: center; }
.nav-left   { justify-content: flex-start; }
.nav-center { justify-content: center; gap: 30px; }
.nav-right  { justify-content: flex-end; gap: 12px; }

.nav-center a {
  color: rgba(255,255,255,0.65);
  font-size: 13px; font-weight: 500;
  transition: color 0.3s;
  position: relative;
}
.nav-center a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-center a:hover { color: #fff; }
.nav-center a:hover::after { transform: scaleX(1); }

@media (max-width: 900px) {
  .nav-center { display: none; }
  header.top-nav .nav-inner { padding: 12px 18px; }
  header.top-nav.scrolled .nav-inner { padding: 10px 15px; }
}

/* Burger + mobile menu */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  padding: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
.nav-burger span {
  display: block;
  height: 2px; width: 100%;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 900px) {
  .nav-burger { display: flex; }
}
.mobile-menu {
  pointer-events: auto;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 95%; max-width: 1100px;
  background: rgba(10, 15, 28, 0.92);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  display: none;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.mobile-menu a {
  padding: 13px 16px;
  border-radius: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 14px; font-weight: 500;
  transition: 0.2s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); color: #fff; }

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; color: #fff;
}
.logo-img {
  width: 32px; height: 32px;
  border-radius: 9px;
  object-fit: cover;
  border: 1px solid rgba(30,144,255,0.35);
  box-shadow: 0 0 14px var(--accent-soft);
  display: block;
}
.footer-logo .logo-img { width: 28px; height: 28px; }
.logo-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background:
    radial-gradient(circle at 30% 30%, var(--accent-2), var(--accent) 55%, #0a4780 100%);
  box-shadow:
    0 0 18px var(--accent-glow),
    inset 0 0 8px rgba(255,255,255,0.35),
    inset 0 -3px 8px rgba(0,0,0,0.3);
  display: inline-block;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute; inset: 6px;
  border-radius: 5px;
  background: rgba(255,255,255,0.15);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.4);
}

/* Lang dropdown */
.lang-dropdown { position: relative; }
.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: none;
  padding: 6px 10px; cursor: pointer;
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: 0.3s;
}
.lang-switch:hover { color: #fff; background: rgba(255,255,255,0.05); }
.lang-menu {
  position: absolute; top: 100%; right: 0;
  margin-top: 8px;
  background: #0d1220;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  display: flex; flex-direction: column; gap: 4px;
  min-width: 140px;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  z-index: 200;
}
.lang-dropdown.active .lang-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  font-size: 13px; font-weight: 500; color: #ccc;
  cursor: pointer; border-radius: 8px;
  transition: 0.2s;
}
.lang-option:hover { background: rgba(255,255,255,0.05); color: #fff; }

.dashboard-btn {
  display: inline-flex; align-items: center;
  background: #fff; color: #000 !important;
  padding: 9px 18px; border-radius: 30px;
  font-weight: 600; font-size: 13px;
  transition: 0.3s;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
}
.dashboard-btn:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255,255,255,0.15);
}

/* ==== Container ============================================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 60px;
  position: relative;
  z-index: 1;
}

/* ==== Hero ================================================================= */

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 120px;
}
@media (max-width: 900px) {
  .hero-wrapper { grid-template-columns: 1fr; }
}

.hero-text .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(46,204,113,0.25);
  background: rgba(46,204,113,0.08);
  color: #7ee787;
  font-size: 12.5px; font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-text h1 {
  font-size: clamp(40px, 6.2vw, 76px);
  font-weight: 900;
  margin: 0 0 22px;
  letter-spacing: -0.035em;
  line-height: 1.03;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0,0,0,0.55);
  background: linear-gradient(180deg, #fff 0%, #bcd0f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-text .subtitle {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--muted);
  max-width: 540px;
  margin: 0 0 32px;
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px; border-radius: 30px;
  font-weight: 700; font-size: 14px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 55%, #0a4780 130%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(30,144,255,0.4),
              inset 0 1px 0 rgba(255,255,255,0.25),
              inset 0 -1px 0 rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(30,144,255,0.55),
              inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  color: #fff;
}
.btn-ghost:hover {
  border-color: var(--line-2);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats b {
  font-family: 'Orbitron', sans-serif;
  font-size: 26px; font-weight: 800;
  color: #fff;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, var(--accent-2) 130%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats span {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Hero terminal */
.hero-visual { position: relative; }
.hero-visual::before {
  content: '';
  position: absolute;
  top: 10%; left: -10%;
  width: 120%; height: 90%;
  background: radial-gradient(ellipse at center, var(--accent-soft) 0%, transparent 60%);
  filter: blur(50px);
  z-index: -1;
}
.hero-card {
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  transform: perspective(1400px) rotateY(-8deg) rotateX(4deg);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-card:hover {
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}
.hero-card-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.4);
  font-size: 12px; color: var(--muted);
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.5px;
}
.hero-card-head .dots { display: flex; gap: 6px; }
.hero-card-head .dots i {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.hero-card-head .dots i:nth-child(1) { background: #ff5f57; }
.hero-card-head .dots i:nth-child(2) { background: #febc2e; }
.hero-card-head .dots i:nth-child(3) { background: #28c840; }
.hero-code {
  margin: 0;
  padding: 26px 24px;
  font-family: 'JetBrains Mono', 'Consolas', monospace;
  font-size: 12.5px;
  line-height: 1.75;
  color: #d5deec;
  white-space: pre;
  overflow: hidden;
}
.hero-code .l    { display: inline-block; width: 5ch; }
.hero-code .ok   { color: #7ee787; }
.hero-code .q    { color: #6bd0ff; }
.hero-code .bar  { color: #6bd0ff; }
.hero-code .k    { color: #ffcc66; }
.hero-code .d    { color: #7ee787; }
.hero-code .p    { color: var(--accent); }
.hero-code b     { color: #fff; font-weight: 700; }

/* ==== Section head ======================================================== */

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.feature-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}
.section-head h2 {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.025em;
}
.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==== Glass card ========================================================== */

.glass-card {
  background: linear-gradient(135deg,
      rgba(255,255,255,0.04) 0%,
      rgba(255,255,255,0.005) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-left: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 15px 35px rgba(0,0,0,0.6),
              inset 0 0 20px rgba(255,255,255,0.02);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

/* ==== Products ============================================================ */

.products-section { margin-bottom: 120px; }

.grid {
  display: grid;
  gap: 24px;
  text-align: left;
}
.grid-2 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  padding: 34px;
  cursor: pointer;
  position: relative;
  display: flex; flex-direction: column;
  min-height: 340px;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-glow);
  border-top-color: rgba(30,144,255,0.9);
  box-shadow: 0 24px 44px rgba(0,0,0,0.85),
              0 0 30px var(--accent-soft);
}
.card:hover::before { opacity: 1; }

.card-status-badge {
  position: absolute;
  top: 20px; right: 20px;
  display: flex; align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  padding: 5px 11px;
  border-radius: 20px;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.card-status-badge .status-dot {
  width: 8px; height: 8px; border-radius: 50%;
}

.card-icon-wrapper {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30,144,255,0.14) 0%, rgba(30,144,255,0.03) 100%);
  border: 1px solid rgba(30,144,255,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--accent-2);
  transition: 0.3s;
  overflow: hidden;
}
.card:hover .card-icon-wrapper {
  border-color: var(--accent);
  box-shadow: 0 0 18px var(--accent-soft);
  transform: rotate(-4deg);
}
.card-icon { width: 30px; height: 30px; }

/* Game logo badges — unified in site's blue theme ------------------------- */
.card-icon-wrapper.game-logo {
  width: auto;
  max-width: 200px;
  height: 68px;
  padding: 0;
  border-radius: 12px;
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(30,144,255,0.10) 0%, rgba(30,144,255,0.02) 100%);
  border: 1px solid rgba(30,144,255,0.25);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.35),
              0 6px 18px rgba(0,0,0,0.35);
  overflow: hidden;
  position: relative;
  transition: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card-icon-wrapper.game-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  filter: saturate(0.85) contrast(1.02);
  transition: filter 0.35s ease, transform 0.5s ease;
}
.card:hover .card-icon-wrapper.game-logo {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 10px 28px var(--accent-soft),
              inset 0 0 20px rgba(0,0,0,0.3);
}
.card:hover .card-icon-wrapper.game-logo img {
  filter: saturate(1) contrast(1.05);
  transform: scale(1.03);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 24px;
  flex: 1;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.price-from { color: var(--dim); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.price-final {
  font-size: 26px; font-weight: 800; color: #fff;
  background: linear-gradient(180deg, #fff 0%, var(--accent-2) 130%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.price-per { color: var(--muted); font-size: 13px; }

.buy-btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  background: linear-gradient(135deg, rgba(30,144,255,0.15) 0%, rgba(30,144,255,0.05) 100%);
  border: 1px solid var(--accent-glow);
  border-radius: 14px;
  color: #cfe4ff;
  font-size: 13.5px;
  font-weight: 700;
  transition: 0.3s;
  gap: 8px;
}
.buy-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateX(4px);
  box-shadow: 0 8px 22px var(--accent-glow);
}

/* Suggest / coming-soon card */
.card-suggest {
  border-style: dashed;
  border-color: var(--line-2);
  border-top: 1px dashed rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.015);
}
.card-suggest:hover {
  border-color: var(--line-2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}
.card-suggest .suggest-icon {
  background: rgba(255,255,255,0.04);
  border-color: var(--line-2);
  color: var(--muted);
}
.card-suggest h3 { color: rgba(255,255,255,0.85); }

/* ==== Steps section ======================================================== */

.steps-section { margin-bottom: 120px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
}
.step-card {
  padding: 36px;
  position: relative;
  counter-increment: step;
}
.step-card::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 22px; right: 26px;
  font-family: 'Orbitron', sans-serif;
  font-size: 46px; font-weight: 900;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}
.step-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30,144,255,0.14), rgba(30,144,255,0.03));
  border: 1px solid rgba(30,144,255,0.25);
  color: var(--accent-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.step-icon svg { width: 26px; height: 26px; }
.step-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.step-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-glow);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7), 0 0 30px var(--accent-soft);
}

/* ==== Bento features ====================================================== */

.bottom-section-wrapper {
  position: relative;
  padding: 60px 0;
  margin-bottom: 100px;
}
.dots-bg {
  position: absolute; inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(rgba(30,144,255,0.15) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}
.features-header-wrapper { margin-bottom: 40px; text-align: left; }
.features-header {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  margin: 12px 0 0;
  letter-spacing: -0.03em;
}
.features-header-wrapper .feature-badge { margin-bottom: 0; }

.bento-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
@media (max-width: 900px) {
  .bento-features { grid-template-columns: 1fr; }
}
.bento-box {
  padding: 40px;
  border-radius: 28px;
  display: flex; flex-direction: column;
}
.bento-box h2 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
}
.bento-box p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: auto;
}
.stat-grid-stacked {
  grid-template-columns: 1fr;
  gap: 22px;
}
.stat-grid-stacked .stat-item:not(:last-child) {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.stat-item .val {
  font-size: 30px;
  font-weight: 900;
  color: var(--accent-2);
  line-height: 1.1;
}
.stat-item .desc {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

.aim-scene {
  width: 100%; height: 200px;
  background: radial-gradient(circle at center, #0a1428, #05070d);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin-top: auto;
}
.speed-vis {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 20px;
}
.speed-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 46px; font-weight: 900;
  color: #fff;
  background: linear-gradient(180deg, #fff 0%, var(--accent-2) 120%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px var(--accent-soft);
}
.speed-bar {
  width: 160px; height: 5px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.speed-bar span {
  position: absolute; top: 0; left: 0; height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent), var(--accent-2));
  background-size: 200% 100%;
  border-radius: 3px;
  animation: speedFlow 2.5s ease-in-out infinite;
}
@keyframes speedFlow {
  0%   { transform: translateX(-100%); background-position: 0% 50%; }
  100% { transform: translateX(0);     background-position: 200% 50%; }
}
.speed-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.faq-section { margin-bottom: 80px; }
.faq-list {
  display: flex; flex-direction: column;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(18,25,42,0.55);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 26px;
  transition: 0.3s;
}
.faq-item[open] {
  border-color: var(--accent-glow);
  background: rgba(30,144,255,0.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.faq-item summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item summary::before {
  content: '+';
  position: absolute;
  right: 32px;
  font-size: 16px;
  color: var(--accent);
  z-index: 1;
  transition: transform 0.3s;
  line-height: 22px;
  width: 22px; text-align: center;
}
.faq-item[open] summary::before { content: '−'; transform: rotate(180deg); }
.faq-item p {
  padding: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ==== Footer ============================================================== */

.site-footer {
  max-width: 1200px;
  margin: 60px auto 30px;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}
.footer-block {
  background: rgba(10, 15, 28, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center;
}
.footer-top {
  flex-direction: column; align-items: flex-start; gap: 12px;
  position: relative;
  overflow: hidden;
  padding: 30px 32px;
}
.footer-top::before {
  content: '';
  position: absolute;
  top: -60%; right: -10%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(30,144,255,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.footer-brand {
  display: flex; align-items: center; gap: 22px;
}
.footer-brand-img {
  width: 84px; height: 84px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(30,144,255,0.35);
  box-shadow: 0 0 26px var(--accent-soft),
              0 10px 24px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.footer-brand-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 24px; font-weight: 800;
  letter-spacing: 0.3px;
  background: linear-gradient(180deg, #fff 0%, var(--accent-2) 140%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.footer-brand-tagline {
  display: inline-block;
  margin: 6px 0 10px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(30,144,255,0.3);
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-desc { color: var(--muted); font-size: 14px; max-width: 520px; line-height: 1.6; }
.footer-desc b { color: rgba(255,255,255,0.85); font-weight: 600; }
@media (max-width: 600px) {
  .footer-brand { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-brand-img { width: 68px; height: 68px; }
}

/* ==== Promo video ========================================================= */

.promo-section {
  margin-bottom: 120px;
  position: relative;
}
.promo-section::before {
  content: '';
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(ellipse at center, rgba(30,144,255,0.16) 0%, transparent 65%);
  filter: blur(48px);
  z-index: -1;
  pointer-events: none;
}
.promo-frame {
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  border-color: rgba(30,144,255,0.28);
  border-top-color: rgba(30,144,255,0.5);
  box-shadow: 0 30px 60px rgba(0,0,0,0.75),
              0 0 50px rgba(30,144,255,0.12);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.6s ease;
}
.promo-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.85),
              0 0 70px rgba(30,144,255,0.2);
}
.promo-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}
.footer-bottom { justify-content: space-between; }
@media (max-width: 768px) {
  .footer-bottom { flex-direction: column; gap: 18px; text-align: center; }
}
.footer-copy { color: var(--dim); font-size: 13px; }
.footer-links-status { display: flex; align-items: center; gap: 25px; }
@media (max-width: 768px) {
  .footer-links-status { flex-direction: column; gap: 15px; }
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted); font-size: 13px; transition: 0.2s; }
.footer-links a:hover { color: #fff; }

.status-badge-footer {
  display: flex; align-items: center; gap: 8px;
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: #7ee787;
  font-weight: 500;
}
.status-badge-footer .status-dot {
  width: 8px; height: 8px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(46,204,113,0.6);
  animation: pulseGreen 1.5s infinite alternate;
}
@keyframes pulseGreen {
  0%   { box-shadow: 0 0 8px rgba(46,204,113,0.4); }
  100% { box-shadow: 0 0 15px rgba(46,204,113,0.9); }
}

/* ==== Nav NEW tag ========================================================= */

.nav-new { display: inline-flex; align-items: center; gap: 6px; }
.new-tag {
  font-size: 9px; font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  letter-spacing: 0.8px;
}

/* ==== Inventory checker =================================================== */

.checker-hero { margin-bottom: 60px; }
.checker-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, #bcd0f5 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.checker-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
}
.checker-game-tabs {
  display: flex; gap: 10px;
  margin-bottom: 18px;
}
.game-tab {
  flex: 1;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 13.5px; font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}
.game-tab:hover { color: #fff; border-color: var(--line-2); }
.game-tab.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-2);
  box-shadow: 0 0 18px rgba(30,144,255,0.15);
}
.checker-input-row {
  display: flex; gap: 12px;
}
.checker-input-row input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  min-width: 0;
}
.checker-input-row input::placeholder { color: var(--dim); }
.checker-input-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.checker-input-row .btn-primary { border-radius: 14px; white-space: nowrap; }
.checker-input-row .btn-primary:disabled { opacity: 0.55; cursor: wait; transform: none; }
@media (max-width: 600px) {
  .checker-input-row { flex-direction: column; }
}
.checker-hint {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--dim);
  line-height: 1.6;
}
.checker-hint code {
  background: rgba(255,255,255,0.06);
  padding: 1px 6px;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
}
.checker-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 13.5px;
  background: var(--accent-soft);
  border: 1px solid rgba(30,144,255,0.3);
  color: var(--accent-2);
}
.checker-status.err {
  background: rgba(231,76,60,0.08);
  border-color: rgba(231,76,60,0.35);
  color: #ff9d94;
}

/* Results */
.checker-results { margin-bottom: 100px; }
.checker-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 26px 30px;
  margin-bottom: 22px;
}
@media (max-width: 700px) {
  .checker-summary { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.summary-item .val {
  font-family: 'Orbitron', sans-serif;
  font-size: 26px; font-weight: 800;
  color: #fff;
}
.summary-item .val.accent {
  background: linear-gradient(180deg, #fff 0%, var(--accent-2) 120%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.summary-item .desc {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}
.price-progress { margin-bottom: 22px; }
.price-progress-bar {
  height: 5px;
  border-radius: 3px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.price-progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transition: width 0.4s ease;
}
.price-progress-label {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
}
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}
.inv-item {
  padding: 14px;
  border-radius: 16px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
}
.inv-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-glow);
}
.inv-item img {
  width: 64px; height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.inv-name {
  font-size: 12px; font-weight: 600;
  color: #e8eefb;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.inv-rarity {
  font-size: 10px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.inv-meta {
  margin-top: auto;
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.inv-count {
  font-size: 11.5px; font-weight: 700;
  color: var(--muted);
}
.inv-price {
  font-size: 12.5px; font-weight: 700;
  color: #7ee787;
  font-family: 'JetBrains Mono', monospace;
}
.checker-disclaimer {
  margin-top: 26px;
  font-size: 12.5px;
  color: var(--dim);
  line-height: 1.65;
  max-width: 720px;
}

/* ==== Accessibility ======================================================= */

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

@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;
  }
  .reveal { opacity: 1 !important; visibility: visible !important; }
}

/* ==== Reveal on scroll ==================================================== */

.reveal { opacity: 0; visibility: hidden; }
/* fallback: if JS is off, IntersectionObserver never fires — show content */
html.no-js .reveal { opacity: 1; visibility: visible; }
.reveal.active {
  animation: fadeUp 0.55s cubic-bezier(0.25, 1, 0.5, 1) both;
  visibility: visible;
}
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(30px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.grid .card.reveal:nth-child(1).active { animation-delay: 0.00s; }
.grid .card.reveal:nth-child(2).active { animation-delay: 0.08s; }
.grid .card.reveal:nth-child(3).active { animation-delay: 0.16s; }
.steps-grid .step-card.reveal:nth-child(1).active { animation-delay: 0.00s; }
.steps-grid .step-card.reveal:nth-child(2).active { animation-delay: 0.10s; }
.steps-grid .step-card.reveal:nth-child(3).active { animation-delay: 0.20s; }

/* ==== Responsive polish =================================================== */

@media (max-width: 700px) {
  .container { padding: 120px 16px 40px; }
  .hero-wrapper { margin-bottom: 80px; gap: 40px; }
  .hero-text h1 { font-size: 40px; }
  .hero-visual { display: none; }
  .card { padding: 26px; min-height: unset; }
  .bento-box, .step-card { padding: 28px; }
  .hero-stats { gap: 12px; }
  .hero-stats b { font-size: 20px; }
  .hero-stats span { font-size: 10px; }
}
