
/* ============================================================
   DIESYT STORE — ULTIMATE TACTICAL HUD LOADER (v3)
   Combines: Radar rings (L1) + Hex% counter (L2) + My loader
   Color theme: #4D9FFF / #6BB0FF on #050505
   ============================================================ */

body.ds-loading { overflow: hidden; }

/* ── Base overlay ─────────────────────────────────────────── */
#ds-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #06060a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Share Tech Mono', monospace;
  /* Entry: glitch-flicker boot (mirrors seller loader) */
  animation: dsBootIn 0.6s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes dsBootIn {
  0%   { opacity: 0;    clip-path: inset(50% 0 50% 0); }
  25%  { opacity: 1;    clip-path: inset(28% 0 28% 0); }
  50%  { opacity: 0.8;  clip-path: inset(6%  0 6%  0); }
  70%  { opacity: 1;    clip-path: inset(1%  0 1%  0); }
  100% { opacity: 1;    clip-path: inset(0%  0 0%  0); }
}

/* ── Starfield canvas ─────────────────────────────────────── */
.ds-stars-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ── Status bar (SERVER / PING) — Loader 2 style ─────────── */
.ds-status-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  border-bottom: 1px solid rgba(77, 159, 255,0.12);
  opacity: 0;
  animation: dsFadeIn 0.4s 0.1s forwards;
}
.ds-status-left, .ds-status-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.ds-status-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.ds-status-val {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: rgba(192,132,252,0.9);
  text-transform: uppercase;
}

/* ── Corner HUD brackets — My loader style ───────────────── */
.ds-hud-tl, .ds-hud-tr, .ds-hud-bl, .ds-hud-br {
  position: absolute;
  width: 52px;
  height: 52px;
  z-index: 5;
  opacity: 0;
  animation: dsHudIn 0.5s 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}
.ds-hud-tl { top: 54px; left: 28px;  border-top: 2px solid #4D9FFF; border-left: 2px solid #4D9FFF; }
.ds-hud-tr { top: 54px; right: 28px; border-top: 2px solid #4D9FFF; border-right: 2px solid #4D9FFF; }
.ds-hud-bl { bottom: 28px; left: 28px;  border-bottom: 2px solid #4D9FFF; border-left: 2px solid #4D9FFF; }
.ds-hud-br { bottom: 28px; right: 28px; border-bottom: 2px solid #4D9FFF; border-right: 2px solid #4D9FFF; }
@keyframes dsHudIn {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Scanline — My loader style ──────────────────────────── */
.ds-scanline {
  position: absolute;
  top: 0;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(77, 159, 255,0.55), transparent);
  box-shadow: 0 0 18px rgba(77, 159, 255,0.45);
  animation: dsScan 2.4s linear infinite;
  opacity: 0.6;
  z-index: 3;
  will-change: transform;
}
@keyframes dsScan {
  0%   { transform: translateY(-2px); }
  100% { transform: translateY(100vh); }
}

/* ── Center stack ────────────────────────────────────────── */
.ds-center {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  opacity: 0;
  animation: dsFadeUp 0.7s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes dsFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dsFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Radar wrap — Loader 1 style ─────────────────────────── */
.ds-radar-wrap {
  position: relative;
  width: clamp(240px, 32vw, 320px);
  height: clamp(240px, 32vw, 320px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Concentric rings */
.ds-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(77, 159, 255,0.22);
}
.ds-ring-outer {
  inset: 0;
  border-color: rgba(77, 159, 255,0.35);
}
.ds-ring-mid {
  inset: 14%;
  border-color: rgba(192,132,252,0.18);
  animation: dsRingSpin 18s linear infinite;
  will-change: transform;
}
.ds-ring-inner {
  inset: 34%;
  border-color: rgba(77, 159, 255,0.3);
  animation: dsRingSpin 10s linear infinite reverse;
  will-change: transform;
}
@keyframes dsRingSpin { to { transform: rotate(360deg); } }

/* SVG arc progress — fills clockwise as pct goes 0→100 */
.ds-arc-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
  z-index: 2;
}
.ds-arc-track {
  fill: none;
  stroke: rgba(77, 159, 255,0.12);
  stroke-width: 2;
}
.ds-arc-fill {
  fill: none;
  stroke: url(#arcGrad);
  stroke: #4D9FFF;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.05s linear;
  filter: drop-shadow(0 0 6px rgba(77, 159, 255,0.8));
}

/* Radar sweep line */
.ds-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 80%,
    rgba(77, 159, 255,0.08) 90%,
    rgba(77, 159, 255,0.35) 100%
  );
  animation: dsRingSpin 3s linear infinite;
  z-index: 1;
  will-change: transform;
}

/* ── Orbital labels — Loader 1 style ─────────────────────── */
.ds-orbit-label {
  position: absolute;
  font-size: clamp(0.38rem, 0.9vw, 0.5rem);
  letter-spacing: 0.22em;
  color: rgba(192,132,252,0.5);
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
}
/* Place labels around the outer ring circumference */
.ds-ol-1 { top: 4%;  right: 10%; }
.ds-ol-2 { top: 4%;  left:  10%; }
.ds-ol-3 { top: 22%; left:  -12%; transform: rotate(-30deg); }
.ds-ol-4 { top: 50%; left:  -18%; transform: rotate(-90deg); }
.ds-ol-5 { bottom: 18%; left: -4%; transform: rotate(-140deg); }
.ds-ol-6 { bottom: 4%;  left:  10%; }
.ds-ol-7 { bottom: 10%; right: 6%; }
.ds-ol-8 { top: 24%; right: -10%; transform: rotate(30deg); }

/* ── Connector lines — Loader 2 style ───────────────────── */
.ds-hex-connector {
  position: absolute;
  background: rgba(77, 159, 255,0.45);
  z-index: 3;
}
.ds-hc-top  { width: 1px; height: 16%; top: 0;   left: 50%; transform: translateX(-50%); }
.ds-hc-bot  { width: 1px; height: 16%; bottom: 0; left: 50%; transform: translateX(-50%); }
.ds-hc-left { height: 1px; width: 16%; left: 0;  top: 50%;  transform: translateY(-50%); }
.ds-hc-right{ height: 1px; width: 16%; right: 0; top: 50%;  transform: translateY(-50%); }

/* ── Hex percentage — Loader 2 style ────────────────────── */
.ds-hex-wrap {
  position: relative;
  width: 120px; height: 138px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  filter: drop-shadow(0 0 12px rgba(77, 159, 255,0.6));
  animation: dsHexPulse 2s ease-in-out infinite;
  will-change: opacity;
}
@keyframes dsHexPulse {
  0%, 100% { opacity: 0.8; }
  50%      { opacity: 1; }
}
.ds-hex-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.ds-hex-poly {
  fill: none;
  stroke: #4D9FFF;
  stroke-width: 2.5;
  stroke-linejoin: round;
}
.ds-hex-pct {
  position: relative;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  z-index: 1;
  text-shadow: 0 0 14px rgba(77, 159, 255,0.8);
}

/* ── Logo block — My loader style ────────────────────────── */
.ds-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.ds-logo-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: rgba(77, 159, 255,0.65);
  text-transform: uppercase;
}
.ds-logo-text {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #4D9FFF 0%, #6BB0FF 45%, #4D9FFF 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: dsLogoShine 2s linear infinite;
  min-height: 1.2em;
}
@keyframes dsLogoShine { to { background-position: 200% center; } }
.ds-logo-text::after {
  content: '_';
  -webkit-text-fill-color: #4D9FFF;
  animation: dsBlink 0.7s step-end infinite;
  margin-left: 2px;
}
@keyframes dsBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.ds-logo-sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}

/* ── Dashed separator — Loader 2 style ──────────────────── */
.ds-dash-sep {
  width: clamp(200px, 28vw, 340px);
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(77, 159, 255,0.55) 0px,
    rgba(77, 159, 255,0.55) 10px,
    transparent 10px,
    transparent 18px
  );
  opacity: 0.7;
}

/* ── Progress bar — My loader style ──────────────────────── */
.ds-progress-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: clamp(220px, 30vw, 380px);
}
.ds-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  position: relative;
  overflow: visible;
}
.ds-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4D9FFF, #6BB0FF);
  border-radius: 2px;
  transition: width 0.05s linear;
  position: relative;
}
.ds-progress-fill::after {
  content: '';
  position: absolute;
  right: -3px; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #6BB0FF;
  box-shadow: 0 0 10px #6BB0FF, 0 0 20px rgba(192,132,252,0.55);
}
.ds-progress-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  color: rgba(77, 159, 255,0.7);
  text-transform: uppercase;
}

/* ── Trust row — Loader 1 style ──────────────────────────── */
.ds-trust-row {
  display: flex;
  gap: 2rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}

/* ── Exit — power-down: content implodes then loader collapses ─ */

/* 1. Centre content collapses inward */
#ds-loader.ds-exit .ds-center {
  opacity: 0;
  transform: scale(0.88) translateY(10px);
  filter: blur(6px) brightness(2);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in, filter 0.3s ease-in;
}

/* 2. HUD corners retract to their corners */
#ds-loader.ds-exit .ds-hud-tl { opacity: 0; transform: scale(0.4) translate(-8px,-8px); transition: opacity 0.2s ease, transform 0.25s ease; }
#ds-loader.ds-exit .ds-hud-tr { opacity: 0; transform: scale(0.4) translate(8px,-8px);  transition: opacity 0.2s ease, transform 0.25s ease; }
#ds-loader.ds-exit .ds-hud-bl { opacity: 0; transform: scale(0.4) translate(-8px,8px);  transition: opacity 0.2s ease, transform 0.25s ease; }
#ds-loader.ds-exit .ds-hud-br { opacity: 0; transform: scale(0.4) translate(8px,8px);   transition: opacity 0.2s ease, transform 0.25s ease; }

/* 3. Status bar and scanline fade */
#ds-loader.ds-exit .ds-status-bar { opacity: 0; transform: translateY(-8px); transition: opacity 0.2s ease, transform 0.2s ease; }
#ds-loader.ds-exit .ds-scanline   { opacity: 0; transition: opacity 0.15s ease; }

/* 4. Entire loader: purple flash → collapse to horizontal line → gone */
#ds-loader.ds-exit {
  pointer-events: none;
  animation: dsPowerDown 0.9s 0.15s ease-in both;
}
@keyframes dsPowerDown {
  0%   { opacity: 1; background: #06060a;                clip-path: inset(0%  0 0%  0); }
  22%  { opacity: 1; background: rgba(100,30,200,0.3);   clip-path: inset(0%  0 0%  0); }
  45%  { opacity: 1; background: #06060a;                clip-path: inset(0%  0 0%  0); }
  68%  { opacity: 1; background: #06060a;                clip-path: inset(32% 0 32% 0); }
  85%  { opacity: 1; background: #000;                   clip-path: inset(49% 0 49% 0); }
  100% { opacity: 0; background: #000;                   clip-path: inset(50% 0 50% 0); }
}

/* Remove old wipe panels — replaced by clip-path */
.ds-wipe-top, .ds-wipe-bot { display: none !important; }

/* ── Transition for HUD corners default state ─────────────── */
.ds-hud-tl, .ds-hud-tr, .ds-hud-bl, .ds-hud-br {
  transition: opacity 0.2s ease, transform 0.25s ease;
}

/* ============================================================
   END ULTIMATE LOADER
   ============================================================ */

    :root {

      --bg: #050505;
      --surface: #101014;
      --card-bg: rgba(255,255,255,0.025);
      --border: rgba(255,255,255,0.07);
      --nav-bg: rgba(5,5,5,0.85);
      --gold: #4D9FFF;
      --gold-light: #6BB0FF;
      --gold-dim: rgba(77, 159, 255,0.15);
      --text: #ffffff;
      --muted: #888888;
      --muted2: #a0a0a0;
    }
    [data-theme="light"] {
      --bg: #fff5f5;
      --surface: #ffffff;
      --card-bg: rgba(77, 159, 255,0.04);
      --border: rgba(77, 159, 255,0.15);
      --nav-bg: rgba(255,255,255,0.85);
      --gold: #4D9FFF;
      --gold-light: #4D9FFF;
      --gold-dim: rgba(77, 159, 255,0.10);
      --text: #1a1a1a;
      --muted: #666666;
      --muted2: #444444;
    }

    *, *::before, *::after { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
      user-select: none !important;
      -webkit-user-select: none !important;
    }

    input, textarea {
      user-select: auto !important;
      -webkit-user-select: auto !important;
    }
    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Hanken Grotesk', sans-serif;
      overflow-x: hidden;
      min-height: 100vh;
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
    }

    /* Promote heavy offscreen sections  browser skips paint/layout until near viewport */
    #listings, #why, #vouches, #cta, #faq, footer {
      /* content-visibility removed to fix IntersectionObserver scroll reveal */
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
      #particle-canvas { display: none; }
    }

    /* --- CANVAS --- */
    #particle-canvas {
      position: fixed;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }

    /* noise */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      /* noise removed for perf */
      opacity: 1;
    }

    /* --- BASE & VARIABLES --- */
    html { 
      scroll-behavior: smooth; 
      cursor: none !important;
    }
    
    a, button, [role="button"], input, select, .cursor-pointer, label {
      cursor: none !important;
    }

    /* ── Custom 3D Animated Round Cursor ── */
    #custom-cursor-dot {
      position: fixed;
      top: 0; left: 0;
      width: 3px; height: 3px;
      background: #4D9FFF;
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000001;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 12px #4D9FFF, 0 0 22px #4D9FFF;
      transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    #custom-cursor-ring {
      position: fixed;
      top: 0; left: 0;
      width: 18px; height: 18px;
      border: 2px solid rgba(77, 159, 255, 0.9);
      border-radius: 50%;
      pointer-events: none;
      z-index: 10000000;
      transform-origin: center center;
      transform: translate(-50%, -50%);
      /* 3D animated effect using box shadow and rotation (increased intensity by ~30%) */
      box-shadow: 0 4px 15px rgba(77, 159, 255, 0.8), inset 0 0 12px rgba(77, 159, 255, 0.6);
      transition: width 0.3s, height 0.3s, border-color 0.3s;
      /* The lerp handles x/y, the animation handles rotation inside the element */
      animation: rotate3dCursor 3s linear infinite;
    }

    @keyframes rotate3dCursor {
      0% { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
      50% { transform: translate(-50%, -50%) rotateX(180deg) rotateY(60deg) rotateZ(180deg); }
      100% { transform: translate(-50%, -50%) rotateX(360deg) rotateY(0deg) rotateZ(360deg); }
    }

    /* Hover states for interactive elements */
    body.cursor-hover #custom-cursor-dot {
      width: 6px;
      height: 6px;
      background: #4D9FFF;
      box-shadow: 0 0 12px #4D9FFF, 0 0 25px #4D9FFF;
    }

    body.cursor-hover #custom-cursor-ring {
      width: 27px;
      height: 27px;
      border-color: #4D9FFF;
      box-shadow: 0 4px 15px rgba(77, 159, 255, 0.5), inset 0 0 10px rgba(77, 159, 255, 0.3);
      animation: rotate3dCursorHover 1.5s linear infinite;
    }

    @keyframes rotate3dCursorHover {
      0% { transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1); }
      50% { transform: translate(-50%, -50%) rotateX(180deg) rotateY(180deg) rotateZ(180deg) scale(1.1); }
      100% { transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg) rotateZ(360deg) scale(1); }
    }
    
    body {
      cursor: inherit;
    }
    nav, header, section, footer { position: relative; z-index: 2; }

    /* --- NAV --- */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.4rem 7%;
      border-bottom: 1px solid var(--border);
      background: var(--nav-bg);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .nav-logo {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      font-family: 'Sora', sans-serif;
      font-weight: 900;
      font-size: 1.55rem;
      letter-spacing: 0.22em;
      background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
      background-size: 200% auto;
      
      
      
      animation: logoShine 5s linear infinite;
      
    }
    .nav-logo::before {
      content: '?';
      -webkit-text-fill-color: var(--gold);
      color: var(--gold);
      font-size: 1.15rem;
      animation: spin 8s linear infinite;
      filter: drop-shadow(0 0 8px var(--gold));
    }
    .nav-logo::after {
      content: '';
      position: absolute;
      left: 1.7rem;
      right: 0;
      bottom: -6px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.6;
    }
    @keyframes logoShine { to { background-position: 200% center; } }
    @keyframes spin { to { transform: rotate(360deg); } }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 2.5rem;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: color 0.25s;
    }

    .nav-links a:hover { color: var(--gold); }

    .nav-btn {
      display: inline-block;
      padding: 0.55rem 1.4rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'Hanken Grotesk', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.25s, color 0.25s;
    }

    .nav-btn:hover { background: var(--gold); color: var(--bg); }

    .nav-right { display: flex; align-items: center; gap: 1rem; }
    .theme-toggle {
      position: relative;
      width: 38px; height: 38px;
      display: inline-flex; align-items: center; justify-content: center;
      border: 1px solid var(--border);
      background: var(--card-bg);
      color: var(--gold);
      border-radius: 50%;
      cursor: pointer;
      font-size: 1rem;
      transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), border-color 0.25s, box-shadow 0.25s, color 0.25s;
    }
    .theme-toggle:hover {
      border-color: var(--gold);
      box-shadow: none;
      transform: rotate(20deg);
    }
    .theme-toggle > span {
      pointer-events: none;
      display: inline-block;
      transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
    }
    .theme-toggle .icon-sun { position: absolute; opacity: 0; transform: rotate(-90deg) scale(0.6); }
    .theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); }
    [data-theme="light"] .theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); }
    [data-theme="light"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.6); }

    /* Smooth theme transition � scoped to themed surfaces only (no universal span/div/p � that was tanking scroll perf) */
    body, nav, header, section, footer, .card, .why-card, .vouch-card, .faq-item,
    .nav-btn, .theme-toggle, .btn-gold, .btn-ghost, .tag, .card-buy {
      transition: background-color 0.45s ease, color 0.35s ease, border-color 0.35s ease;
    }


    /* --- HERO --- */
    header.hero-section {
      min-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      text-align: left;
      padding: 6rem 7% 4rem;
      position: relative;
      overflow: hidden;
      background-color: #050505;
    }

    .hero-bg-glow {
      position: absolute;
      top: 50%;
      right: -20%;
      width: 80vw;
      height: 80vw;
      max-width: 800px;
      max-height: 800px;
      background: transparent 0%, rgba(77, 159, 255, 0.05) 40%, transparent 70%);
      transform: translateY(-50%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }
    
    .hero-bg-glow::after {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../images/hero-bg.png') no-repeat center right; /* Optional character background */
      background-size: contain;
      opacity: 0.8;
      z-index: 1;
      mix-blend-mode: luminosity;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #050505 40%, rgba(5,5,5,0.7) 70%, transparent 100%);
      z-index: 1;
    }

    .grid-lines {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 50px 50px;
      z-index: 1;
      opacity: 0.5;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      border: none;
      padding: 0;
      font-family: 'Hanken Grotesk', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #4D9FFF;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: rise 0.9s 0.1s cubic-bezier(0.22,1,0.36,1) forwards;
    }

    .hero-h1 {
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: clamp(3.5rem, 8vw, 6.5rem);
      line-height: 1.05;
      letter-spacing: 0.02em;
      margin-bottom: 1.5rem;
      color: #ffffff;
      opacity: 0;
      animation: rise 0.9s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
      
    }

    .hero-h1 .text-red {
      color: #4D9FFF;
      
    }

    .hero-sub {
      max-width: 450px;
      font-size: 1.1rem;
      font-weight: 400;
      color: #a0a0a0;
      line-height: 1.6;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: rise 0.9s 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
    }

    .hero-btns {
      display: flex;
      gap: 1.2rem;
      justify-content: flex-start;
      flex-wrap: wrap;
      opacity: 0;
      animation: rise 0.9s 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
      margin-bottom: 4rem;
    }

    .btn-primary-red {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.95rem 2rem;
      background: #4D9FFF;
      border: 1px solid #4D9FFF;
      color: #05070B;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
      box-shadow: 0 0 15px rgba(77, 159, 255, 0.15);
    }

    .btn-primary-red:hover { 
      background: #6BB0FF;
      border-color: #6BB0FF;
      box-shadow: 0 0 25px rgba(77, 159, 255, 0.4), inset 0 0 10px rgba(255,255,255,0.2);
    }

    .btn-secondary-dark {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.95rem 2rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      color: #ffffff;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 2px;
      transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .btn-secondary-dark:hover { 
      border-color: #4D9FFF; 
      background: rgba(77, 159, 255, 0.05);
      color: #4D9FFF;
      box-shadow: 0 0 15px rgba(77, 159, 255, 0.15);
    }

    .hero-features-bar {
      display: flex;
      gap: 2rem;
      justify-content: flex-start;
      flex-wrap: wrap;
      opacity: 0;
      animation: rise 0.9s 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
      padding-top: 2rem;
      border-top: 1px solid #222222;
      width: 100%;
      max-width: 800px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .feature-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(77, 159, 255, 0.1);
      border-radius: 8px;
      color: #4D9FFF;
      border: 1px solid rgba(77, 159, 255, 0.2);
    }

    .feature-text {
      display: flex;
      flex-direction: column;
    }

    .feature-text strong {
      font-size: 0.85rem;
      font-family: 'Hanken Grotesk', sans-serif;
      color: #ffffff;
      font-weight: 600;
      line-height: 1.2;
    }

    .feature-text span {
      font-size: 0.75rem;
      color: #888888;
    }

    /* Stats Section Below Hero */
    .stats-section {
      padding: 0 7% 4rem;
      position: relative;
      z-index: 3;
      background: #050505;
    }

    .hero-stats-box {
      background: #101014;
      border: 1px solid #222222;
      border-radius: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2rem 4rem;
      max-width: 1180px;
      margin: 0 auto 2rem;
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .stat-box {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .stat-box-icon {
      color: #4D9FFF;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stat-box-content {
      display: flex;
      flex-direction: column;
    }

    .stat-box-num {
      font-family: 'Sora', sans-serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 0.2rem;
    }

    .stat-box-lbl {
      font-size: 0.8rem;
      color: #888888;
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .hero-stats-box {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        align-items: flex-start;
      }
      .hero-features-bar {
        gap: 1.5rem;
      }
      .feature-item {
        width: calc(50% - 1rem);
      }
    }

    /* --- SECTION HEADER --- */
    .s-head {
      text-align: center;
      margin-bottom: 4.5rem;
    }

    .s-eye {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.9rem;
    }

    .s-rule {
      width: 48px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 0 auto 1rem;
    }

    .s-title {
      font-family: 'Sora', sans-serif;
      font-weight: 400;
      letter-spacing: 0.05em;
      font-size: clamp(1.9rem, 4vw, 3.2rem);
      line-height: 1.15;
    }

    /* --- LISTINGS --- */
    #listings {
      padding: 2rem 7%;
      background: var(--surface);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
      gap: 1.6rem;
      max-width: 1180px;
      margin: 0 auto;
    }

    .card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s, border-color 0.35s;
      will-change: transform;
      transform: translateZ(0);
    }

    .card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(179,136,255,0.07), transparent 55%);
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
    }

    .card:hover {
      transform: translateY(-7px);
      border-color: rgba(179,136,255,0.22);
      box-shadow: none;
    }

    .card:hover::before { opacity: 1; }

    .card-pill {
      position: absolute;
      top: 1rem;
      right: 1rem;
      z-index: 3;
      background: linear-gradient(120deg, var(--gold), var(--gold-light));
      color: #050008;
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.28rem 0.7rem;
    }

    .card-thumb {
      width: 100%;
      height: 190px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }

    .card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: relative;
      z-index: 1;
      opacity: 0.85;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .card:hover .card-thumb img {
      opacity: 1;
      transform: scale(1.05);
    }

    .card-thumb-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #120824, #06000f);
    }

    .card-thumb-text {
      position: relative;
      z-index: 1;
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .card-thumb-accent {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .card:hover .card-thumb-accent { opacity: 1; }

    .card-glow {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: transparent, transparent 70%);
      top: -50px;
      right: -50px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s;
    }

    .card:hover .card-glow { opacity: 1; }

    .card-body { padding: 1.7rem; }

    .card-prems {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.55rem;
    }

    .card-name {
      font-family: 'Sora', sans-serif;
      font-size: 1.4rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      line-height: 1.3;
      margin-bottom: 0.7rem;
    }

    .card-desc {
      font-size: 0.82rem;
      color: var(--muted2);
      line-height: 1.75;
      margin-bottom: 1.2rem;
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 1.4rem;
    }

    .tag {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      color: var(--muted);
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.06em;
      padding: 0.22rem 0.55rem;
      transition: border-color 0.25s, color 0.25s;
    }

    .card:hover .tag { border-color: rgba(179,136,255,0.15); color: var(--muted2); }

    .card-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1.2rem;
      border-top: 1px solid var(--border);
    }

    .card-price {
      font-family: 'Share Tech Mono', monospace;
      font-size: 1.6rem;
      font-weight: 700;
      background: linear-gradient(120deg, var(--gold), var(--gold-light));
      
      
      
    }

    .card-buy {
      display: inline-block;
      padding: 0.55rem 1.1rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'Hanken Grotesk', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.25s, color 0.25s;
    }

    .card-buy:hover { background: var(--gold); color: var(--bg); }

    /* --- WHY --- */
    #why { padding: 2rem 7%; }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.6rem;
      max-width: 960px;
      margin: 0 auto;
    }

    .why-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      padding: 2.5rem 2rem;
      text-align: center;
      transition: border-color 0.3s, transform 0.35s;
    }

    .why-card:hover {
      border-color: rgba(179,136,255,0.25);
      transform: translateY(-4px);
    }

    .why-icon {
      font-size: 2.2rem;
      margin-bottom: 1.2rem;
      display: block;
    }

    .why-title {
      font-family: 'Share Tech Mono', monospace;
      font-size: 1rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }

    .why-desc {
      font-size: 0.82rem;
      color: var(--muted2);
      line-height: 1.7;
    }

    /* --- VOUCHES --- */
    #vouches {
      padding: 2rem 7%;
      background: var(--surface);
    }

    .vouch-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      max-width: 1000px;
      margin: 0 auto 3rem;
    }

    .vouch-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      padding: 1.8rem;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.35s;
    }

    .vouch-card:hover {
      border-color: rgba(179,136,255,0.2);
      transform: translateY(-3px);
    }

    .vouch-card::before {
      content: '"';
      position: absolute;
      top: 0.5rem;
      right: 1.2rem;
      font-family: 'Sora', sans-serif;
      font-size: 5rem;
      color: var(--gold);
      opacity: 0.08;
      line-height: 1;
      pointer-events: none;
    }

    .vouch-stars {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }

    .vouch-text {
      font-size: 0.85rem;
      color: var(--muted2);
      line-height: 1.75;
      margin-bottom: 1.4rem;
      font-style: italic;
    }

    .vouch-line {
      width: 24px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 0.6rem;
    }

    .vouch-author {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .vouches-cta {
      text-align: center;
    }

    /* --- CTA BAND --- */
    #cta {
      padding: 2rem 7%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      background: transparent 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-title {
      font-family: 'Sora', sans-serif;
      font-weight: 900;
      font-size: clamp(2.6rem, 6vw, 5rem);
      line-height: 1.08;
      margin-bottom: 1.4rem;
    }

    .cta-sub {
      font-size: 0.95rem;
      color: var(--muted2);
      line-height: 1.75;
      margin-bottom: 3rem;
      max-width: 380px;
      margin-left: auto;
      margin-right: auto;
    }

    /* --- FOOTER --- */
    footer {
      padding: 2.8rem 7%;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .foot-logo {
      font-family: 'Share Tech Mono', monospace;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.15em;
      background: linear-gradient(120deg, var(--gold), var(--gold-light));
      
      
      
    }

    .foot-copy {
      font-size: 0.72rem;
      color: var(--muted);
      letter-spacing: 0.05em;
    }

    .foot-links {
      display: flex;
      gap: 2rem;
    }

    .foot-links a {
      font-size: 0.72rem;
      color: var(--muted);
      text-decoration: none;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.25s;
    }

    .foot-links a:hover { color: var(--gold); }

    /* --- REVEAL --- */
    .reveal { will-change: opacity, transform; 
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* --- KEYFRAMES --- */
    @keyframes rise {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: none; }
    }

    @keyframes shimmer {
      from { background-position: 0% center; }
      to   { background-position: 220% center; }
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.4; transform: scale(0.7); }
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
      .grid { grid-template-columns: 1fr; padding: 0 1rem; }
      .why-grid, .vouch-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 2rem; flex-wrap: wrap; }
      .stat + .stat { border-left: none; padding-left: 0; }
      .nav-links { display: none; }
      footer { flex-direction: column; text-align: center; }

      /* tighter vertical rhythm on mobile */
      header { min-height: auto; padding: 2.5rem 6% 3rem; }
      #listings { padding: 3rem 6%; }
      #why { padding: 3rem 6%; }
      #vouches { padding: 3rem 6%; }
      #cta { padding: 3rem 6%; }
      #faq { padding: 3rem 6% !important; }
      
      /* Mobile Hero Overlay Brightness */
      .hero-overlay { background: linear-gradient(90deg, rgba(5,0,8,0.7) 0%, rgba(5,0,8,0.4) 40%, rgba(5,0,8,0.1) 100%) !important; }
      .hero-video { opacity: 0.65 !important; }

      /* Mobile Card Fixes */
      .card-body { padding: 1.2rem; }
      .card-foot { flex-direction: column; align-items: stretch; gap: 0.8rem; }
      .card-buy { width: 100%; text-align: center; margin-top: 0; }
      .card-price { text-align: center; }
    }
    
  .filter-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--muted2);
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 0.45rem 1rem;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 2px;
  }
  .filter-btn:hover {
    border-color: var(--purple);
    color: var(--purple);
  }
  .filter-btn.active {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
  }
  .card.hidden {
    display: none;
  }

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 12px; /* Add some rounding to match a spotlight card */
  --mouse-x: 50%;
  --mouse-y: 50%;
  --spotlight-color: rgba(77, 159, 255, 0.12); /* Matches theme purple */
}
.faq-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), var(--spotlight-color), transparent 80%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.faq-item:hover::before,
.faq-item:focus-within::before {
  opacity: 1;
}
.faq-item:hover { border-color: rgba(179,136,255,0.35); }

.faq-q {
  position: relative;
  z-index: 1;
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-a {
  position: relative;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.87rem;
  color: #c0c0c0 !important;
  line-height: 1.8;
  padding: 0 1.5rem;
}
.faq-item.open .faq-a { max-height: 600px; padding: 0 1.5rem 1.3rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

@keyframes waBounce {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.75); }
}

/* --- NEW VALORANT HERO REDESIGN --- */
:root {
  --neon-purple: #4D9FFF;
  --neon-purple-light: #6BB0FF;
  --neon-purple-dim: rgba(77, 159, 255, 0.15);
}

[data-theme="light"] {
  --neon-purple: #4D9FFF;
  --neon-purple-light: #4D9FFF;
  --neon-purple-dim: rgba(77, 159, 255, 0.1);
}

.logo-img { height: 55px;
  width: auto;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  background: none;
  color: white;
  -webkit-text-fill-color: white;
}

.nav-logo::before { display: none; }
.nav-logo::after { display: none; }

.nav-logo span {
  display: flex;
  gap: 0.3rem;
}

.nav-logo .logo-text-light {
  color: var(--neon-purple);
}

.btn-gold {
  background: linear-gradient(120deg, var(--neon-purple), var(--neon-purple-light) 55%, var(--neon-purple)) !important;
  color: #fff !important;
  border-radius: 2px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 7%;
  overflow: hidden;
  text-align: left;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,0,8,0.95) 0%, rgba(5,0,8,0.7) 40%, rgba(5,0,8,0.4) 100%);
  z-index: -1;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-size: 40px 40px;
  background-image: 
    background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
  z-index: -1;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      width: 100%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: transparent;
      border: none;
      padding: 0;
      font-family: 'Hanken Grotesk', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #4D9FFF;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: rise 0.9s 0.1s cubic-bezier(0.22,1,0.36,1) forwards;
    }

    .hero-h1 {
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: clamp(3.5rem, 8vw, 6.5rem);
      line-height: 1.05;
      letter-spacing: 0.02em;
      margin-bottom: 1.5rem;
      color: #ffffff;
      opacity: 0;
      animation: rise 0.9s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
      
    }

    .hero-h1 .text-red {
      color: #4D9FFF;
      
    }

    .hero-sub {
      max-width: 450px;
      font-size: 1.1rem;
      font-weight: 400;
      color: #a0a0a0;
      line-height: 1.6;
      margin-bottom: 2.5rem;
      opacity: 0;
      animation: rise 0.9s 0.5s cubic-bezier(0.22,1,0.36,1) forwards;
    }

    .hero-btns {
      display: flex;
      gap: 1.2rem;
      justify-content: flex-start;
      flex-wrap: wrap;
      opacity: 0;
      animation: rise 0.9s 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
      margin-bottom: 4rem;
    }

    .btn-primary-red {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.95rem 2rem;
      background: linear-gradient(135deg, #4D9FFF 0%, #4D9FFF 100%);
      border: 1px solid rgba(77, 159, 255, 0.5);
      color: #ffffff;
      font-family: 'Hanken Grotesk', sans-serif;
      font-size: 0.9rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.3s ease;
      box-shadow: none;
    }

    .btn-primary-red:hover { 
      background: linear-gradient(135deg, #6BB0FF 0%, #8b5cf6 100%);
      transform: translateY(-2px); 
      box-shadow: none;
    }

    .btn-secondary-dark {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.95rem 2rem;
      background: #101014;
      border: 1px solid #222222;
      color: #ffffff;
      font-family: 'Hanken Grotesk', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .btn-secondary-dark:hover { 
      border-color: #4D9FFF; 
      background: #15151a;
      transform: translateY(-2px); 
    }

    .hero-features-bar {
      display: flex;
      gap: 2rem;
      justify-content: flex-start;
      flex-wrap: wrap;
      opacity: 0;
      animation: rise 0.9s 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
      padding-top: 2rem;
      border-top: 1px solid #222222;
      width: 100%;
      max-width: 800px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .feature-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(77, 159, 255, 0.1);
      border-radius: 8px;
      color: #4D9FFF;
      border: 1px solid rgba(77, 159, 255, 0.2);
    }

    .feature-text {
      display: flex;
      flex-direction: column;
    }

    .feature-text strong {
      font-size: 0.85rem;
      font-family: 'Hanken Grotesk', sans-serif;
      color: #ffffff;
      font-weight: 600;
      line-height: 1.2;
    }

    .feature-text span {
      font-size: 0.75rem;
      color: #888888;
    }

    /* Stats Section Below Hero */
    .stats-section {
      padding: 0 7% 4rem;
      position: relative;
      z-index: 3;
      background: #050505;
    }

    .hero-stats-box {
      background: #101014;
      border: 1px solid #222222;
      border-radius: 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2rem 4rem;
      max-width: 1180px;
      margin: 0 auto 2rem;
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }

    .stat-box {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .stat-box-icon {
      color: #4D9FFF;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .stat-box-content {
      display: flex;
      flex-direction: column;
    }

    .stat-box-num {
      font-family: 'Sora', sans-serif;
      font-size: 1.8rem;
      font-weight: 600;
      color: #ffffff;
      line-height: 1;
      margin-bottom: 0.2rem;
    }

    .stat-box-lbl {
      font-size: 0.8rem;
      color: #888888;
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .hero-stats-box {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
        align-items: flex-start;
      }
      .hero-features-bar {
        gap: 1.5rem;
      }
      .feature-item {
        width: 100%;
      }
    }

    /* --- SECTION HEADER --- */
    .s-head {
      text-align: center;
      margin-bottom: 4.5rem;
    }

    .s-eye {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.9rem;
    }

    .s-rule {
      width: 48px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      margin: 0 auto 1rem;
    }

    .s-title {
      font-family: 'Sora', sans-serif;
      font-weight: 400;
      letter-spacing: 0.05em;
      font-size: clamp(1.9rem, 4vw, 3.2rem);
      line-height: 1.15;
    }

    /* --- LISTINGS --- */
    #listings {
      padding: 2rem 7%;
      background: var(--surface);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
      gap: 1.6rem;
      max-width: 1180px;
      margin: 0 auto;
    }

    .card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), box-shadow 0.45s, border-color 0.35s;
      will-change: transform;
      transform: translateZ(0);
    }

    .card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(140deg, rgba(179,136,255,0.07), transparent 55%);
      opacity: 0;
      transition: opacity 0.4s;
      pointer-events: none;
    }

    .card:hover {
      transform: translateY(-7px);
      border-color: rgba(179,136,255,0.22);
      box-shadow: none;
    }

    .card:hover::before { opacity: 1; }

    .card-pill {
      position: absolute;
      top: 1rem;
      right: 1rem;
      z-index: 3;
      background: linear-gradient(120deg, var(--gold), var(--gold-light));
      color: #050008;
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.58rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.28rem 0.7rem;
    }

    .card-thumb {
      width: 100%;
      height: 190px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--border);
    }

    .card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: relative;
      z-index: 1;
      opacity: 0.85;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .card:hover .card-thumb img {
      opacity: 1;
      transform: scale(1.05);
    }

    .card-thumb-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #120824, #06000f);
    }

    .card-thumb-text {
      position: relative;
      z-index: 1;
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .card-thumb-accent {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }

    .card:hover .card-thumb-accent { opacity: 1; }

    .card-glow {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: transparent, transparent 70%);
      top: -50px;
      right: -50px;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.4s;
    }

    .card:hover .card-glow { opacity: 1; }

    .card-body { padding: 1.7rem; }

    .card-prems {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.55rem;
    }

    .card-name {
      font-family: 'Sora', sans-serif;
      font-size: 1.4rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      line-height: 1.3;
      margin-bottom: 0.7rem;
    }

    .card-desc {
      font-size: 0.82rem;
      color: var(--muted2);
      line-height: 1.75;
      margin-bottom: 1.2rem;
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 1.4rem;
    }

    .tag {
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      color: var(--muted);
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.06em;
      padding: 0.22rem 0.55rem;
      transition: border-color 0.25s, color 0.25s;
    }

    .card:hover .tag { border-color: rgba(179,136,255,0.15); color: var(--muted2); }

    .card-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1.2rem;
      border-top: 1px solid var(--border);
    }

    .card-price {
      font-family: 'Share Tech Mono', monospace;
      font-size: 1.6rem;
      font-weight: 700;
      background: linear-gradient(120deg, var(--gold), var(--gold-light));
      
      
      
    }

    .card-buy {
      display: inline-block;
      padding: 0.55rem 1.1rem;
      border: 1px solid var(--gold);
      color: var(--gold);
      font-family: 'Hanken Grotesk', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.25s, color 0.25s;
    }

    .card-buy:hover { background: var(--gold); color: var(--bg); }

    /* --- WHY --- */
    #why { padding: 2rem 7%; }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.6rem;
      max-width: 960px;
      margin: 0 auto;
    }

    .why-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      padding: 2.5rem 2rem;
      text-align: center;
      transition: border-color 0.3s, transform 0.35s;
    }

    .why-card:hover {
      border-color: rgba(179,136,255,0.25);
      transform: translateY(-4px);
    }

    .why-icon {
      font-size: 2.2rem;
      margin-bottom: 1.2rem;
      display: block;
    }

    .why-title {
      font-family: 'Share Tech Mono', monospace;
      font-size: 1rem;
      font-weight: 700;
      color: var(--gold);
      margin-bottom: 0.6rem;
    }

    .why-desc {
      font-size: 0.82rem;
      color: var(--muted2);
      line-height: 1.7;
    }

    /* --- VOUCHES --- */
    #vouches {
      padding: 2rem 7%;
      background: var(--surface);
    }

    .vouch-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
      max-width: 1000px;
      margin: 0 auto 3rem;
    }

    .vouch-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      padding: 1.8rem;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, transform 0.35s;
    }

    .vouch-card:hover {
      border-color: rgba(179,136,255,0.2);
      transform: translateY(-3px);
    }

    .vouch-card::before {
      content: '"';
      position: absolute;
      top: 0.5rem;
      right: 1.2rem;
      font-family: 'Sora', sans-serif;
      font-size: 5rem;
      color: var(--gold);
      opacity: 0.08;
      line-height: 1;
      pointer-events: none;
    }

    .vouch-stars {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }

    .vouch-text {
      font-size: 0.85rem;
      color: var(--muted2);
      line-height: 1.75;
      margin-bottom: 1.4rem;
      font-style: italic;
    }

    .vouch-line {
      width: 24px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 0.6rem;
    }

    .vouch-author {
      font-family: 'Share Tech Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
    }

    .vouches-cta {
      text-align: center;
    }

    /* --- CTA BAND --- */
    #cta {
      padding: 2rem 7%;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    #cta::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      background: transparent 0%, transparent 65%);
      pointer-events: none;
    }

    .cta-title {
      font-family: 'Sora', sans-serif;
      font-weight: 900;
      font-size: clamp(2.6rem, 6vw, 5rem);
      line-height: 1.08;
      margin-bottom: 1.4rem;
    }

    .cta-sub {
      font-size: 0.95rem;
      color: var(--muted2);
      line-height: 1.75;
      margin-bottom: 3rem;
      max-width: 380px;
      margin-left: auto;
      margin-right: auto;
    }

    /* --- FOOTER --- */
    footer {
      padding: 2.8rem 7%;
      border-top: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .foot-logo {
      font-family: 'Share Tech Mono', monospace;
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: 0.15em;
      background: linear-gradient(120deg, var(--gold), var(--gold-light));
      
      
      
    }

    .foot-copy {
      font-size: 0.72rem;
      color: var(--muted);
      letter-spacing: 0.05em;
    }

    .foot-links {
      display: flex;
      gap: 2rem;
    }

    .foot-links a {
      font-size: 0.72rem;
      color: var(--muted);
      text-decoration: none;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: color 0.25s;
    }

    .foot-links a:hover { color: var(--gold); }

    /* --- REVEAL --- */
    .reveal { will-change: opacity, transform; 
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* --- KEYFRAMES --- */
    @keyframes rise {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: none; }
    }

    @keyframes shimmer {
      from { background-position: 0% center; }
      to   { background-position: 220% center; }
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: 0.4; transform: scale(0.7); }
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
      .grid { grid-template-columns: 1fr; padding: 0 1rem; }
      .why-grid, .vouch-grid { grid-template-columns: 1fr; }
      .hero-stats { gap: 2rem; flex-wrap: wrap; }
      .stat + .stat { border-left: none; padding-left: 0; }
      .nav-links { display: none; }
      footer { flex-direction: column; text-align: center; }

      /* tighter vertical rhythm on mobile */
      header { min-height: auto; padding: 2.5rem 6% 3rem; }
      #listings { padding: 3rem 6%; }
      #why { padding: 3rem 6%; }
      #vouches { padding: 3rem 6%; }
      #cta { padding: 3rem 6%; }
      #faq { padding: 3rem 6% !important; }
      
      /* Mobile Hero Overlay Brightness */
      .hero-overlay { background: linear-gradient(90deg, rgba(5,0,8,0.7) 0%, rgba(5,0,8,0.4) 40%, rgba(5,0,8,0.1) 100%) !important; }
      .hero-video { opacity: 0.65 !important; }

      /* Mobile Card Fixes */
      .card-body { padding: 1.2rem; }
      .card-foot { flex-direction: column; align-items: stretch; gap: 0.8rem; }
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.87rem;
  color: #c0c0c0 !important;
  line-height: 1.8;
  padding: 0 1.5rem;
}

@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(40px); }
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 2;
  margin-top: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  padding: 0;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #a0a0a0;
  margin-bottom: 1.5rem;
  opacity: 1 !important;
  animation: none !important;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: transparent 0%, transparent 70%); display: inline-block; box-shadow: none; }

.hero-h1 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 7vw, 6rem) !important;
  line-height: 0.95 !important;
  text-transform: uppercase;
  margin-bottom: 1.5rem !important;
  color: white;
  opacity: 1 !important;
  animation: none !important;
  letter-spacing: 0 !important;
}

.hero-h1 .shine {
  background: none !important;
  color: var(--neon-purple) !important;
  -webkit-text-fill-color: var(--neon-purple) !important;
  
  animation: none !important;
}

.hero-sub {
  font-size: 1.1rem !important;
  color: #c0c0c0 !important;
  max-width: 500px !important;
  margin-bottom: 2.5rem !important;
  opacity: 1 !important;
  animation: none !important;
}

.hero-btns {
  justify-content: flex-start !important;
  opacity: 1 !important;
  animation: none !important;
}

.hero-stats {
  display: flex;
  gap: 3rem !important;
  margin-top: 4rem !important;
  justify-content: flex-start !important;
  opacity: 1 !important;
  animation: none !important;
}

.hero-stats .stat {
  text-align: left !important;
}

.hero-stats .stat-num {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-size: 2.5rem !important;
  background: none !important;
  color: var(--neon-purple) !important;
  -webkit-text-fill-color: var(--neon-purple) !important;
  margin-bottom: -0.2rem !important;
}

.hero-stats .stat + .stat {
  border-left: none !important;
  padding-left: 0 !important;
}

.hero-stats .stat-lbl {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-size: 0.8rem !important;
}

/* --- ENHANCED FONTS & OVERLAY --- */
body {
  font-family: 'Hanken Grotesk', sans-serif;
}

.hero-h1, h1, h2, h3, .s-title {
  font-family: 'Sora', sans-serif !important;
  letter-spacing: 0.05em !important;
}

.hero-badge, .stat-num, .card-pill, .shine, .nav-logo span, .btn-gold, .btn-ghost, .nav-btn, .filter-btn {
  font-family: 'Audiowide', sans-serif !important;
}

.hero-sub {
  font-family: 'Hanken Grotesk', sans-serif !important;
}

.hero-video { opacity: 0.35 !important; }

.hero-overlay { background: linear-gradient(90deg, rgba(5,0,8,0.95) 0%, rgba(5,0,8,0.7) 40%, rgba(5,0,8,0.4) 100%) !important; }


/* --- AMBIENT GRAPHICS FOR BACKGROUND --- */
body::before, body::after {
  content: '';
  position: fixed;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  /* filter removed for perf */
  z-index: -3;
  pointer-events: none;
  opacity: 0.05; mix-blend-mode: screen;
}

body::before {
  top: -20%;
  left: -10%;
  background: transparent 0%, transparent 70%);
}

body::after {
  bottom: -20%;
  right: -10%;
  background: transparent 0%, transparent 70%);
}

#listings, .s-head {
  position: relative;
}

/* Side Glow removed */
section {
  box-shadow: none !important;
}

/* --- PREMIUM PURPLE OVERRIDES --- */
:root {
  --bg: #070610;
  --surface: #070610;
  --card-bg: rgba(77, 159, 255, 0.05);
  --border: rgba(77, 159, 255, 0.15);
  --nav-bg: rgba(7, 6, 15, 0.98);
  --gold: #4D9FFF;
  --gold-light: #6BB0FF;
  --gold-dim: rgba(77, 159, 255, 0.3);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.33);
  --muted2: rgba(255,255,255,0.32);
}

body {
  font-family: 'Inter', sans-serif !important;
  background-color: var(--bg) !important;
}

h1, h2, h3, h4, h5, h6, .hero-h1, .s-title, .card-name {
  font-family: 'Sora', sans-serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.accent-word {
  color: #4D9FFF !important;
  text-shadow: 0 0 18px rgba(77, 159, 255,0.4), 0 0 36px rgba(77, 159, 255,0.15) !important;
  -webkit-text-fill-color: #4D9FFF !important;
  background: none !important;
}

nav {
  background: rgba(7,6,15,0.98) !important;
  border-bottom: 1px solid rgba(77, 159, 255,0.12) !important;
}

nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(77, 159, 255,0.4), transparent) !important;
}

.nav-btn {
  background: linear-gradient(90deg, #4D9FFF, #6BB0FF) !important;
  box-shadow: 0 0 14px rgba(77, 159, 255,0.3) !important;
  border: none !important;
  color: white !important;
}

.hero-bracket-tr, .hero-bracket-bl {
  position: absolute;
  width: 40px; height: 40px;
  border: 2px solid #4D9FFF;
  opacity: 0.5;
  z-index: 1;
}
.hero-bracket-tr { top: 10%; right: 5%; border-left: none; border-bottom: none; }
.hero-bracket-bl { bottom: 10%; left: 5%; border-right: none; border-top: none; }

.hero-eyebrow {
  width: 20px;
  height: 3px;
  background: linear-gradient(90deg, #4D9FFF, #6BB0FF);
  margin-bottom: 10px;
}

.btn-primary-red {
  background: linear-gradient(90deg, #4D9FFF, #6BB0FF) !important;
  box-shadow: 0 0 16px rgba(77, 159, 255,0.3) !important;
  border: none !important;
}

.btn-secondary-dark {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
}

.stat-num {
  color: #4D9FFF !important;
  text-shadow: 0 0 14px rgba(77, 159, 255,0.4) !important;
  -webkit-text-fill-color: #4D9FFF !important;
}
.stat-lbl {
  color: rgba(255,255,255,0.2) !important;
  text-transform: uppercase !important;
}

.card {
  background: rgba(77, 159, 255,0.05) !important;
  border: 1px solid rgba(77, 159, 255,0.15) !important;
  position: relative;
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #4D9FFF, #6BB0FF) !important;
  box-shadow: 0 0 8px rgba(77, 159, 255,0.3) !important;
}

.card-pill {
  background: linear-gradient(90deg, #4D9FFF, #6BB0FF) !important;
}

.tag {
  color: #4D9FFF !important;
  background: rgba(77, 159, 255,0.08) !important;
  border: 1px solid rgba(77, 159, 255,0.2) !important;
}

.card-thumb img {
  height: 200px !important;
  object-fit: cover !important;
}

.card-desc {
  color: rgba(255,255,255,0.32) !important;
}

.card-price {
  font-family: 'Sora', sans-serif !important;
  color: #4D9FFF !important;
  text-shadow: 0 0 14px rgba(77, 159, 255,0.4) !important;
  -webkit-text-fill-color: #4D9FFF !important;
  background: none !important;
}

.card-buy {
  background: linear-gradient(90deg, #4D9FFF, #6BB0FF) !important;
  box-shadow: 0 0 12px rgba(77, 159, 255,0.3) !important;
  border: none !important;
  color: white !important;
  padding: 0.7rem 1.2rem !important;
  border-radius: 4px;
}
.card-buy:hover {
  background: linear-gradient(90deg, #6BB0FF, #4D9FFF) !important;
  color: white !important;
}

.btn-gold {
  background: linear-gradient(90deg, #4D9FFF, #6BB0FF) !important;
  box-shadow: 0 0 14px rgba(77, 159, 255,0.3) !important;
}

.shine {
  color: #4D9FFF !important;
  text-shadow: 0 0 18px rgba(77, 159, 255,0.4), 0 0 36px rgba(77, 159, 255,0.15) !important;
  -webkit-text-fill-color: #4D9FFF !important;
  background: none !important;
}


/* URGENT FIXES */
header.hero-section {
    background: radial-gradient(ellipse at 70% 50%, rgba(77, 159, 255,0.12) 0%, transparent 60%), #070610 !important;
}

#cta {
    background: rgba(77, 159, 255,0.06) !important;
    border: 1px solid rgba(77, 159, 255,0.15) !important;
}

.card-tags .tag {
    background: rgba(77, 159, 255,0.08) !important;
    border: 1px solid rgba(77, 159, 255,0.2) !important;
    color: #6BB0FF !important;
    font-size: 11px !important;
    border-radius: 4px !important;
    padding: 3px 8px !important;
    text-transform: none !important;
    font-family: 'Inter', sans-serif !important;
}

.card-buy {
    background: linear-gradient(90deg, #4D9FFF, #6BB0FF) !important;
    color: #ffffff !important;
    width: 100% !important;
    text-align: center !important;
    padding: 10px 0 !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    display: inline-block !important;
    box-sizing: border-box !important;
}

/* --- UI FIXES --- */
/* 2. Card Buy Button */
.card-buy {
  width: auto !important;
  padding: 10px 20px !important;
  border-radius: 4px !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  box-shadow: 0 0 14px rgba(77, 159, 255,0.3) !important;
  background: linear-gradient(90deg, #4D9FFF, #6BB0FF) !important;
  color: #fff !important;
  border: none !important;
}

/* 3. Footer Logo */
.foot-logo {
  background: none !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  -webkit-text-fill-color: initial !important;
}

/* 4. Vouch Dividers */
.vouch-card {
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}
.vouch-line {
  background: rgba(255,255,255,0.05) !important;
}

/* 5. Dominate Shine */
.cta-title .shine, .shine {
  color: #4D9FFF !important;
  text-shadow: 0 0 20px rgba(77, 159, 255,0.4) !important;
  -webkit-text-fill-color: #4D9FFF !important;
  -webkit-text-stroke: 0 !important;
  background: none !important;
}
/* --- UI FIXES BATCH 2 --- */
.hero-section > *:not(video) {
  position: relative !important;
  z-index: 1 !important;
}

nav {
  display: flex !important;
  border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}
.nav-links {
  margin-left: auto !important;
  margin-right: 2rem !important;
}
nav::after {
  display: none !important;
}

.card-thumb {
  width: 100% !important;
  height: 200px !important;
  overflow: hidden !important;
  border-radius: 8px 8px 0 0 !important;
  background: rgba(77, 159, 255,0.08) !important;
}
.card-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.card {
  padding: 0 !important;
  background: rgba(77, 159, 255,0.04) !important;
  border: 1px solid rgba(77, 159, 255,0.15) !important;
  border-radius: 8px !important;
}
.card-body {
  padding: 16px !important;
}
.card-meta span, .card-meta {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #4D9FFF !important;
  margin-bottom: 6px !important;
  display: block !important;
  font-family: 'Inter', sans-serif !important;
}
.card-name {
  font-family: 'Sora', sans-serif !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin-bottom: 8px !important;
  line-height: 1.1 !important;
}
.card-desc {
  font-size: 12px !important;
  color: rgba(255,255,255,0.5) !important;
  line-height: 1.6 !important;
}
.card-tags .tag, .card-pill {
  background: rgba(77, 159, 255,0.08) !important;
  border: 1px solid rgba(77, 159, 255,0.2) !important;
  color: #6BB0FF !important;
  font-size: 10px !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  display: inline-block !important;
  margin-top: 8px !important;
}
.card-price {
  font-family: 'Sora', sans-serif !important;
  font-size: 24px !important;
  font-weight: 900 !important;
  color: #4D9FFF !important;
  text-shadow: 0 0 14px rgba(77, 159, 255,0.4) !important;
}
.grid {
  gap: 20px !important;
}
.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px !important;
  background: linear-gradient(90deg, #4D9FFF, #6BB0FF) !important;
  box-shadow: 0 0 8px rgba(77, 159, 255,0.3) !important;
  border-radius: 8px 8px 0 0 !important;
}
/* --- UI FIXES BATCH 3 --- */
.hero-section {
  position: relative !important;
  overflow: hidden !important;
  min-height: 100vh !important;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: auto !important;
    padding-bottom: 2rem !important;
  }
}
.hero-section video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
  opacity: 0.4 !important;
}
.hero-section > *:not(video) {
  position: relative !important;
  z-index: 1 !important;
}

.btn-arsenal {
  display: inline-block !important;
  padding: 12px 32px !important;
  background: linear-gradient(90deg, #4D9FFF, #6BB0FF) !important;
  color: #fff !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 4px !important;
  text-decoration: none !important;
  box-shadow: 0 0 16px rgba(77, 159, 255,0.35) !important;
}

.card-thumb {
  position: relative !important;
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
  background: rgba(77, 159, 255,0.06) !important;
  border-radius: 8px 8px 0 0 !important;
}
.card-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  font-size: 0 !important;
  color: transparent !important;
}

.card {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
}
.card-body {
  padding: 16px !important;
  display: block !important;
  width: 100% !important;
}

/* --- UI FIXES BATCH 4 - PREMIUM REALISTIC 3D BUTTONS --- */

.card-buy, .btn-whatsapp, .buy-btn, [class*="whatsapp"], [class*="buy-btn"], .btn-gold, .nav-btn, .btn-arsenal {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 24px !important;
  background: linear-gradient(180deg, #a855f7 0%, #4D9FFF 100%) !important;
  color: #ffffff !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  border: 1px solid #7e22ce !important;
  border-bottom: 3px solid #581c87 !important;
  cursor: pointer !important;

  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2), 
    0 4px 6px rgba(0, 0, 0, 0.2),
    0 0 12px rgba(77, 159, 255, 0.1) !important;

  transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.1s ease, background 0.1s ease !important;
  white-space: nowrap !important;
  min-width: auto !important;
  width: auto !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.card-buy:hover, .btn-whatsapp:hover, .buy-btn:hover, .btn-gold:hover, .nav-btn:hover, .btn-arsenal:hover {
  background: linear-gradient(180deg, #b873f8 0%, #a24bf0 100%) !important;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.3), 
    0 6px 10px rgba(0, 0, 0, 0.25),
    0 0 16px rgba(77, 159, 255, 0.2) !important;
  transform: translateY(-1px) !important;
}

.card-buy:active, .btn-whatsapp:active, .buy-btn:active, .btn-gold:active, .nav-btn:active, .btn-arsenal:active {
  background: #4D9FFF !important;
  border-bottom: 1px solid #581c87 !important;
  transform: translateY(2px) !important;
  box-shadow: 
    inset 0 2px 4px rgba(0, 0, 0, 0.3), 
    0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

/* JOIN COMMUNITY BUTTON */
.btn-ghost {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 12px 24px !important;
  background: rgba(77, 159, 255, 0.05) !important;
  color: #6BB0FF !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  
  border: 1px solid rgba(77, 159, 255,0.4) !important;
  border-bottom: 3px solid rgba(77, 159, 255,0.6) !important;
  cursor: pointer !important;

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.1s ease, background 0.1s ease !important;
  white-space: nowrap !important;
  min-width: auto !important;
  width: auto !important;
}

.btn-ghost:hover {
  background: rgba(77, 159, 255,0.12) !important;
  transform: translateY(-1px) !important;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 4px 8px rgba(0, 0, 0, 0.15),
    0 0 12px rgba(77, 159, 255, 0.1) !important;
}

.btn-ghost:active {
  transform: translateY(2px) !important;
  border-bottom: 1px solid rgba(77, 159, 255,0.6) !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
  background: rgba(77, 159, 255,0.2) !important;
}


/* FILTER BUTTONS (Clean Pill Style) */
.filter-btn {
  background: transparent !important;
  color: var(--muted) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-bottom: 1px solid rgba(255,255,255,0.1) !important;
  box-shadow: none !important;
  border-radius: 20px !important;
  padding: 6px 16px !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 14px !important;
  letter-spacing: 0.05em !important;
  transition: all 0.2s ease !important;
  transform: none !important;
}
.filter-btn:hover {
  background: rgba(77, 159, 255, 0.1) !important;
  border-color: rgba(77, 159, 255, 0.4) !important;
  color: #fff !important;
  transform: none !important;
}
.filter-btn.active {
  background: rgba(77, 159, 255, 0.2) !important;
  border-color: #4D9FFF !important;
  color: #fff !important;
  box-shadow: 0 0 10px rgba(77, 159, 255, 0.2) !important;
}
.card {
  position: relative !important;
}

/* --- UI FIXES BATCH 6: HOMETOWN STRUCTURAL REDESIGN --- */

/* 1. TICKER BAR */
.ticker-bar {
  background: rgba(77, 159, 255,0.08) !important;
  border-top: 1px solid rgba(77, 159, 255,0.15) !important;
  border-bottom: 1px solid rgba(77, 159, 255,0.15) !important;
  padding: 10px 0 !important;
  overflow: hidden !important;
  display: flex !important;
  white-space: nowrap !important;
  position: relative !important;
  z-index: 10 !important;
}
.ticker-content {
  display: flex !important;
  width: max-content !important;
  font-family: 'Sora', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  color: rgba(255,255,255,0.5) !important;
  animation: scrollTicker 20s linear infinite !important;
  gap: 0 !important;
}
.ticker-content span {
  display: inline-block !important;
  padding-right: 3rem !important;
  flex-shrink: 0 !important;
}
.ticker-dot {
  color: #4D9FFF !important;
  margin: 0 1rem !important;
}
@keyframes scrollTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* 2. WHY CHOOSE US (4-COLUMN) */
.why-grid-4 {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
  gap: 2rem !important;
  max-width: 1200px !important;
  margin: 3rem auto 0 !important;
  text-align: center !important;
}
.why-card-new {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  background: transparent !important;
  padding: 1rem !important;
}
.why-icon-circle {
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  background: rgba(77, 159, 255,0.1) !important;
  border: 1px solid rgba(77, 159, 255,0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  margin-bottom: 1.2rem !important;
  box-shadow: 0 0 15px rgba(77, 159, 255,0.15) !important;
}
.why-title-new {
  color: #fff !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.5rem !important;
}
.why-desc-new {
  color: rgba(255,255,255,0.4) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

/* 3. FINAL CTA BANNER */
.cta-banner {
  background: rgba(77, 159, 255,0.06) !important;
  border: 1px solid rgba(77, 159, 255,0.15) !important;
  border-radius: 12px !important;
  padding: 60px 40px !important;
  text-align: center !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}
.cta-title-new {
  font-family: 'Sora', sans-serif !important;
  font-size: 3.5rem !important;
  color: #fff !important;
  text-shadow: 0 0 20px rgba(77, 159, 255,0.5) !important;
  margin-bottom: 1rem !important;
  letter-spacing: 0.05em !important;
}
.cta-sub-new {
  color: rgba(255,255,255,0.4) !important;
  font-size: 1.1rem !important;
  margin-bottom: 2.5rem !important;
}
.cta-buttons {
  display: flex !important;
  gap: 1rem !important;
  justify-content: center !important;
  margin-bottom: 2.5rem !important;
  flex-wrap: wrap !important;
}
.trust-badges-row {
  display: flex !important;
  justify-content: center !important;
  gap: 1.5rem !important;
  font-size: 12px !important;
  color: rgba(255,255,255,0.3) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 600 !important;
  flex-wrap: wrap !important;
}
.trust-badges-row span {
  display: inline-block !important;
}

/* 4. FOOTER UPGRADE */
.footer-new {
  border-top: 1px solid rgba(77, 159, 255,0.12) !important;
  background: #070610 !important;
  padding: 2rem 7% !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 2rem !important;
}
.foot-left {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.3rem !important;
}
.foot-logo-new {
  font-family: 'Audiowide', sans-serif !important;
  font-size: 1.2rem !important;
  color: #6BB0FF !important;
  text-shadow: 0 0 10px rgba(77, 159, 255, 0.8), 0 0 20px rgba(77, 159, 255, 0.4) !important;
  letter-spacing: 0.1em !important;
}
.foot-tagline {
  color: rgba(255,255,255,0.3) !important;
  font-size: 12px !important;
}
.foot-center {
  display: flex !important;
  gap: 2rem !important;
}
.foot-center a {
  color: rgba(255,255,255,0.3) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  font-family: 'Sora', sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  transition: color 0.2s !important;
}
.foot-center a:hover {
  color: #4D9FFF !important;
}
.foot-right {
  text-align: right !important;
  color: rgba(255,255,255,0.3) !important;
  font-size: 12px !important;
}

@media (max-width: 768px) {
  .footer-new {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 1.5rem !important;
  }
  .foot-right {
    text-align: center !important;
  }
  .foot-center {
    justify-content: center !important;
  }
}
.card.hidden { display: none !important; }
.hidden { display: none !important; }

/* ============================================================
   HAMBURGER MENU — Mobile Navigation
   ============================================================ */

/* Hamburger button — hidden on desktop */
#hamburger {
  display: none;
  background: rgba(77, 159, 255, 0.15);
  border: 1px solid rgba(77, 159, 255, 0.4);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  z-index: 10001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
#hamburger:hover {
  background: rgba(77, 159, 255, 0.3);
  border-color: rgba(77, 159, 255, 0.7);
}
#hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #6BB0FF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
#hamburger span:nth-child(2) {
  width: 14px;
}
/* Animate to X when active */
#hamburger.active {
  background: rgba(77, 159, 255, 0.25);
  border-color: #4D9FFF;
}
#hamburger.active span {
  width: 20px;
}
#hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
#hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}
#hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile: show hamburger, hide nav-links by default */
@media (max-width: 768px) {
  #hamburger {
    display: flex !important;
  }

  .nav-links {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    z-index: 10000;
    background: rgba(7, 6, 15, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(77, 159, 255, 0.25);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 2rem;
    list-style: none;
    margin: 0;
    overflow-y: visible;
  }

  /* When toggled open */
  .nav-links.mobile-open {
    display: flex !important;
    animation: mobileNavFadeIn 0.3s ease forwards;
  }

  .nav-links.mobile-open li {
    opacity: 0;
    animation: mobileNavItemSlide 0.4s ease forwards;
    width: 100%;
    max-width: 280px;
  }
  .nav-links.mobile-open li:nth-child(1) { animation-delay: 0.06s; }
  .nav-links.mobile-open li:nth-child(2) { animation-delay: 0.12s; }
  .nav-links.mobile-open li:nth-child(3) { animation-delay: 0.18s; }
  .nav-links.mobile-open li:nth-child(4) { animation-delay: 0.24s; }
  .nav-links.mobile-open li:nth-child(5) { animation-delay: 0.30s; }

  .nav-links li {
    width: 100%;
    max-width: 280px;
  }

  .nav-links a {
    font-size: 1.1rem !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: #fff !important;
    text-decoration: none !important;
    padding: 14px 24px !important;
    display: block !important;
    text-align: center !important;
    border: 1px solid rgba(77, 159, 255, 0.25) !important;
    border-radius: 12px !important;
    background: rgba(77, 159, 255, 0.08) !important;
    transition: all 0.25s ease !important;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: #fff !important;
    background: rgba(77, 159, 255, 0.25) !important;
    border-color: #4D9FFF !important;
    box-shadow: 0 0 20px rgba(77, 159, 255, 0.3) !important;
  }

  .nav-right {
    z-index: 10001;
  }
}

@keyframes mobileNavFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes mobileNavItemSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   HERO ROTATOR — rotating subtitle component
   ============================================================ */

/* ── Container ────────────────────────────────────────────── */
.hero-rotator {
  position: relative;
  margin-bottom: 2.5rem;
  max-width: 500px;
  opacity: 1 !important;
  animation: none !important;
}

/* ── Track (fixed height = no layout jump) ────────────────── */
.hero-rotator__track {
  position: relative;
  height: 92px;
  overflow: hidden;
}

/* ── Individual slides: ALL hidden by default ─────────────── */
.hero-rotator__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  opacity: 0;                  /* hidden */
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* ONLY the active slide is visible */
.hero-rotator__slide.active {
  opacity: 1 !important;
  pointer-events: auto;
}

/* ── Typography ───────────────────────────────────────────── */
.hero-rotator__line1 {
  font-family: 'Hanken Grotesk', sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #d0d0d0 !important;
  line-height: 1.4 !important;
  display: block !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
}

.hero-rotator__line2 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #4D9FFF; /* purple accent */
  line-height: 1.45;
  display: block;
  text-shadow: 0 0 14px rgba(77, 159, 255, 0.45);
  letter-spacing: 0.01em;
}

/* ── Dot indicators ───────────────────────────────────────── */
.hero-rotator__dots {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
}

.hero-rotator__dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: rgba(77, 159, 255, 0.28);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    width    0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.35s ease,
    opacity  0.35s ease;
  outline-offset: 3px;
}

.hero-rotator__dot.active {
  width: 22px;                          /* pill stretch */
  background: #4D9FFF;
  box-shadow: 0 0 8px rgba(77, 159, 255, 0.55);
}

.hero-rotator__dot:hover:not(.active) {
  background: rgba(77, 159, 255, 0.55);
}

/* ── Hover-pause (CSS only, JS also handles it) ───────────── */
.hero-rotator:hover .hero-rotator__slide.active {
  /* intentionally no change — pause is handled in JS */
}

/* ── prefers-reduced-motion ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-rotator__slide,
  .hero-rotator__slide.active,
  .hero-rotator__slide.leaving {
    transition:
      opacity 0.5s ease;
    transform: none !important;
  }
  .hero-rotator__dot {
    transition: background 0.3s ease, opacity 0.3s ease;
  }
}

/* --- ANTIGRAVITY NAVY & ELECTRIC BLUE THEME OVERRIDES --- */
:root {
  --bg: #0A0D14 !important;
  --bg-panel: #12161F !important;
  --bg-panel-alt: #161B26 !important;
  --surface: #0A0D14 !important;
  --card-bg: #12161F !important;
  --border: rgba(255,255,255,0.08) !important;
  --border-accent: rgba(77,159,255,0.35) !important;
  --text: #FFFFFF !important;
  --text-primary: #FFFFFF !important;
  --muted: #8A93A6 !important;
  --text-muted: #8A93A6 !important;
  --muted2: #8A93A6 !important;
  --accent: #4D9FFF !important;
  --accent-hover: #6BB0FF !important;
  --accent-glow: rgba(77,159,255,0.25) !important;
  
  --neon-purple: #4D9FFF !important;
  --neon-purple-light: #6BB0FF !important;
  --neon-purple-dim: rgba(77, 159, 255, 0.25) !important;
  --gold: #4D9FFF !important;
  --gold-light: #6BB0FF !important;
  --gold-dim: rgba(77, 159, 255, 0.25) !important;
  --nav-bg: rgba(10, 13, 20, 0.98) !important;
}

[data-theme="light"] {
  --bg: #0A0D14 !important;
  --surface: #0A0D14 !important;
}

body {
  background-color: var(--bg) !important;
  color: var(--text) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

/* Skewed CTA Buttons */
.btn-primary-red, .nav-btn, .card-buy, .btn-arsenal, .btn-gold,
.vouch-modal button[type="submit"],
.hero-btn {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 0 !important;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%) !important;
  border: none !important;
  text-transform: uppercase !important;
  font-weight: 900 !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
  position: relative;
}

.btn-primary-red:hover, .nav-btn:hover, .card-buy:hover, .btn-arsenal:hover, .btn-gold:hover,
.vouch-modal button[type="submit"]:hover,
.hero-btn:hover {
  background: var(--accent-hover) !important;
  transform: scale(1.02) !important;
  box-shadow: 0 0 15px var(--accent-glow) !important;
}

/* Card Styling Update */
.card-wrapper, .magic-card {
  background-color: var(--bg-panel) !important;
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: border-color 0.3s ease !important;
}

.card-wrapper:hover, .magic-card:hover {
  border-color: var(--border-accent) !important;
}

/* Feature Icon Chips */
.feature-icon, .why-icon-circle, .why-icon, .feat-icon {
  background-color: var(--bg-panel-alt) !important;
  border: 1px solid var(--border) !important;
  box-shadow: none !important;
  color: var(--accent) !important;
  border-radius: 4px !important;
}

/* Divider Rules */
.s-rule, .section-divider {
  height: auto !important;
  background: transparent !important;
  border-top: 1px solid var(--border) !important;
  position: relative !important;
  margin: 30px 0 !important;
}

.s-rule::before, .section-divider::before {
  content: '' !important;
  position: absolute !important;
  top: -1px !important;
  left: 0 !important;
  width: 40px !important;
  height: 3px !important;
  background-color: var(--accent) !important;
}

/* Thumbnail Tactical HUD Grid */
.card-thumb, .thumb-wrapper {
  position: relative !important;
  overflow: hidden !important;
}

.card-thumb::after, .thumb-wrapper::after {
  content: '' !important;
  position: absolute !important;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none !important;
  background-size: 24px 24px !important;
  background-image: 
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px) !important;
  z-index: 2 !important;
}

/* Pagination Base Styling */
.pagination-container {
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  margin-top: 30px !important;
}
.pagination-btn {
  background: var(--bg-panel) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  padding: 8px 16px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%) !important;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.pagination-btn:hover {
  background: var(--bg-panel-alt) !important;
  border-color: var(--accent) !important;
}
.pagination-btn.active {
  background: var(--accent) !important;
  color: #fff !important;
  border-color: var(--accent) !important;
}

/* Accent Word global update */
.accent-word {
  color: var(--accent) !important;
  text-shadow: 0 0 18px var(--accent-glow) !important;
  -webkit-text-fill-color: var(--accent) !important;
}
