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

:root {
  --bg:        #000000;
  --bg2:       #0a0a0a;
  --bg3:       #111111;
  --card:      #080808;
  --border:    rgba(255,255,255,.07);
  --blue:      #c07d10;
  --blue-light:#f5a623;
  --blue-glow: rgba(245,166,35,.35);
  --text:      #e8eaf0;
  --muted:     #8b93ad;
  --radius:    12px;
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

/* full-page orange grid texture (fixed, behind everything) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(249,115,22,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.05) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* make sure all sections sit above the grid */
body > * { position: relative; z-index: 1; }

body {
  font-family: 'Inter', sans-serif;
  background-color: #000;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  /* ambient orange glow matching example source */
  background-image:
    radial-gradient(ellipse 130% 70% at 50% -5%, rgba(249,115,22,.18), transparent 55%),
    radial-gradient(ellipse 55% 40% at 96% 12%, rgba(234,88,12,.1), transparent 52%),
    radial-gradient(ellipse 50% 35% at 4% 42%, rgba(251,146,60,.07), transparent 48%),
    radial-gradient(ellipse 90% 50% at 50% 115%, rgba(67,20,7,.4), transparent 50%);
  background-attachment: fixed;
}

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

/* ── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #f5a623 0%, #c07d10 100%);
  color: #fff;
  height: 48px;
  padding: 0 28px;
  border-radius: 10px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  box-shadow: 0 4px 24px rgba(245,166,35,.38), 0 1px 0 rgba(255,255,255,.12) inset;
  transition: box-shadow .25s, transform .18s, gap .2s;
  cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,.12), transparent);
  pointer-events: none;
}
.btn-primary:hover {
  box-shadow: 0 6px 32px rgba(245,166,35,.55), 0 1px 0 rgba(255,255,255,.12) inset;
  transform: translateY(-2px);
  gap: 13px;
}
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}
.btn-primary.cart-pay-btn--blocked {
  opacity: 0.45;
  filter: grayscale(0.85);
  box-shadow: none;
  cursor: not-allowed;
}
.btn-primary.cart-pay-btn--blocked:hover {
  transform: none;
  box-shadow: none;
}
.btn-primary.cart-pay-btn--blocked[aria-disabled='true'] {
  pointer-events: auto; /* allow click so we can show an error instead of silence */
}
.btn-primary .btn-icon { width: 14px; height: 14px; flex-shrink: 0; transition: transform .2s; }
.btn-primary:hover .btn-icon { transform: translateX(2px); }
.btn-svg-icon { width: 16px; height: 16px; flex-shrink: 0; filter: brightness(0) invert(1); opacity: .95; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.72);
  padding: 11px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.12);
  transition: color .2s, border-color .2s, background .2s;
  cursor: pointer;
}
.btn-ghost:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.25);
}
.btn-ghost svg { flex-shrink: 0; opacity: .8; }

/* keep outline for CTA/footer sections */
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  padding: 11px 26px; border-radius: 6px;
  font-weight: 600; font-size: .875rem;
  letter-spacing: .04em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.15);
  transition: border-color .2s, background .2s;
  cursor: pointer;
}
.btn-outline:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.05); }
.btn-lg.btn-outline { padding: 13px 34px; font-size: .92rem; }

.btn-glow { }
.btn-sm { padding: 7px 16px; font-size: .78rem; }
.btn-lg { padding: 13px 34px; font-size: .92rem; }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 12px 48px rgba(0,0,0,.45);
  /* layered backgrounds */
  background:
    linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.7) 60%, transparent),
    linear-gradient(105deg, rgba(249,115,22,.12) 0%, transparent 45%, transparent 55%, rgba(249,115,22,.08) 100%);
}
.navbar::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(0,0,0,.25);
  pointer-events: none;
}

/* keep inner content above the pseudo backdrop */
.nav-inner, .mobile-menu { position: relative; z-index: 1; }

.nav-inner {
  max-width: 1380px; margin: 0 auto;
  padding: .625rem clamp(1rem, 3vw, 1.75rem);
  min-height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex; align-items: center;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity .2s;
}
.logo:hover { opacity: .9; }
.logo-mark {
  height: 44px; width: auto;
  max-width: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,.75));
}

/* ── Center glass nav pill ───────────────────────────────── */
.nav-pill {
  display: flex; align-items: center; gap: 2px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  padding: 4px 4px 4px 6px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 8px 40px -8px rgba(249,115,22,.22);
  /* Slightly left of center so logo + right cluster (utilities / dashboard) breathe */
  position: absolute;
  left: 50%;
  transform: translateX(calc(-50% - clamp(1rem, 5vw, 4.5rem)));
  z-index: 1;
}
.nav-pill a {
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 100px;
  padding: 8px 14px;
  font-size: .875rem; font-weight: 600;
  letter-spacing: .025em;
  color: rgba(228,228,231,.9);
  white-space: nowrap;
  transition: background .2s, color .2s, box-shadow .2s;
}
.nav-pill a svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .9; }
.nav-pill a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.nav-pill a.active {
  background: rgba(255,255,255,.1);
  color: #fb923c;
  box-shadow: 0 0 20px -4px rgba(249,115,22,.35);
}

/* ── Right: utilities pill + Dashboard (logged-in header like `web example`) ── */
.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.nav-actions--cb-cluster {
  position: relative;
  z-index: 4;
  gap: 0.5rem;
}
.nav-right-cluster {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.nav-utilities-pill {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  padding: 0.2rem 0.35rem 0.2rem 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.nav-utility-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 2.25rem;
  min-width: 2.25rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgba(161, 161, 170, 0.95);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-utility-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fafafa;
}
.nav-utility-btn svg,
.nav-utility-btn i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.92;
}
.nav-utility-btn--icon {
  width: 2.25rem;
  padding: 0;
}
.nav-cart-utility {
  padding-right: 0.65rem;
}
.nav-cart-label {
  color: rgba(228, 228, 231, 0.88);
}
.nav-utilities-divider {
  align-self: stretch;
  width: 1px;
  min-height: 1.5rem;
  margin: 0 0.1rem 0 0.2rem;
  background: rgba(255, 255, 255, 0.1);
}
.nav-auth-slot {
  display: flex;
  align-items: center;
  min-height: 2.25rem;
}
.nav-auth-slot:empty {
  display: none;
}
.nav-user-menu {
  position: relative;
}
.nav-user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.35rem 0.15rem 0.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-user-trigger:hover,
.nav-user-menu--open .nav-user-trigger {
  border-color: rgba(251, 146, 60, 0.45);
  background: rgba(255, 255, 255, 0.08);
}
.nav-user-trigger-avatar {
  border-radius: 999px;
  width: 28px;
  height: 28px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-user-trigger-chevron {
  width: 14px !important;
  height: 14px !important;
  color: #a1a1aa;
  transition: transform 0.2s ease;
}
.nav-user-menu--open .nav-user-trigger-chevron {
  transform: rotate(180deg);
  color: #e4e4e7;
}
.nav-user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 80;
  width: min(100vw - 2rem, 280px);
  padding: 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 9, 11, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
}
.nav-user-dropdown-kicker {
  margin: 0;
  padding: 0 0.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #71717a;
}
.nav-user-dropdown-name {
  margin: 0.2rem 0 0;
  padding: 0 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fafafa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-user-dropdown-rule {
  margin: 0.65rem 0;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}
.nav-user-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 0;
  border-radius: 0.65rem;
  background: transparent;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e4e4e7;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}
.nav-user-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.nav-user-dropdown-item svg,
.nav-user-dropdown-item i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #fb923c;
}
.nav-user-dropdown-logout {
  justify-content: space-between;
  color: #a1a1aa;
}
.nav-user-dropdown-logout i {
  color: #71717a;
}
.btn-discord-oauth--compact {
  height: 2.25rem;
  min-height: 2.25rem;
  padding: 0 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
}
@media (max-width: 420px) {
  .nav-cart-label {
    display: none;
  }
  .nav-cart-utility {
    padding-right: 0.35rem;
  }
}

.btn-discord-nav {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 100px;
  padding: 9px 20px;
  font-size: .875rem; font-weight: 700;
  letter-spacing: .025em;
  color: #fff; white-space: nowrap;
  border: 1px solid rgba(249,115,22,.45);
  background: linear-gradient(to bottom, #f97316, #ea580c, #7c2d12);
  box-shadow: 0 0 28px rgba(249,115,22,.38), inset 0 1px 0 rgba(255,255,255,.12);
  transition: border-color .2s, box-shadow .2s, filter .2s;
}
.btn-discord-nav::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.1) 45%, rgba(255,255,255,.22) 50%, rgba(255,255,255,.1) 55%, transparent 100%);
  background-size: 220% 100%;
  animation: navCtaSheen 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes navCtaSheen {
  0%   { background-position: -100% 0; }
  60%,100% { background-position: 220% 0; }
}
.btn-discord-nav svg, .btn-discord-nav span { position: relative; z-index: 2; }
.btn-discord-nav:hover {
  border-color: rgba(249,115,22,.6);
  box-shadow: 0 0 40px rgba(249,115,22,.52), inset 0 1px 0 rgba(255,255,255,.18);
  filter: brightness(1.04);
}

/* Navbar Dashboard CTA (matches `web example` DashboardCta / header.tsx) */
.btn-nav-dashboard {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 2.75rem;
  min-height: 2.75rem;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(251, 146, 60, 0.45);
  padding: 0 1.15rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  background: linear-gradient(to bottom, #f97316, #ea580c, #431407);
  box-shadow:
    0 0 32px rgba(249, 115, 22, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}
.btn-nav-dashboard .showcase-cta-gloss {
  inset: 0;
  width: 100%;
  opacity: 0.5;
  mix-blend-mode: overlay;
  animation-duration: 4s;
}
.btn-nav-dashboard-inner {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-nav-dashboard-inner svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.95;
}
.btn-nav-dashboard:hover {
  transform: scale(1.03);
  border-color: rgba(253, 186, 116, 0.55);
  box-shadow:
    0 0 48px rgba(249, 115, 22, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  filter: brightness(1.04);
}
.btn-nav-dashboard:active {
  transform: scale(0.98);
}
.btn-nav-dashboard--mobile {
  width: 100%;
  margin-bottom: 0.35rem;
  justify-content: center;
}

/* Discord OAuth (static site — mirrors `web example` login CTA) */
.nav-discord-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.btn-discord-oauth {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 2.75rem;
  min-height: 2.75rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  background: linear-gradient(180deg, #5865f2, #4752c4);
  box-shadow: 0 0 24px rgba(88, 101, 242, 0.35);
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}
.btn-discord-oauth:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.3);
}
.btn-discord-oauth:not(:disabled):hover,
a.btn-discord-oauth:hover {
  transform: scale(1.03);
  filter: brightness(1.06);
}
a.btn-discord-oauth:visited {
  color: #fff;
}

/* login.html — Discord gate before dashboard (matches `web example` LoginPage) */
.cb-login-page {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4.5rem;
  padding-bottom: 3rem;
}
.cb-login-home-logo {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cb-login-home-logo:hover {
  opacity: 1;
  transform: scale(1.04);
}
.cb-login-center {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.cb-login-card {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.45);
  padding: 2rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.1),
    0 28px 80px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(249, 115, 22, 0.06);
}
.cb-login-title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fafafa;
}
.cb-login-lead {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #a1a1aa;
}
.cb-login-hint {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #fcd34d;
}
.cb-login-actions {
  margin-top: 2rem;
}
.cb-login-discord-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(180deg, #5865f2, #4752c4);
  box-shadow: 0 0 28px rgba(88, 101, 242, 0.35);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.cb-login-discord-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.cb-login-back-wrap {
  margin: 2rem 0 0;
  text-align: center;
}
.cb-login-back {
  font-size: 0.75rem;
  color: #fb923c;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}
.cb-login-back:hover {
  color: #fdba74;
  text-decoration: underline;
}
.btn-discord-oauth svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-discord-oauth--mobile {
  width: 100%;
  margin-bottom: 0.35rem;
}
.mobile-discord-oauth-row {
  margin-bottom: 0.5rem;
}
.nav-discord-user {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 11rem;
  padding: 0.2rem 0.65rem 0.2rem 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  text-decoration: none;
  color: #fafafa;
  font-size: 0.78rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-discord-user:hover {
  border-color: rgba(251, 146, 60, 0.45);
  background: rgba(251, 146, 60, 0.08);
}
.nav-discord-user-avatar {
  border-radius: 999px;
  flex-shrink: 0;
}
.nav-discord-user-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-discord-signout {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #a1a1aa;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.55rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-discord-signout:hover {
  color: #fafafa;
  border-color: rgba(255, 255, 255, 0.28);
}

.nav-cart-badge {
  position: absolute;
  top: -3px;
  right: 0;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 4px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.125rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.45);
  pointer-events: none;
}

/* Hamburger & mobile */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; cursor: pointer; padding: 9px;
}
.hamburger span { width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }

.mobile-menu {
  display: none; flex-direction: column;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1rem 1.25rem;
  gap: 3px;
}

/* glass card inside mobile menu */
.mobile-menu-inner {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}
.mobile-menu a {
  display: flex; align-items: center; gap: 12px;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: .95rem; font-weight: 600;
  color: rgba(228,228,231,.85);
  transition: background .15s, color .15s;
}
.mobile-menu a svg { width: 20px; height: 20px; flex-shrink: 0; opacity: .9; }
.mobile-menu a:hover { background: rgba(255,255,255,.05); color: #fff; }
.mobile-menu a.active { background: rgba(255,255,255,.1); color: #fb923c; }
.mobile-menu a.mobile-cta {
  margin-top: 4px;
  border: 1px solid rgba(249,115,22,.4);
  background: linear-gradient(to bottom, #f97316, #ea580c, #7c2d12);
  color: #fff;
  box-shadow: 0 0 24px rgba(249,115,22,.3), inset 0 1px 0 rgba(255,255,255,.1);
}
.mobile-menu.open { display: flex; }

@media (max-width: 1023px) {
  .nav-pill { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 480px) {
  .btn-discord-nav span { display: none; }
  .nav-inner { padding: .5rem 1rem; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(74vh, 840px);
  display: flex; align-items: center;
  padding-top: 64px;
}

/* ── Background layers ───────────────────────────────────── */
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background: url('assets/hero-bg2.png') center 35% / cover no-repeat;
}
.hero-star-canvas {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-bg-black {
  position: absolute; inset: 0; z-index: 2;
  /* lifted from pure black so the scene reads softer */
  background: rgba(12, 11, 14, 0.4);
}
.hero-bg-lr {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to right,
    rgba(8, 7, 9, 0.72) 0%,
    rgba(6, 6, 8, 0.48) 45%,
    rgba(4, 4, 5, 0.22) 100%
  );
}
.hero-bg-tb {
  position: absolute; inset: 0; z-index: 4;
  background: linear-gradient(
    to top,
    rgba(10, 10, 12, 0.82) 0%,
    rgba(0, 0, 0, 0.12) 50%,
    rgba(8, 8, 10, 0.42) 100%
  );
}
.hero-bg-tint {
  position: absolute; inset: 0; z-index: 5;
  background: rgba(67,20,7,.15);
}
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 6;
  opacity: .07;
  background-image:
    linear-gradient(rgba(249,115,22,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.35) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── Inner layout ────────────────────────────────────────── */
.hero-inner {
  position: relative; z-index: 10;
  /* match .our-store-inner (1380) so hero + nav align with store — less side margin on wide screens */
  max-width: 1380px; margin: 0 auto;
  padding: 3.5rem clamp(1rem, 3vw, 1.75rem) 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  width: 100%;
}

/* ── Left: copy ──────────────────────────────────────────── */
.hero-content {
  display: flex; flex-direction: column;
  align-items: flex-start;
}

/* ── Trustpilot badge ────────────────────────────────────── */
.tp-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,5,0,.95);
  border: 1px solid #5c2d00;
  border-radius: 100px;
  padding: 7px 16px 7px 10px;
  margin-bottom: 1.75rem;
  width: fit-content;
  text-decoration: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,.5);
  transition: border-color .2s, background .2s;
}
.tp-badge:hover { border-color: rgba(245,166,35,.5); background: rgba(18,10,0,.95); }
.tp-star-icon { width: 14px; height: 14px; flex-shrink: 0; }
.tp-label { font-size: .82rem; font-weight: 700; color: #fff; white-space: nowrap; }

/* ── Hero title ──────────────────────────────────────────── */
.hero-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin-bottom: 1.4rem;
}
.hero-line1 {
  display: block;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  line-height: 1.05;
  color: #fff;
  -webkit-text-fill-color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,.85);
}
.hero-line2 {
  display: block;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  line-height: 1.05;
  margin-top: 2px;
  background: linear-gradient(to bottom, #fbbf24, #f97316, #c07a10);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 20px rgba(249,115,22,.25));
}

/* ── Hero description ────────────────────────────────────── */
.hero-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.72);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 500;
}

/* ── Hero buttons ────────────────────────────────────────── */
.hero-btns {
  display: flex; align-items: center; gap: .75rem;
  flex-wrap: wrap;
}
.hero-btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.hero-btn-products {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
  color: #fff;
  height: 48px; padding: 0 28px;
  border-radius: 12px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase;
  border: none;
  box-shadow: 0 4px 24px rgba(249,115,22,.4), inset 0 1px 0 rgba(255,255,255,.15);
  transition: transform .18s, box-shadow .2s, filter .2s;
}
.hero-btn-products:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,.55);
  filter: brightness(1.05);
}

.hero-btn-status {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.4);
  color: #fff;
  height: 48px; padding: 0 28px;
  border-radius: 12px;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s, transform .18s;
}
.hero-btn-status:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(249,115,22,.4);
  transform: translateY(-2px);
}

/* ── Right: YouTube video column ─────────────────────────── */
.hero-video-col {
  width: 100%;
  display: flex; flex-direction: column; gap: .75rem;
}
.hero-yt-card {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.5);
  box-shadow: 0 24px 64px rgba(0,0,0,.55);
}
.hero-yt-frame-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.hero-yt-frame-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none; display: block;
}
.hero-view-status {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.7);
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: #fff; text-decoration: none;
  backdrop-filter: blur(12px);
  transition: border-color .2s, background .2s, color .2s;
}
.hero-view-status:hover {
  border-color: rgba(249,115,22,.35);
  background: rgba(0,0,0,.8);
  color: #fb923c;
}
.hero-status-icon { width: 16px; height: 16px; color: #f97316; flex-shrink: 0; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem clamp(1rem, 4vw, 1.5rem) 4rem;
    gap: 1.75rem;
  }
  .hero-content { align-items: center; }
  .tp-badge { align-self: center; }
  .hero-desc { max-width: 520px; }
  .hero-btns { justify-content: center; }
  .hero-video-col { max-width: 640px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .hero { min-height: auto; padding-top: 64px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btn-products, .hero-btn-status { width: 100%; justify-content: center; }
}

/* ── shineScroll (kept for element-1) ──────────────────── */
@keyframes shineScroll {
  from { background-position: 220% 0; }
  to   { background-position: -220% 0; }
}

/* ── Seasonal campaign module (homepage) ─────────────────── */
.seasonal-campaign {
  position: relative;
  padding: 1.25rem clamp(1rem, 3vw, 1.75rem) 0.65rem;
}

.seasonal-campaign-inner {
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 1.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(165deg, rgba(18, 18, 22, 0.96) 0%, rgba(8, 8, 12, 0.98) 62%, rgba(4, 4, 6, 1) 100%);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.seasonal-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .seasonal-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.seasonal-eyebrow {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #71717a;
}

.seasonal-title {
  margin: 0.25rem 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.seasonal-accent {
  color: #fb923c;
}

.seasonal-sub {
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #a1a1aa;
  max-width: 44rem;
}

.seasonal-head-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2.35rem;
  padding: 0 0.9rem;
  border-radius: 0.6rem;
  border: 1px solid rgba(249, 115, 22, 0.28);
  background: rgba(249, 115, 22, 0.12);
  color: #fdba74;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.seasonal-head-cta svg {
  width: 0.95rem;
  height: 0.95rem;
}

.seasonal-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .seasonal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.seasonal-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.9rem;
  border: 1px solid rgba(249, 115, 22, 0.2);
  background: rgba(0, 0, 0, 0.4);
  padding: 1rem 1rem 1.1rem;
}

.seasonal-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.45rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.14);
  color: #fdba74;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seasonal-badge--alt {
  border-color: rgba(250, 204, 21, 0.38);
  background: rgba(250, 204, 21, 0.12);
  color: #fde047;
}

.seasonal-card h3 {
  margin: 0.75rem 0 0;
  font-size: 1.02rem;
  color: #fff;
}

.seasonal-card p {
  margin: 0.5rem 0 0;
  font-size: 0.84rem;
  color: #a1a1aa;
  line-height: 1.6;
}

.seasonal-meta {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.seasonal-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 1.65rem;
  padding: 0 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(10, 10, 12, 0.7);
  font-size: 0.7rem;
  color: #d4d4d8;
}

.seasonal-meta span svg {
  width: 0.85rem;
  height: 0.85rem;
  color: #fb923c;
}

.seasonal-actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.seasonal-actions .dash-btn-primary,
.seasonal-actions .dash-btn-outline {
  min-height: 2.2rem;
  padding: 0 0.9rem;
  border-radius: 0.62rem;
  font-size: 0.73rem;
}

/* ── Our Store ──────────────────────────────────────────── */
.our-store { padding: 5rem clamp(1rem, 3vw, 1.75rem) 5rem; }
.our-store-inner { max-width: 1380px; margin: 0 auto; }

.os-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: 2rem;
}
.os-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: .98;
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  margin-bottom: .5rem;
}
.os-accent {
  background: linear-gradient(
    110deg,
    #f5a623 0%,
    #f5a623 28%,
    rgba(255,255,255,.96) 44%,
    #ffffff 50%,
    rgba(255,255,255,.96) 56%,
    #f5a623 72%,
    #f5a623 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineScroll 4.8s linear infinite;
}
.os-sub { font-size: .9rem; color: rgba(255,255,255,.5); }

/* Trustpilot badge — dark pill with green star */
.os-rating {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(8,8,12,.85);
  border-radius: 100px; padding: 8px 18px 8px 14px;
  font-size: .82rem; font-weight: 700; color: rgba(255,255,255,.9);
  white-space: nowrap; text-decoration: none;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
  transition: border-color .2s, background .2s;
}
.os-rating:hover { border-color: rgba(0,182,122,.35); background: rgba(0,182,122,.06); }
.os-rating-star { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Grid: 3 columns × 3 rows ───────────────────────────── */
.os-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ── Card — natural image size, clickable ────────────────── */
.os-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 8px 32px rgba(0,0,0,.55);
  line-height: 0;
  transition: transform .32s cubic-bezier(.25,.46,.45,.94),
              border-color .25s, box-shadow .25s;
}
.os-card:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(249,115,22,.45);
  box-shadow: 0 0 32px rgba(249,115,22,.18), 0 16px 48px rgba(0,0,0,.75);
}

/* Image fills card width, height is natural (no crop) */
.os-game-img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}
.os-card:hover .os-game-img { transform: scale(1.04); }

/* overlays hidden — image has baked-in text */
.os-game-overlay,
.os-game-name,
.os-game-wm,
.os-game-coming { display: none; }

/* ── Coming Soon placeholder card ───────────────────────── */
.os-card-coming {
  background: linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 100%);
  border: 1px solid rgba(249,115,22,.2);
  aspect-ratio: 1 / 1;
}
.os-coming-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
}
.os-coming-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
}
.os-coming-tag {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(249,115,22,.8);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 100px;
  padding: 3px 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .os-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .os-grid { gap: 10px; }
}

/* ══════════════════════════════════════════════════════════
   PRODUCT CATEGORY PAGE  (rainbow.html etc.)
   ══════════════════════════════════════════════════════════ */

/* ── Hero banner ─────────────────────────────────────────── */
.pcat-hero {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex; align-items: center; justify-content: center;
  padding-top: 64px; /* navbar */
  text-align: center;
}
.pcat-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 120% at 50% 60%,
    rgba(30,12,3,.97) 0%,
    rgba(10,6,2,.99) 55%,
    #000 100%
  );
}
.pcat-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 90% at 50% 50%,
    rgba(249,115,22,.08) 0%,
    transparent 70%
  );
}
.pcat-hero-grid {
  position: absolute; inset: 0; opacity: .05;
  background-image:
    linear-gradient(rgba(249,115,22,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.4) 1px, transparent 1px);
  background-size: 32px 32px;
}
.pcat-hero-inner {
  position: relative; z-index: 2;
  padding: 3rem 2rem 2.5rem;
}
.pcat-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.4); text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color .2s;
}
.pcat-back:hover { color: rgba(255,255,255,.75); }
.pcat-back-icon { width: 14px; height: 14px; }
.pcat-hero-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}
.pcat-hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #f97316;
  letter-spacing: .01em;
}

/* ── Product listing — pulled up to overlap element-1 ────── */
.pcat-list {
  position: relative; z-index: 10;
  margin-top: -80px;
  padding: 0 2rem 5rem;
}
.pcat-list-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Product card ────────────────────────────────────────── */
.pcard {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  border-radius: 16px; overflow: hidden;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 20px 60px rgba(0,0,0,.7);
  transition: transform .28s cubic-bezier(.25,.46,.45,.94),
              border-color .22s, box-shadow .22s;
}
.pcard:hover {
  transform: translateY(-6px);
  border-color: rgba(249,115,22,.4);
  box-shadow: 0 0 32px rgba(249,115,22,.14), 0 24px 60px rgba(0,0,0,.8);
}

/* card image */
.pcard-img-wrap {
  position: relative; overflow: hidden; line-height: 0;
}
.pcard-img {
  display: block; width: 100%;
  height: 210px; object-fit: cover; object-position: center top;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
}
.pcard:hover .pcard-img { transform: scale(1.05); }

/* label badges (top-left) */
.pcard-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 4px;
}
.pcard-badge {
  display: inline-block;
  font-size: .58rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 3px 8px; border-radius: 4px;
}
.pcard-badge--pop  { background: #fff; color: #000; }
.pcard-badge--safe { background: #22c55e; color: #000; }
.pcard-badge--esp  { background: rgba(0,0,0,.75); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.pcard-badge--mid   { background: rgba(59,130,246,.22); color: #93c5fd; border: 1px solid rgba(59,130,246,.4); }
.pcard-badge--hwid  { background: rgba(168,85,247,.2); color: #e9d5ff; border: 1px solid rgba(168,85,247,.35); }
.pcard-badge--best  { background: rgba(249,115,22,.22); color: #fdba74; border: 1px solid rgba(249,115,22,.45); }
.pcard-badge--toptier { background: rgba(234,179,8,.18); color: #fde047; border: 1px solid rgba(234,179,8,.4); }

/* info block */
.pcard-info {
  padding: 1rem 1.1rem 1rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.pcard-top {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: .5rem;
}
.pcard-name {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.1rem; font-weight: 800; color: #fff;
}
.pcard-price-row {
  font-size: .62rem; font-weight: 700;
  color: rgba(255,255,255,.4);
  text-transform: uppercase; letter-spacing: .06em;
  white-space: nowrap;
}
.pcard-price-row strong {
  color: #4ade80; font-size: .95rem;
}

/* duration / price tiers */
.pcard-tiers {
  display: flex; flex-direction: column; gap: 5px;
  margin: .15rem 0 .25rem;
}
.pcard-tier {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
}
.pcard-tier span {
  font-size: .68rem; font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: .06em;
}
.pcard-tier strong {
  font-size: .88rem; font-weight: 800; color: #fff;
}

/* status pill */
.pcard-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.28);
  color: #4ade80;
  padding: 4px 10px; border-radius: 100px;
  width: fit-content;
}
.pcard-status-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 5px #4ade80;
}

/* buy button */
.pcard-buy {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: .65rem 0;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .07em;
  color: #fff;
  transition: background .2s, border-color .2s, color .2s;
}
.pcard:hover .pcard-buy {
  background: rgba(249,115,22,.12);
  border-color: rgba(249,115,22,.4);
  color: #fb923c;
}
.pcard-buy-icon { width: 14px; height: 14px; }

@media (max-width: 960px) {
  .pcat-list-inner { grid-template-columns: 1fr; max-width: 440px; }
}
@media (max-width: 600px) {
  .pcat-list { margin-top: -60px; }
  .pcat-list-inner { max-width: 100%; }
  .pcard-img { height: 140px; }
}

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════ */
.hiw {
  padding: 5rem 2rem;
  position: relative;
}
/* orange gradient wash — same technique as e1-accent shine */
.hiw--gradient {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(249,115,22,.04) 40%,
    rgba(249,115,22,.07) 60%,
    transparent 100%
  );
}
.hiw--gradient::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(249,115,22,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(249,115,22,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hiw-inner { position: relative; z-index: 1; }
.hiw-inner {
  max-width: 1100px; margin: 0 auto;
}
.hiw-header {
  text-align: center;
  margin-bottom: 3rem;
}
.hiw-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .5rem;
}
.hiw-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.4);
}

/* ── Setup + AnyDesk block (from `web example` landing) ───────── */
.hiw-setup-inner {
  max-width: 1180px;
}
.hiw-setup-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: clamp(1.35rem, 2.8vw, 2.1rem);
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hiw-setup-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(249, 115, 22, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.22) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.05;
  pointer-events: none;
}
.hiw-setup-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 50%, rgba(120, 34, 12, 0.35), transparent 46%),
    radial-gradient(circle at 16% 42%, rgba(249, 115, 22, 0.16), transparent 55%);
  pointer-events: none;
}
.hiw-setup-head {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 1.75rem;
  margin-bottom: 2.75rem;
}
.hiw-setup-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9cdd3;
}
.hiw-setup-hero-title {
  margin-bottom: 0;
  text-align: left;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.hiw-setup-accent {
  color: #fb923c;
}
.hiw-setup-shop {
  flex-shrink: 0;
  align-self: flex-end;
  padding: 0.72rem 1.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
  border-color: rgba(251, 191, 36, 0.75);
  color: #1c0f00;
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.28), 0 0 24px rgba(245, 158, 11, 0.28);
}
.hiw-setup-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: start;
}
.hiw-setup-visual {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  min-height: 280px;
  padding: 1.5rem 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hiw-setup-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.12) 0%,
    rgba(255, 255, 255, 0.02) 45%,
    rgba(69, 10, 10, 0.12) 100%
  );
  pointer-events: none;
}
.hiw-ad-stack {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 260px;
  height: 270px;
  margin: 0 auto;
}
.hiw-ad-card {
  position: absolute;
  left: 50%;
  width: 92%;
  max-width: 240px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(24, 24, 27, 0.75), rgba(9, 9, 11, 0.92));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hiw-ad-card--back {
  top: 52px;
  transform: translateX(-50%) rotate(-10deg);
  z-index: 1;
  height: 132px;
  padding: 1rem;
  opacity: 0.92;
}
.hiw-ad-card--back::after,
.hiw-ad-card--mid::after {
  content: '';
  display: block;
  margin-top: 0.75rem;
  height: 8px;
  width: 75%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 0 0 rgba(255, 255, 255, 0.04);
}
.hiw-ad-card--mid {
  top: 28px;
  transform: translateX(-50%) rotate(4deg);
  z-index: 2;
  height: 148px;
  padding: 1rem;
  border-color: rgba(249, 115, 22, 0.25);
}
.hiw-ad-card--front {
  top: 0;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 3;
  padding: 1rem 1rem 1.1rem;
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.12),
    0 20px 50px rgba(0, 0, 0, 0.65);
}
.hiw-ad-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(251, 191, 36, 0.95);
  border: 1px solid rgba(249, 115, 22, 0.45);
  background: rgba(249, 115, 22, 0.12);
}
.hiw-ad-desk {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  padding: 0.75rem 0.5rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(
    160deg,
    rgba(249, 115, 22, 0.2) 0%,
    rgba(249, 115, 22, 0.06) 42%,
    transparent 100%
  );
}
.hiw-ad-desk img {
  filter: drop-shadow(0 0 22px rgba(249, 115, 22, 0.35));
}
.hiw-ad-desk-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 146, 60, 0.92);
}
.hiw-ad-skel {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.hiw-ad-skel-line {
  display: block;
  height: 9px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.14);
}
.hiw-ad-skel-line--lg {
  width: 100%;
}
.hiw-ad-skel-line--sm {
  width: 78%;
  background: rgba(255, 255, 255, 0.09);
}
.hiw-setup-copy {
  padding-top: 0.15rem;
  max-width: 36rem;
}
.hiw-setup-card-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.hiw-setup-meta {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #d4d4d8;
}
.hiw-setup-desc {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(214, 214, 214, 0.9);
}
.hiw-setup-secondary {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-width: 190px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(3, 3, 5, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
}

@media (max-width: 900px) {
  .hiw-setup-shell {
    border-radius: 1.25rem;
  }
  .hiw-setup-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .hiw-setup-shop {
    align-self: stretch;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .hiw-setup-grid {
    grid-template-columns: 1fr;
  }
  .hiw-setup-visual {
    order: -1;
  }
}

/* 3-column grid */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* card */
.hiw-card {
  display: flex; flex-direction: column;
  border-radius: 18px; overflow: hidden;
  background: rgba(18,18,18,.9);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transition: transform .3s cubic-bezier(.25,.46,.45,.94),
              border-color .25s, box-shadow .25s;
}
.hiw-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249,115,22,.3);
  box-shadow: 0 0 28px rgba(249,115,22,.1), 0 16px 48px rgba(0,0,0,.6);
}

/* illustration area */
.hiw-img-wrap {
  background: rgba(255,255,255,.03);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.hiw-img {
  width: 100%; max-width: 220px;
  height: 180px; object-fit: contain;
}

/* body */
.hiw-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.hiw-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  font-size: .85rem; font-weight: 800;
  color: #fff;
}
.hiw-card-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.05rem; font-weight: 800;
  color: #fff;
  line-height: 1.3;
}
.hiw-card-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .hiw-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* ══════════════════════════════════════════════════════════
   LATEST YOUTUBE SECTION
   ══════════════════════════════════════════════════════════ */
.yt-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.yt-bg-grid {
  position: absolute; inset: 0;
  opacity: .14;
  background-image:
    linear-gradient(rgba(249,115,22,.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.45) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.yt-bg-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(249,115,22,.06) 0%, transparent 60%);
  pointer-events: none;
}
.yt-bg-left {
  position: absolute; top: 50%; left: -8rem;
  width: min(70vw,420px); height: min(80vh,560px);
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(127,29,29,.25);
  filter: blur(100px);
  pointer-events: none;
}
.yt-bg-right {
  position: absolute; top: 50%; right: -8rem;
  width: min(70vw,420px); height: min(80vh,560px);
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(120,53,15,.25);
  filter: blur(100px);
  pointer-events: none;
}

.yt-inner {
  position: relative; z-index: 2;
  max-width: 1000px; margin: 0 auto;
}

/* glass card */
.yt-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 0 1px rgba(249,115,22,.08), 0 28px 80px rgba(0,0,0,.35);
  transition: border-color .5s, box-shadow .5s;
}
.yt-card:hover {
  border-color: rgba(249,115,22,.35);
  box-shadow: 0 0 48px rgba(249,115,22,.14), 0 0 80px rgba(127,29,29,.1), 0 28px 80px rgba(0,0,0,.45);
}

/* ── Exact overlay layers from example source ─────────────── */
/* left red wash — pulses opacity */
.yt-left-wash {
  position: absolute; inset: 0; z-index: 0; border-radius: 24px;
  background: radial-gradient(
    ellipse 95% 130% at 0% 50%,
    rgba(95,22,35,.5) 0%,
    rgba(45,12,18,.22) 38%,
    transparent 68%
  );
}
@keyframes ytWashPulse {
  0%,100% { opacity: .72; }
  50%      { opacity: .92; }
}
.yt-wash-anim { animation: ytWashPulse 3.8s ease-in-out infinite; }
.yt-card:hover .yt-wash-anim { animation-duration: 2.6s; }

/* top vignette glow */
.yt-vignette-pulse {
  position: absolute; inset: 0; z-index: 1; border-radius: 24px;
  mix-blend-mode: screen; opacity: .75;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(249,115,22,.14) 0%, transparent 55%);
  animation: ytGlowPulse 3.2s ease-in-out infinite;
}
@keyframes ytGlowPulse {
  0%,100% { opacity: .22; }
  50%      { opacity: .42; }
}

/* diagonal sheen sweep */
.yt-gradient-overlay {
  position: absolute; inset: 0; z-index: 2; border-radius: 24px;
  mix-blend-mode: overlay; opacity: .7;
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(249,115,22,0) 35%,
    rgba(249,115,22,.18) 48%,
    rgba(251,146,60,.28) 52%,
    rgba(249,115,22,0) 65%,
    transparent 100%
  );
  background-size: 240% 240%;
  animation: ytSheenSweep 5.5s ease-in-out infinite;
  transition: opacity .5s;
}
.yt-card:hover .yt-gradient-overlay { opacity: .9; }
@keyframes ytSheenSweep {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* inner grid texture */
.yt-inner-grid {
  position: absolute; inset: 0; z-index: 2; border-radius: 24px;
  opacity: .045; transition: opacity .5s;
  background-image:
    linear-gradient(rgba(249,115,22,.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.45) 1px, transparent 1px);
  background-size: 24px 24px;
}
.yt-card:hover .yt-inner-grid { opacity: .07; }

/* all actual content sits above overlays */
.yt-card-content {
  position: relative; z-index: 10;
  padding: 2rem 2.5rem;
}

/* corner brackets (exact from example) */
.yt-corner {
  position: absolute; z-index: 15;
  width: 12px; height: 12px;
  border-color: #f97316;
  border-style: solid;
}
.yt-tl { top: 16px; left: 16px;  border-width: 1px 0 0 1px; border-radius: 3px 0 0 0; box-shadow: 0 0 6px rgba(249,115,22,.4); }
.yt-tr { top: 16px; right: 16px; border-width: 1px 1px 0 0; border-radius: 0 3px 0 0; box-shadow: 0 0 6px rgba(249,115,22,.4); }
.yt-bl { bottom: 16px; left: 16px;  border-width: 0 0 1px 1px; border-radius: 0 0 0 3px; box-shadow: 0 0 6px rgba(249,115,22,.4); }
.yt-br { bottom: 16px; right: 16px; border-width: 0 1px 1px 0; border-radius: 0 0 3px 0; box-shadow: 0 0 6px rgba(249,115,22,.4); }

/* header row */
.yt-card-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  margin-bottom: 1.75rem;
}
.yt-eyebrow {
  font-size: .688rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .22em;
  color: #9ca3af;
  margin-bottom: .5rem;
}
.yt-heading {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 700; letter-spacing: -.02em;
  color: #fff;
}
.yt-watch-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
  background: linear-gradient(to bottom, rgba(63,63,70,.95), rgba(9,9,11,1));
  font-size: .8rem; font-weight: 600; color: #fff;
  text-decoration: none;
  transition: border-color .25s, box-shadow .25s;
}
.yt-watch-btn:hover {
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 0 20px rgba(255,0,0,.15);
}
.yt-watch-label { color: #d4d4d8; }
.yt-yt-logo {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: #FF0000;
  flex-shrink: 0;
}

/* content row */
.yt-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* iframe */
.yt-frame-wrap {
  position: relative;
  width: 100%; padding-bottom: 56.25%;
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #000;
}
.yt-frame-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* meta */
.yt-meta { padding-top: .25rem; }
.yt-meta-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 700; letter-spacing: -.01em;
  color: #fff; line-height: 1.35;
  margin-bottom: .5rem;
}
.yt-meta-pub {
  font-size: .8125rem; font-weight: 500;
  color: #a3a3a3; margin-bottom: .85rem;
}
.yt-meta-desc {
  font-size: .875rem; line-height: 1.75;
  color: #a0a0a0;
}

@media (max-width: 720px) {
  .yt-card-body { grid-template-columns: 1fr; }
  .yt-card { padding: 1.5rem; }
}

/* ══════════════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════════════ */
.faq2 {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem 5rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
/* glow only at bottom — fades in as you scroll to it */
.faq2-bg-glow {
  position: absolute;
  bottom: -20%; left: -10%;
  width: 65vw; max-width: 600px;
  height: 65vw; max-height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(249,115,22,.11) 0%,
    rgba(194,65,12,.05) 45%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
}
.faq2-bg-grid {
  position: absolute; inset: 0; opacity: .035;
  background-image:
    linear-gradient(rgba(249,115,22,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.5) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.faq2-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
}

/* glass card box — mirrors yt-card */
.faq2-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 0 1px rgba(249,115,22,.06), 0 24px 72px rgba(0,0,0,.4);
  transition: border-color .5s, box-shadow .5s;
}
.faq2-card:hover {
  border-color: rgba(249,115,22,.3);
  box-shadow: 0 0 48px rgba(249,115,22,.12), 0 0 80px rgba(127,29,29,.1), 0 24px 72px rgba(0,0,0,.5);
}
/* corner brackets */
.faq2-corner {
  position: absolute;
  width: 12px; height: 12px;
  border-color: #f97316; border-style: solid;
}
.faq2-tl { top:16px; left:16px;   border-width:1px 0 0 1px; border-radius:3px 0 0 0; box-shadow:0 0 6px rgba(249,115,22,.4); }
.faq2-tr { top:16px; right:16px;  border-width:1px 1px 0 0; border-radius:0 3px 0 0; box-shadow:0 0 6px rgba(249,115,22,.4); }
.faq2-bl { bottom:16px; left:16px;  border-width:0 0 1px 1px; border-radius:0 0 0 3px; box-shadow:0 0 6px rgba(249,115,22,.4); }
.faq2-br { bottom:16px; right:16px; border-width:0 1px 1px 0; border-radius:0 0 3px 0; box-shadow:0 0 6px rgba(249,115,22,.4); }

/* two-column layout (sits above overlays via inline z-index) */
.faq2-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3.5rem;
  align-items: start;
  padding: 2.5rem;
}
.faq2-left { position: sticky; top: 90px; }
.faq2-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900; color: #fff;
  line-height: 1.15; margin-bottom: .85rem;
}
.faq2-accent { color: #f97316; }
.faq2-sub {
  font-size: .84rem; color: rgba(255,255,255,.42);
  line-height: 1.7; margin-bottom: 1.6rem;
}
.faq2-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: .55rem 1.2rem; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  font-size: .8rem; font-weight: 600;
  color: #fff; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.faq2-btn:hover { border-color: rgba(249,115,22,.45); background: rgba(249,115,22,.07); }
.faq2-btn-icon { width: 13px; height: 13px; }

/* always-visible list */
.faq2-list { display: flex; flex-direction: column; gap: 10px; }

.faq2-item {
  display: flex; align-items: flex-start; gap: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.02);
  padding: 1.25rem 1.35rem;
  transition: border-color .2s, background .2s;
}
.faq2-item:hover {
  border-color: rgba(249,115,22,.25);
  background: rgba(249,115,22,.03);
}
.faq2-num {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; color: #fff;
  margin-top: 2px;
}
.faq2-content { flex: 1; }
.faq2-q {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: .95rem; font-weight: 700;
  color: #fff; margin-bottom: .5rem;
}
.faq2-a {
  font-size: .83rem; color: #9ca3af;
  line-height: 1.75; margin-bottom: .35rem;
}
.faq2-a:last-child { margin-bottom: 0; }
.faq2-a strong { color: rgba(255,255,255,.8); }

@media (max-width: 860px) {
  .faq2-layout { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem; }
  .faq2-left { position: static; }
}

.faq2-card:hover .yt-gradient-overlay { opacity: .9; }
.faq2-card:hover .yt-inner-grid { opacity: .07; }

/* ── Checkout / cart (FAQ-style card) ───────────────────── */
.nav-cart-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}
.nav-cart-pill::before { display: none; }
.nav-cart-pill:hover {
  border-color: rgba(249,115,22,.45);
  box-shadow: 0 0 24px rgba(249,115,22,.22);
  filter: brightness(1.06);
}
.nav-cart-pill[aria-current="page"] {
  border-color: rgba(249,115,22,.55);
  background: rgba(249,115,22,.12);
}

.checkout-pdp .checkout-sub {
  text-align: center;
  max-width: 520px;
  margin: -0.35rem auto 2rem;
  font-size: .88rem;
  color: rgba(255,255,255,.48);
  line-height: 1.65;
}

/* PDP shell + FAQ-style overlays inside one card */
.checkout-shell {
  position: relative;
  overflow: hidden;
  transition: border-color .35s, box-shadow .35s;
}
.checkout-shell:hover {
  border-color: rgba(249,115,22,.28);
  box-shadow:
    0 28px 80px rgba(0,0,0,.55),
    0 0 48px rgba(249,115,22,.1);
}
.checkout-shell-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}
.checkout-shell .checkout-yt { border-radius: inherit; }
.checkout-shell:hover .yt-gradient-overlay { opacity: .9; }
.checkout-shell:hover .yt-inner-grid { opacity: .07; }
.checkout-shell-body {
  position: relative;
  z-index: 10;
}
.checkout-shell .checkout-corner { z-index: 5; }

.checkout-trust {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.checkout-trust li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.42);
  line-height: 1.4;
}
.checkout-trust li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #f97316;
  opacity: .85;
}

.checkout-aside-btn svg { width: 13px; height: 13px; }

.checkout-cart-main { min-width: 0; }

.checkout-cart-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.02);
  padding: 1rem 1.15rem;
  transition: border-color .22s, background .22s, box-shadow .22s, transform .2s;
}
.cart-line:hover {
  border-color: rgba(249,115,22,.28);
  background: rgba(249,115,22,.04);
  box-shadow: 0 0 28px rgba(249,115,22,.08);
  transform: translateY(-1px);
}

.cart-line-thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.35);
  flex-shrink: 0;
}

.cart-line-mid { flex: 1; min-width: 140px; }

.cart-line-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .25rem;
}

.cart-line-meta {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin: 0 0 .35rem;
}

.cart-line-unit {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  margin: 0;
}

.cart-line-side {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .55rem;
}

.cart-line-total {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fdba74;
}

.cart-qty.pdp-qty .pdp-qty-btn { width: 34px; height: 34px; font-size: 1rem; }
.cart-qty.pdp-qty .cart-qty-val {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 34px;
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
}

.cart-remove {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .4rem .7rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s, transform .15s;
}
.cart-remove svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: .85;
}
.cart-remove:hover {
  color: #fecaca;
  border-color: rgba(248,113,113,.35);
  background: rgba(248,113,113,.07);
  transform: translateY(-1px);
}

.checkout-cart-summary {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,.1);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .5rem;
}

.cart-summary-row--total {
  margin-top: .85rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255,255,255,.12);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.cart-summary-row--total span:last-child {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: #fdba74;
  font-size: 1.2rem;
}

.checkout-proxy-banner {
  max-width: 720px;
  margin: 0 auto 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(248, 113, 113, 0.45);
  background: rgba(127, 29, 29, 0.35);
  color: rgba(254, 226, 226, 0.95);
  font-size: 0.86rem;
  line-height: 1.55;
  text-align: left;
}

.checkout-thanks-banner {
  max-width: 720px;
  margin: 0 auto 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  background: rgba(249, 115, 22, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: center;
}

.cart-email-block {
  margin-top: 1.15rem;
  text-align: left;
}
.cart-email-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.45rem;
}
.cart-email-input {
  width: 100%;
  max-width: 420px;
  padding: 0.75rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cart-email-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.cart-email-input:focus {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.cart-pay-error {
  margin: 0.65rem 0 0;
  font-size: 0.84rem;
  color: #fecaca;
  line-height: 1.45;
  min-height: 0;
}
.cart-pay-hint {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.55;
  max-width: 520px;
}
.cart-pay-hint a {
  color: rgba(253, 186, 116, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cart-pay-code {
  font-size: 0.76em;
  padding: 0.12em 0.35em;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}

.cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.35rem;
  align-items: center;
}
.cart-actions .btn-primary {
  flex: 1;
  min-width: 200px;
  justify-content: center;
}
.cart-actions .cart-btn-clear {
  transition: transform .18s, border-color .2s, background .2s;
}
.cart-actions .cart-btn-clear:hover {
  transform: translateY(-2px);
}

.cart-empty {
  text-align: center;
  padding: 2.75rem 1.5rem;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
}
.cart-empty .cart-empty-icon {
  width: 52px;
  height: 52px;
  color: rgba(249,115,22,.45);
  margin: 0 auto 1rem;
}
.cart-empty h3 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .5rem;
}
.cart-empty p {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  margin: 0 0 1.35rem;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.cart-empty .btn-primary {
  justify-content: center;
}

@media (max-width: 640px) {
  .cart-line-side {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-left: 0;
  }
}

/* ── Element 1 ──────────────────────────────────────────── */
.element-1 {
  position: relative;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
/* extra bottom space on category pages so cards overlap cleanly */
.pcat-e1-spacer { padding-bottom: 100px; }

/* background image layer */
.e1-img {
  position: absolute; inset: 0;
  background: url('assets/sniper-bg.png') center 20% / cover no-repeat;
  transform: scale(1.04);
  animation: e1BgDrift 18s ease-in-out infinite alternate;
}
@keyframes e1BgDrift {
  from { transform: scale(1.04) translateY(0); }
  to   { transform: scale(1.06) translateY(-12px); }
}

/* warm orange overlay + dotted pattern */
.e1-overlay {
  position: absolute; inset: 0;
  background:
    /* subtle dotted grid */
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.11) 1px, transparent 0),
    /* orange glow blooming from the center — brand warmth */
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(249,115,22,.35) 0%, rgba(249,115,22,.0) 70%),
    /* bottom-to-top orange fade — strong at base for card overlap, still orange up top */
    linear-gradient(to top,
      rgba(12,5,0,1)    0%,
      rgba(35,14,2,.95) 22%,
      rgba(65,27,5,.8)  45%,
      rgba(80,35,8,.6)  70%,
      rgba(90,40,10,.45) 100%
    ),
    /* edge vignette for focus */
    radial-gradient(ellipse 95% 80% at 50% 45%, rgba(0,0,0,0) 0%, rgba(0,0,0,.45) 100%);
  background-size: 22px 22px, auto, auto, auto;
  z-index: 1;
}

/* star canvas */
.e1-stars {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* content */
.e1-content {
  position: relative; z-index: 3;
  padding: 5rem 2rem;
  max-width: 700px;
}

.e1-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: e1FadeUp .7s ease forwards .1s;
}

.e1-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: e1FadeUp .8s ease forwards .25s;
}

.e1-accent {
  display: inline;
  background: linear-gradient(
    110deg,
    #f5a623               0%,
    #f5a623               28%,
    rgba(255,255,255,.96) 44%,
    #ffffff               50%,
    rgba(255,255,255,.96) 56%,
    #f5a623               72%,
    #f5a623               100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineScroll 4.8s linear infinite;
}

.e1-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.38);
  margin-bottom: 2.25rem;
  line-height: 1.65;
  opacity: 0;
  animation: e1FadeUp .7s ease forwards .4s;
}

.e1-btn {
  opacity: 0;
  animation: e1FadeUp .7s ease forwards .55s;
}

.element-1--home {
  min-height: 860px;
  align-items: flex-start;
}

.element-1--home .e1-content {
  max-width: 1120px;
  width: min(1120px, calc(100vw - 2.5rem));
  padding-top: clamp(5.75rem, 10vw, 7.75rem);
  padding-bottom: clamp(3rem, 6vw, 4.25rem);
}

.element-1--home .e1-title {
  font-size: clamp(2.2rem, 5.2vw, 4.05rem);
}

.element-1--home .e1-sub {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.element-1--home .e1-btn {
  position: relative;
  z-index: 7;
  margin-bottom: -30px;
  border-radius: 999px;
  padding: .95rem 2.1rem;
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.42),
    0 0 0 3px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.e1-home-video {
  position: relative;
  z-index: 5;
  margin: 0 auto 0;
  width: min(1120px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(to bottom, rgba(249, 115, 22, 0.15), rgba(7, 9, 12, 0.82) 38%),
    rgba(7, 9, 12, 0.75);
  box-shadow:
    0 34px 72px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(0, 0, 0, 0.32) inset,
    0 0 34px rgba(249, 115, 22, 0.18);
  overflow: hidden;
  opacity: 0;
  animation: e1FadeUp .9s ease forwards .68s;
}

.e1-home-video-frame {
  position: relative;
  width: calc(100% - 2rem);
  margin: 1rem;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #07090c;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.e1-home-video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

.e1-home-video-coming {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  padding: .45rem .9rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(14, 11, 8, 0.65);
  border: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
  .element-1--home {
    min-height: 760px;
  }

  .element-1--home .e1-content {
    width: calc(100vw - 1.5rem);
    padding-top: 5.25rem;
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .e1-home-video {
    width: min(1120px, 100%);
    border-radius: 14px;
  }

  .element-1--home .e1-btn {
    margin-bottom: -20px;
    padding: .85rem 1.55rem;
  }

  .e1-home-video-frame {
    width: calc(100% - 1.1rem);
    margin: .55rem;
    border-radius: 12px;
  }
}

@keyframes e1FadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Features Strip ─────────────────────────────────────── */
.features-strip {
  background: rgba(0,0,0,.55);
  border-top: 1px solid rgba(249,115,22,.08);
  border-bottom: 1px solid rgba(249,115,22,.08);
  padding: 3rem 2rem;
  backdrop-filter: blur(4px);
}
.strip-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 1.75rem 1.5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(249,115,22,.1);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  border-color: rgba(192,125,16,.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.fc-icon {
  width: 50px; height: 50px;
  background: rgba(192,125,16,.1);
  border: 1px solid rgba(192,125,16,.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  margin-bottom: 1rem;
}
.fc-icon i { width: 22px; height: 22px; }
.fc-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.feature-card p { font-size: .83rem; color: var(--muted); line-height: 1.6; }

/* ── Section shared ─────────────────────────────────────── */
.section-header {
  text-align: center; margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: .75rem;
}
.section-header h2 { font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; margin-bottom: .75rem; }
.section-sub { color: var(--muted); font-size: .92rem; }
.accent { color: var(--blue-light); }

/* ── Catalog ────────────────────────────────────────────── */
.catalog {
  padding: 3.5rem 2rem 6rem;
  max-width: 1280px; margin: 0 auto;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.product-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(249,115,22,.12);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  border-color: rgba(192,125,16,.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.product-img-wrap {
  position: relative; height: 200px; overflow: hidden;
  background: var(--bg3);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.placeholder-icon { width: 44px; height: 44px; color: rgba(59,141,232,.5); }
.product-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--blue);
  color: #fff; font-size: .65rem; font-weight: 800;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: .08em;
}
.new-badge  { background: #16a34a; }
.sale-badge { background: #dc2626; }

.product-body { padding: 1.25rem; }
.product-game {
  font-size: .72rem; font-weight: 700;
  color: var(--blue-light); letter-spacing: .08em;
  text-transform: uppercase; display: block;
  margin-bottom: .4rem;
}
.product-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.product-body p  { font-size: .82rem; color: var(--muted); line-height: 1.55; margin-bottom: 1rem; }
.product-footer  { display: flex; align-items: center; justify-content: space-between; }
.product-price   { font-size: 1.2rem; font-weight: 800; color: #fff; }
.product-price small { font-size: .75rem; color: var(--muted); font-weight: 500; }

.catalog-cta { text-align: center; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 6rem 2rem;
}
.testi-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color var(--transition), transform var(--transition);
}
.testi-card:hover { border-color: rgba(192,125,16,.35); transform: translateY(-4px); }
.testi-stars { color: #f59e0b; font-size: 1rem; margin-bottom: .75rem; }
.testi-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
  width: 38px; height: 38px;
  background: rgba(192,125,16,.2);
  border: 1.5px solid rgba(192,125,16,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: var(--blue-light);
}
.testi-author span { font-size: .85rem; font-weight: 600; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-section {
  padding: 6rem 2rem;
  max-width: 800px; margin: 0 auto;
}
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: rgba(192,125,16,.4); }

.faq-item summary {
  padding: 1.1rem 1.5rem;
  font-weight: 600; font-size: .95rem;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem; font-weight: 300;
  color: var(--blue-light);
  transition: transform .3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--blue-light); }
.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: .88rem; color: var(--muted); line-height: 1.7;
}

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: rgba(0,0,0,.6);
  border-top: 1px solid rgba(249,115,22,.1);
  border-bottom: 1px solid rgba(249,115,22,.1);
  padding: 6rem 2rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before { display: none; }
.cta-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 900; margin-bottom: 1rem; }
.cta-inner p { color: var(--muted); font-size: .95rem; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  position: relative;
  padding: 7rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(245,166,35,.14), transparent 65%);
}
.page-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(245,166,35,.1), transparent 60%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.page-hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,166,35,.1);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: #f5a623;
  margin-bottom: 1.2rem;
}
.page-hero-pill-icon { width: 13px; height: 13px; }
.page-hero-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -.02em; line-height: 1;
  margin-bottom: 1rem;
}
.page-hero-line1 {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  background: linear-gradient(to bottom, #fff, #9ca3af);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero-line2 {
  display: block;
  font-size: clamp(2rem, 4vw, 3.2rem);
  background: linear-gradient(to bottom, #fbbf24, #f5a623, #c07a10);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero-sub {
  font-size: .9rem; color: rgba(255,255,255,.5);
  line-height: 1.65; max-width: 480px; margin: 0 auto;
}

/* ── Showcase product grid ──────────────────────────────── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 0;
}

/* card */
.showcase-card {
  display: flex; flex-direction: column;
  border-radius: 20px;
  border: 1px solid rgba(249,115,22,.3);
  background: rgba(255,255,255,.028);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 0 1px rgba(249,115,22,.05), 0 24px 48px rgba(0,0,0,.7);
  overflow: hidden;
  text-decoration: none; color: inherit;
  transition: border-color .4s, box-shadow .4s, transform .4s;
  position: relative;
}
.showcase-card:hover {
  border-color: rgba(245,166,35,.6);
  box-shadow: 0 0 40px rgba(245,166,35,.18), 0 24px 48px rgba(0,0,0,.9);
  transform: translateY(-4px);
}
.showcase-card--featured {
  transform: scale(1.04) translateY(-16px);
  border-color: rgba(245,166,35,.55);
  box-shadow: 0 0 0 2px rgba(245,166,35,.35), 0 0 40px rgba(245,166,35,.18), 0 24px 48px rgba(0,0,0,.9);
  z-index: 2;
}
.showcase-card--featured:hover { transform: scale(1.06) translateY(-20px); }

/* image area */
.sc-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.sc-img-wrap img, .sc-img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  transition: transform .6s ease-out;
}
.showcase-card:hover .sc-img-wrap img,
.showcase-card:hover .sc-img-placeholder { transform: scale(1.05); }
.sc-placeholder-icon { width: 48px; height: 48px; color: rgba(255,255,255,.15); }
.sc-overlay-top { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.5), rgba(0,0,0,.2)); }
.sc-overlay-bot { position: absolute; inset: 0; background: linear-gradient(to top, #070707, transparent 60%); }

/* animated orange sheen */
.sc-sheen {
  position: absolute; inset: 0; z-index: 2; mix-blend-mode: overlay; opacity: .8;
  background: linear-gradient(118deg, transparent 0%, rgba(245,166,35,0) 35%, rgba(245,166,35,.18) 48%, rgba(251,146,60,.28) 52%, rgba(245,166,35,0) 65%, transparent 100%);
  background-size: 240% 240%;
  animation: scSheen 5.5s ease-in-out infinite;
}
@keyframes scSheen {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* pulsing top vignette */
.sc-vignette {
  position: absolute; inset: 0; z-index: 1; mix-blend-mode: screen; opacity: .9;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(245,166,35,.14), transparent 55%);
  animation: scVignette 3.2s ease-in-out infinite;
}
@keyframes scVignette {
  0%,100% { opacity: .22; }
  50%      { opacity: .42; }
}

/* orange grid texture */
.sc-og-grid {
  position: absolute; inset: 0; z-index: 1; opacity: .035;
  background-image:
    linear-gradient(rgba(245,166,35,.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,.5) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* corner brackets */
.sc-corners { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.sc-c {
  position: absolute; width: 10px; height: 10px;
  border-color: rgba(245,166,35,.55); border-style: solid;
  box-shadow: 0 0 6px rgba(245,166,35,.4);
}
.sc-c-tl { top: 8px; left: 8px; border-width: 1.5px 0 0 1.5px; border-radius: 2px 0 0 0; }
.sc-c-tr { top: 8px; right: 8px; border-width: 1.5px 1.5px 0 0; border-radius: 0 2px 0 0; }
.sc-c-bl { bottom: 8px; left: 8px; border-width: 0 0 1.5px 1.5px; border-radius: 0 0 0 2px; }
.sc-c-br { bottom: 8px; right: 8px; border-width: 0 1.5px 1.5px 0; border-radius: 0 0 2px 0; }

/* card body */
.sc-body {
  display: flex; flex-direction: column;
  padding: 1.25rem 1.4rem 1.4rem;
  flex: 1;
  position: relative;
}
.sc-top { margin-bottom: .75rem; }
.sc-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.35rem; font-weight: 800;
  color: #fff; line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: .35rem;
  drop-shadow: 0 2px 12px rgba(0,0,0,.9);
}
.sc-sub { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.45; }

.sc-price-block { margin-bottom: .85rem; }
.sc-price-label { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 2px; }
.sc-price { font-size: 1.6rem; font-weight: 900; color: #fff; letter-spacing: -.02em; line-height: 1; }

.sc-tags { display: flex; flex-direction: column; gap: 6px; margin-bottom: auto; padding-bottom: .85rem; }
.sc-tag {
  display: inline-flex; align-items: center; gap: 6px;
  width: fit-content;
  background: rgba(0,0,0,.6); border: 1px solid rgba(245,166,35,.55);
  border-radius: 100px; padding: 4px 10px;
  font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: #fff;
  box-shadow: 0 0 20px rgba(245,166,35,.12);
  backdrop-filter: blur(6px);
}
.sc-tag svg { width: 11px; height: 11px; color: #f5a623; flex-shrink: 0; }
.sc-tag--offline { border-color: rgba(239,68,68,.4); box-shadow: 0 0 16px rgba(239,68,68,.1); }
.sc-tag--offline svg { color: #f87171; }

/* watermark text */
.sc-wm {
  position: absolute; bottom: 72px; left: 50%; transform: translateX(-50%);
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900; letter-spacing: -.04em;
  color: rgba(255,255,255,.045);
  pointer-events: none; white-space: nowrap; text-transform: uppercase;
}

/* CTA button */
.sc-cta {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 100px;
  padding: 14px 20px;
  overflow: hidden;
  background: linear-gradient(to bottom, #292929, #c07a10, #7c4c08);
  border: 1px solid rgba(245,166,35,.55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 6px 24px rgba(0,0,0,.55);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  margin-top: .75rem;
}
.showcase-card:hover .sc-cta {
  transform: scale(1.03);
  border-color: rgba(245,166,35,.75);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 0 32px rgba(245,166,35,.42), 0 8px 28px rgba(0,0,0,.5);
}
.sc-cta-gloss {
  position: absolute; top: 0; bottom: 0; left: 0; width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07) 45%, rgba(255,255,255,.22) 50%, rgba(255,255,255,.07) 55%, transparent);
  animation: scGloss 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scGloss {
  0%   { transform: translateX(-120%) skewX(-18deg); }
  55%, 100% { transform: translateX(220%) skewX(-18deg); }
}
.sc-cta-label {
  font-size: .65rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .1em;
  color: #fafafa; position: relative; z-index: 1;
  text-shadow: 0.45px 0 0 rgba(255,90,90,.42), -0.45px 0 0 rgba(100,210,255,.4), 0 1px 14px rgba(0,0,0,.65);
}
.sc-cta-arrow {
  width: 15px; height: 15px; color: #fff; position: relative; z-index: 1; flex-shrink: 0;
  transition: transform .3s;
}
.showcase-card:hover .sc-cta-arrow { transform: translateX(4px) scale(1.1); }

@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-card--featured { transform: none; }
}
@media (max-width: 600px) {
  .showcase-grid { grid-template-columns: 1fr; }
}

/* ── Apex category — glass frame with atmospheric overlays ── */
.apex-list {
  position: relative;
  z-index: 10;
  margin-top: -70px;
  padding: 0 1.5rem 5rem;
  overflow: visible;
}

/* section-level orange bloom */
.apex-frame-glow {
  position: absolute;
  top: 20%; right: -8%;
  width: 60vw; max-width: 560px;
  height: 60vw; max-height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(249,115,22,.12) 0%,
    rgba(194,65,12,.05) 45%,
    transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* card grid — compact Arctic-style, left-aligned LTR, straddles the hero boundary */
.apex-list-inner {
  position: relative;
  z-index: 10;
  max-width: 760px;
  margin: 0 auto 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  justify-content: start;
}
/* R6 page: three products in one row on wide screens */
.apex-list-inner--three {
  max-width: 1140px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
/* R6 page: three builds + Help me choose */
.apex-list-inner--four {
  max-width: 1320px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 1200px) {
  .apex-list-inner--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .apex-list-inner--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }
}

.apex-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  background: #141414;
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.apex-card:hover {
  border-color: rgba(255,255,255,.12);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}

/* top GFX panel — shows the retail-style box art in full */
.apex-card-gfx {
  position: relative;
  aspect-ratio: 1024 / 571;
  overflow: hidden;
  background: #0a0a0a;
}
/* Apex hero art (640×347) — native aspect so the bitmap fits the panel exactly */
.apex-card-gfx--octane {
  aspect-ratio: 640 / 347;
}
.apex-card-gfx-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.apex-card:hover .apex-card-gfx-img { transform: scale(1.03); }

/* “Help me choose” card — quiz entry in the product grid */
.apex-card--choose {
  border-color: rgba(249, 115, 22, 0.22);
}
.apex-card--choose:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45), 0 0 28px rgba(249, 115, 22, 0.12);
}
.apex-card-hero--static {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: default;
}
.apex-card-gfx--choose {
  background:
    radial-gradient(ellipse 80% 70% at 50% 20%, rgba(249, 115, 22, 0.22), transparent 55%),
    linear-gradient(165deg, #1a1410 0%, #0d0e12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.apex-card-choose-visual {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  text-align: center;
}
.apex-card-choose-visual i,
.apex-card-choose-visual svg {
  width: 48px;
  height: 48px;
  color: #f5a623;
  filter: drop-shadow(0 4px 18px rgba(249, 115, 22, 0.35));
}
.apex-card-choose-caption {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(253, 230, 200, 0.9);
  letter-spacing: 0.02em;
  max-width: 12rem;
  line-height: 1.25;
}
.apex-card--choose:hover .apex-card-choose-visual i,
.apex-card--choose:hover .apex-card-choose-visual svg {
  transform: scale(1.06);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.apex-card-price-value--guide {
  background: rgba(249, 115, 22, 0.14) !important;
  border: 1px solid rgba(249, 115, 22, 0.35) !important;
  color: #fdba74 !important;
}
.apex-card-status--guide {
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.32);
  color: #fdba74;
}

/* top-left badge — white pill on the artwork (MOST POPULAR / SAFEST) */
.apex-card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,.12);
  color: #0a0a0a;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(0,0,0,.35);
}

.apex-card-body {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: .95rem .95rem 1rem;
  min-width: 0;
}
.apex-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-width: 0;
}
.apex-card-name {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -.01em;
  line-height: 1;
  min-width: 0;
}
.apex-card-price {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.apex-card-price-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  line-height: 1;
}
.apex-card-price-value {
  padding: 5px 9px;
  border-radius: 7px;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  color: #4ade80;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: -.005em;
  line-height: 1;
}

/* UNDETECTED pill — green filled with shield icon */
.apex-card-status {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  padding: .42rem .75rem .42rem .65rem;
  border-radius: 999px;
  background: rgba(34,197,94,.18);
  border: 1px solid rgba(34,197,94,.38);
  color: #4ade80;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  line-height: 1;
}
.apex-card-status i,
.apex-card-status svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
  flex-shrink: 0;
}
.apex-card-status--down {
  background: rgba(239, 68, 68, 0.16);
  border: 1px solid rgba(239, 68, 68, 0.44);
  color: #fca5a5;
}

/* animated gradient text effect — used on "Build" and product titles */
.apex-gradient-text {
  background-image: linear-gradient(
    90deg,
    #fb923c 0%,
    #fdba74 20%,
    #f97316 40%,
    #ffedd5 55%,
    #f97316 70%,
    #fdba74 85%,
    #fb923c 100%
  );
  background-size: 220% auto;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  animation: apex-gradient-shift 6s ease-in-out infinite;
  will-change: background-position;
}
@keyframes apex-gradient-shift {
  0%   { background-position:   0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position:   0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .apex-gradient-text { animation: none; background-position: 50% 50%; }
}

/* Buy button — dark filled pill with shopping bag icon (Arctic Cheats style) */
.apex-card-buy {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: .7rem 1rem;
  border-radius: 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: #fafafa;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  transition: background .2s ease-out, border-color .2s, transform .2s, box-shadow .25s;
}
button.apex-card-buy {
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.apex-card-buy span { position: relative; z-index: 1; }
.apex-card-buy-icon {
  position: relative;
  z-index: 1;
  width: 15px; height: 15px; flex-shrink: 0;
  transition: transform .25s ease-out;
}
.apex-card:hover .apex-card-buy {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 6px 18px rgba(0,0,0,.45);
}
.apex-card:hover .apex-card-buy-icon { transform: translateY(-1px) rotate(-4deg); }
.apex-card-buy:active { transform: scale(.98); }
.apex-card-buy--down {
  background: linear-gradient(to bottom, rgba(127, 29, 29, 0.22), rgba(69, 10, 10, 0.32));
  border-color: rgba(239, 68, 68, 0.48);
  color: #fecaca;
  cursor: not-allowed;
  pointer-events: none;
}
.apex-card-buy--down .apex-card-buy-icon { transform: none !important; }
.apex-card:hover .apex-card-buy--down {
  background: linear-gradient(to bottom, rgba(127, 29, 29, 0.22), rgba(69, 10, 10, 0.32));
  border-color: rgba(239, 68, 68, 0.48);
  box-shadow: none;
}

@media (max-width: 720px) {
  .apex-list-inner {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0;
    gap: 18px;
  }
  .apex-list-inner--three {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .apex-list-inner--four {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .apex-list { margin-top: -30px; padding: 0 1.25rem 3.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   APEX — supporting sections (features, how it works, cta)
   ═══════════════════════════════════════════════════════════ */

/* ─── PROOF-FIRST TESTIMONIALS ─────────────────────────── */
.apex-proof {
  position: relative;
  padding: 1.4rem 1.5rem 3.8rem;
  overflow: hidden;
}

.apex-proof-glow {
  position: absolute;
  right: -8%;
  top: 20%;
  width: 50vw;
  max-width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, rgba(194,65,12,.04) 48%, transparent 72%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.apex-proof-head {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto 1.8rem;
  text-align: center;
}

.apex-proof-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: rgba(249,115,22,.08);
  border: 1px solid rgba(249,115,22,.2);
  color: #fdba74;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0;
}

.apex-proof-title {
  margin-top: .8rem;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3.6vw, 2.35rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.05;
}

.apex-proof-accent { color: #f97316; }

.apex-proof-sub {
  margin-top: .65rem;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  line-height: 1.7;
}

.apex-proof-grid {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.apex-proof-card {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(249,115,22,.08), rgba(14,14,16,.92) 50%),
    #0f0f11;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  padding: 1.1rem 1rem 1rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}

.apex-proof-card:hover {
  border-color: rgba(249,115,22,.34);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,.42), 0 0 26px rgba(249,115,22,.1);
}

.apex-proof-stars {
  color: #f59e0b;
  letter-spacing: .14em;
  font-size: .78rem;
  margin-bottom: .72rem;
}

.apex-proof-quote {
  color: rgba(241,245,249,.86);
  font-size: .82rem;
  line-height: 1.62;
  margin: 0 0 .85rem;
}

.apex-proof-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .36rem;
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}

.apex-proof-user {
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

.apex-proof-build {
  color: #fdba74;
  font-weight: 700;
}

.apex-proof-sep { opacity: .55; }

@media (max-width: 1024px) {
  .apex-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .apex-proof {
    padding: .75rem 1.25rem 3rem;
  }

  .apex-proof-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 420px;
  }
}

/* ─── RAINBOW ADVISOR + DID YOU KNOW ───────────────────── */
.apex-advisor {
  position: relative;
  padding: .6rem 1.5rem 3.4rem;
  overflow: hidden;
}

.apex-advisor-glow {
  position: absolute;
  left: -8%;
  top: 15%;
  width: 48vw;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,.12) 0%, rgba(194,65,12,.04) 46%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.apex-advisor-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 1.4rem;
  text-align: center;
}

.apex-advisor-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: rgba(249,115,22,.08);
  border: 1px solid rgba(249,115,22,.2);
  color: #fdba74;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.apex-advisor-title {
  margin-top: .8rem;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.07;
  color: #fff;
}

.apex-advisor-accent { color: #f97316; }

.apex-advisor-sub {
  margin-top: .64rem;
  font-size: .9rem;
  color: rgba(255,255,255,.57);
}

.apex-advisor-card {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(145deg, rgba(249,115,22,.08), rgba(12,12,14,.95) 52%), #0f0f11;
  box-shadow: 0 14px 36px rgba(0,0,0,.4);
  padding: 1.15rem;
}

.apex-advisor-card--launch {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 1.35rem 1.2rem 1.5rem;
}

.apex-advisor-launch-icon {
  font-size: 2.7rem;
  line-height: 1;
  margin-bottom: .5rem;
}

.apex-advisor-launch-text {
  margin: 0 0 .9rem;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  color: rgba(240,244,251,.92);
  letter-spacing: -.015em;
}

.apex-advisor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.apex-advisor-field {
  display: grid;
  gap: .4rem;
}

.apex-advisor-field span {
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.62);
  font-weight: 700;
}

.apex-advisor-field select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.03);
  color: #f8fafc;
  padding: .65rem .7rem;
  font-size: .82rem;
  outline: none;
}

.apex-advisor-field select:focus {
  border-color: rgba(249,115,22,.46);
  box-shadow: 0 0 0 2px rgba(249,115,22,.18);
}

.apex-advisor-actions {
  margin-top: .9rem;
}

.apex-advisor-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(249,115,22,.45);
  background: linear-gradient(135deg, #f5a623 0%, #c07d10 100%);
  color: #fff;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 0 1rem;
  cursor: pointer;
}

.apex-advisor-btn i,
.apex-advisor-btn svg {
  width: 14px;
  height: 14px;
}

.apex-advisor-card--launch .apex-advisor-btn {
  height: 54px;
  min-width: 260px;
  justify-content: center;
  border-radius: 14px;
  font-size: .95rem;
  letter-spacing: .02em;
  text-transform: none;
}

.apex-advisor-result {
  margin-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.09);
  padding-top: .85rem;
}

.apex-advisor-result-kicker {
  margin: 0;
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(253,186,116,.95);
  font-weight: 800;
}

.apex-advisor-result-title {
  margin: .28rem 0 0;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.1;
  color: #fff;
}

.apex-advisor-result-text {
  margin: .4rem 0 .7rem;
  color: rgba(248,250,252,.82);
  font-size: .84rem;
  line-height: 1.58;
}

.apex-advisor-result-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fdba74;
}

.apex-advisor-result-link i,
.apex-advisor-result-link svg {
  width: 13px;
  height: 13px;
}

.apex-quiz-modal[hidden] { display: none; }

.apex-quiz-modal {
  position: fixed;
  inset: 0;
  z-index: 1600;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.apex-quiz-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,7,6,.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.apex-quiz-panel {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100vw - 20px));
  max-height: calc(100vh - 24px);
  overflow: auto;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(100% 80% at 50% -10%, rgba(249,115,22,.18), transparent 52%),
    linear-gradient(165deg, rgba(249,115,22,.06), rgba(12,12,14,.98) 42%),
    #0f0f11;
  box-shadow:
    0 28px 70px rgba(0,0,0,.55),
    0 0 0 1px rgba(249,115,22,.12),
    0 0 40px rgba(249,115,22,.1);
  padding: 1.35rem 1.25rem 1.25rem;
}

.apex-quiz-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: .45;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

.apex-quiz-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  color: rgba(253,230,200,.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}

.apex-quiz-close:hover {
  border-color: rgba(249,115,22,.45);
  background: rgba(249,115,22,.12);
  color: #fff;
}

.apex-quiz-close i,
.apex-quiz-close svg { width: 16px; height: 16px; }

.apex-quiz-brand {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: .25rem 2.5rem .85rem;
  margin-bottom: .35rem;
}

.apex-quiz-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.22);
  color: #fdba74;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.apex-quiz-headline {
  margin: .75rem 0 0;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.45rem, 3.8vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: #fff;
}

.apex-quiz-headline .apex-quiz-accent {
  color: #f97316;
}

.apex-quiz-lead {
  margin: .55rem auto 0;
  max-width: 34rem;
  font-size: .84rem;
  line-height: 1.55;
  color: rgba(255,255,255,.55);
}

.apex-quiz-lead strong {
  color: rgba(255,255,255,.82);
  font-weight: 600;
}

.apex-quiz-flow {
  position: relative;
  z-index: 1;
}

.apex-quiz-flow[hidden] {
  display: none !important;
}

.apex-quiz-progress-wrap {
  margin: .5rem auto .75rem;
  max-width: 100%;
}

.apex-quiz-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
}

.apex-quiz-progress-fill {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ea580c 0%, #f97316 45%, #fbbf24 100%);
  box-shadow: 0 0 14px rgba(249,115,22,.45);
  transition: width .28s ease;
}

.apex-quiz-step {
  text-align: center;
  color: rgba(253,186,116,.88);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 .5rem;
}

.apex-quiz-title {
  text-align: center;
  margin: 0;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.15rem, 3.2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: #fff;
}

.apex-quiz-hint {
  margin: .55rem auto .85rem;
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.52);
  text-align: center;
  padding: .55rem .7rem;
  font-size: .8rem;
  line-height: 1.45;
}

.apex-quiz-options {
  display: grid;
  gap: .55rem;
}

.apex-quiz-option {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: .75rem;
  align-items: center;
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  padding: .78rem .75rem;
  color: rgba(248,250,252,.94);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, transform .18s, background .2s, box-shadow .2s;
}

.apex-quiz-option:hover {
  border-color: rgba(249,115,22,.42);
  background: rgba(249,115,22,.08);
  box-shadow: 0 0 0 1px rgba(249,115,22,.12);
  transform: translateY(-1px);
}

.apex-quiz-option:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}

.apex-quiz-option-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.35);
  color: #fdba74;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 800;
}

.apex-quiz-option-label {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.28;
  color: rgba(255,255,255,.9);
}

.apex-quiz-result[hidden] { display: none; }

.apex-quiz-result {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 1rem;
  padding-top: 1.1rem;
  text-align: center;
}

.apex-quiz-result-kicker {
  margin: 0;
  color: rgba(253,186,116,.95);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.apex-quiz-result-title {
  margin: .35rem 0 0;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 2rem;
  color: #fff;
}

.apex-quiz-result-text {
  margin: .45rem auto .55rem;
  max-width: 95%;
  color: rgba(244,248,252,.84);
  font-size: .95rem;
  line-height: 1.58;
}

.apex-quiz-result-note {
  margin: 0 auto .65rem;
  max-width: 95%;
  font-size: .78rem;
  line-height: 1.5;
  color: rgba(255,255,255,.48);
}

.apex-quiz-result-note[hidden] {
  display: none !important;
}

.apex-quiz-result-discount {
  margin: 0 auto .75rem;
  max-width: 95%;
  padding: .55rem .65rem;
  border-radius: 10px;
  border: 1px solid rgba(245,166,35,.35);
  background: rgba(245,166,35,.1);
  color: #fde68a;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.45;
}

.apex-quiz-result-discount[hidden] {
  display: none !important;
}

.apex-quiz-result-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  border-radius: 11px;
  padding: 0 1rem;
  background: linear-gradient(135deg, #f5a623 0%, #c07d10 100%);
  color: #fff;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
}

.apex-quiz-result-link i,
.apex-quiz-result-link svg { width: 13px; height: 13px; }

.apex-didyouknow {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100vw - 24px));
  z-index: 1400;
  border-radius: 14px;
  border: 1px solid rgba(249,115,22,.36);
  background: linear-gradient(145deg, rgba(249,115,22,.12), rgba(10,10,12,.96) 45%), #0f0f11;
  box-shadow: 0 16px 42px rgba(0,0,0,.52), 0 0 24px rgba(249,115,22,.16);
  padding: .95rem .95rem .85rem;
}

.apex-didyouknow-close {
  position: absolute;
  top: .45rem;
  right: .45rem;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.apex-didyouknow-close i,
.apex-didyouknow-close svg {
  width: 13px;
  height: 13px;
}

.apex-didyouknow-kicker {
  margin: 0;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fdba74;
}

.apex-didyouknow-text {
  margin: .42rem 0 .68rem;
  color: rgba(248,250,252,.9);
  font-size: .82rem;
  line-height: 1.56;
}

.apex-didyouknow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f59e0b;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.apex-didyouknow-link i,
.apex-didyouknow-link svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 1024px) {
  .apex-advisor-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .apex-quiz-panel {
    padding: 1.1rem .85rem 1rem;
    border-radius: 16px;
  }

  .apex-quiz-brand {
    padding-left: 0;
    padding-right: 0;
  }

  .apex-quiz-lead {
    font-size: .8rem;
  }

  .apex-quiz-result-title {
    font-size: 1.55rem;
  }

  .apex-quiz-option {
    grid-template-columns: 30px 1fr;
    padding: .68rem .62rem;
  }

  .apex-quiz-option-num {
    width: 28px;
    height: 28px;
    font-size: .75rem;
  }

  .apex-quiz-option-label {
    font-size: .88rem;
  }

  .apex-didyouknow {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }
}

/* shared eyebrow pill (used across all apex sub-sections) */
.apex-feats-eyebrow,
.apex-how-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: rgba(249,115,22,.08);
  border: 1px solid rgba(249,115,22,.2);
  color: #fdba74;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0;
}
.apex-feats-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 10px #f97316, 0 0 4px #fff;
  animation: apex-dot-breathe 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes apex-dot-breathe {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: .5;  transform: scale(.82); }
}
@media (prefers-reduced-motion: reduce) {
  .apex-feats-eyebrow-dot { animation: none; }
}

/* ─── FEATURES ────────────────────────────────────────── */
.apex-feats {
  position: relative;
  padding: 4rem 1.5rem 4.5rem;
  overflow: hidden;
}
.apex-feats-bg-glow {
  position: absolute;
  top: 0; left: -10%;
  width: 50vw; max-width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(249,115,22,.1) 0%,
    rgba(194,65,12,.04) 45%,
    transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.apex-feats-head {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.apex-feats-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3.6vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: .9rem 0 .6rem;
}
.apex-feats-accent {
  background: linear-gradient(180deg, #fdba74 0%, #f97316 55%, #c2410c 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.apex-feats-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin: 0;
}

.apex-feats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto;
}
.apex-feat {
  position: relative;
  padding: 1.4rem 1.25rem 1.35rem;
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  transition:
    transform .35s cubic-bezier(0.23, 1, 0.32, 1),
    border-color .35s ease,
    background-color .35s ease,
    box-shadow .35s ease;
}
.apex-feat:hover {
  transform: translateY(-3px);
  border-color: rgba(249,115,22,.3);
  background: rgba(249,115,22,.04);
  box-shadow: 0 16px 36px -12px rgba(249,115,22,.18);
}
.apex-feat-icon {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.22);
  color: #fdba74;
  margin-bottom: .85rem;
  transition: transform .35s cubic-bezier(0.23, 1, 0.32, 1), background-color .35s;
}
.apex-feat-icon i { width: 18px; height: 18px; stroke-width: 2.2; }
.apex-feat:hover .apex-feat-icon {
  transform: scale(1.06);
  background: rgba(249,115,22,.18);
}
.apex-feat h3 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .35rem;
  letter-spacing: -.01em;
}
.apex-feat p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  margin: 0;
}

/* ─── HOW IT WORKS ────────────────────────────────────── */
.apex-how {
  position: relative;
  padding: 3rem 1.5rem 5rem;
  overflow: hidden;
}
.apex-how::before {
  content: "";
  position: absolute;
  bottom: -20%; right: -8%;
  width: 55vw; max-width: 540px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(249,115,22,.08) 0%,
    rgba(194,65,12,.03) 45%,
    transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.apex-how-head {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.apex-how-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.75rem, 3.6vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: .9rem 0 .6rem;
}
.apex-how-accent {
  background: linear-gradient(180deg, #fdba74 0%, #f97316 55%, #c2410c 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.apex-how-sub {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin: 0;
}

.apex-how-steps {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
/* connecting dotted line behind the steps (desktop only) */
.apex-how-steps::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(249,115,22,.35) 0 4px,
    transparent 4px 10px);
  z-index: 0;
  pointer-events: none;
}
.apex-how-step {
  position: relative;
  z-index: 1;
  padding: 1.6rem 1.35rem 1.4rem;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(23,23,23,.92) 0%, rgba(15,15,15,.92) 100%);
  border: 1px solid rgba(255,255,255,.08);
  transition:
    transform .35s cubic-bezier(0.23, 1, 0.32, 1),
    border-color .35s ease,
    box-shadow .35s ease;
}
.apex-how-step:hover {
  transform: translateY(-3px);
  border-color: rgba(249,115,22,.3);
  box-shadow: 0 18px 40px -14px rgba(249,115,22,.22);
}
.apex-how-step-num {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  color: rgba(253,186,116,.7);
  margin-bottom: .75rem;
}
.apex-how-step-icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(249,115,22,.14) 0%, rgba(194,65,12,.08) 100%);
  border: 1px solid rgba(249,115,22,.25);
  color: #fdba74;
  margin-bottom: .9rem;
  box-shadow: 0 6px 20px -6px rgba(249,115,22,.3);
}
.apex-how-step-icon i { width: 20px; height: 20px; stroke-width: 2.2; }
.apex-how-step h3 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .4rem;
  letter-spacing: -.01em;
}
.apex-how-step p {
  font-size: .84rem;
  color: rgba(255,255,255,.58);
  line-height: 1.55;
  margin: 0;
}

/* ─── FINAL CTA ───────────────────────────────────────── */
.apex-cta {
  padding: 1rem 1.5rem 5rem;
}
.apex-cta-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(249,115,22,.1) 0%, transparent 65%),
    linear-gradient(180deg, #141414 0%, #0b0b0b 100%);
  border: 1px solid rgba(249,115,22,.18);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.6);
}
.apex-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; aspect-ratio: 2;
  background: radial-gradient(ellipse at center,
    rgba(249,115,22,.25) 0%,
    rgba(249,115,22,.08) 35%,
    transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.apex-cta-title {
  position: relative;
  z-index: 1;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 0 0 .65rem;
}
.apex-cta-accent {
  background: linear-gradient(180deg, #fdba74 0%, #f97316 55%, #c2410c 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.apex-cta-sub {
  position: relative;
  z-index: 1;
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  margin: 0 0 1.6rem;
}
.apex-cta-actions {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.apex-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform .2s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow .3s ease,
    border-color .3s ease,
    background-color .3s ease;
}
.apex-cta-btn i, .apex-cta-btn svg {
  width: 15px; height: 15px;
  flex-shrink: 0;
  transition: transform .25s ease;
}
.apex-cta-btn:hover i, .apex-cta-btn:hover svg { transform: translateX(2px); }
.apex-cta-btn:active { transform: scale(.97); }

.apex-cta-btn--primary {
  background: linear-gradient(180deg, #171717 0%, #ea580c 55%, #b45309 100%);
  border: 1px solid rgba(251,146,60,.55);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 8px 24px -6px rgba(249,115,22,.5);
}
.apex-cta-btn--primary:hover {
  border-color: rgba(253,186,116,.85);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.22),
    0 12px 32px -6px rgba(249,115,22,.65);
}

.apex-cta-btn--ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  color: #e5e5e5;
}
.apex-cta-btn--ghost:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.2);
  color: #fff;
}

/* ─── responsive (supporting sections) ───────────────── */
@media (max-width: 900px) {
  .apex-feats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .apex-how-steps { grid-template-columns: 1fr; max-width: 460px; }
  .apex-how-steps::before { display: none; }
}
@media (max-width: 560px) {
  .apex-feats { padding: 3rem 1rem 3.5rem; }
  .apex-feats-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .apex-how { padding: 2rem 1rem 4rem; }
  .apex-cta { padding: 0 1rem 4rem; }
  .apex-cta-inner { padding: 2.25rem 1.25rem; }
  .apex-cta-actions { flex-direction: column; width: 100%; }
  .apex-cta-btn { width: 100%; justify-content: center; }
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: rgba(0,0,0,.75);
  border-top: 1px solid rgba(249,115,22,.08);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 4rem; margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: .85rem; max-width: 260px; line-height: 1.6; }

.footer-links {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
}
.fl-col h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; color: var(--text); }
.fl-col a { display: block; font-size: .85rem; color: var(--muted); margin-bottom: .6rem; transition: color var(--transition); }
.fl-col a:hover { color: var(--blue-light); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: var(--muted); }

/* ── Animations ─────────────────────────────────────────── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .7s ease forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(60px);
  animation: slideRight .9s cubic-bezier(.2,.8,.4,1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes slideRight {
  to { opacity: 1; transform: translateX(0); }
}

/* scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .strip-inner { grid-template-columns: repeat(2,1fr); }
  .catalog-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions:not(.nav-actions--cb-cluster) {
    display: none;
  }
  .nav-actions--cb-cluster {
    display: flex;
    margin-left: auto;
  }
  .nav-right-cluster > .btn-nav-dashboard {
    padding: 0 0.55rem;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
  }
  .hamburger {
    display: flex;
    margin-left: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 1.25rem 3rem;
    min-height: unset;
    gap: 1.75rem;
  }
  .tp-badge { margin-left: auto; margin-right: auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }

  .strip-inner { grid-template-columns: 1fr 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .strip-inner  { grid-template-columns: 1fr; }
  .hero-stats   { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { display: none; }
  .hero-stats   { align-items: center; }
  .footer-links { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   Product detail page (PDP) — Arctic-style showcase + buy panel
   ═══════════════════════════════════════════════════════════ */
.pdp-main {
  position: relative;
  z-index: 5;
  padding: 6.5rem 1.25rem 4rem;
  min-height: 60vh;
}
.pdp-main::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(249,115,22,.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(249,115,22,.06), transparent 50%),
    #070707;
  pointer-events: none;
  z-index: -1;
}
.pdp-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.pdp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
}
.pdp-back:hover { color: #fdba74; }
.pdp-back i, .pdp-back svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Centered page title (product + game) */
.pdp-page-head {
  text-align: center;
  margin-bottom: 1.75rem;
}
.pdp-name-xl {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: #fff;
  margin: 0;
}
.pdp-game-xl {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 700;
  color: #fdba74;
  margin: .35rem 0 0;
  letter-spacing: -.01em;
}

/* Main dark card */
.pdp-shell {
  background: rgba(18,18,18,.92);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 28px 80px rgba(0,0,0,.55);
  margin-bottom: 2.5rem;
}

/* FAQ-style glass + animated overlays (product pages) */
.pdp-main--hero {
  padding-top: 1.25rem;
}
.pdp-e1-hero {
  min-height: 400px;
  z-index: 6;
  isolation: isolate;
}
/* PDP hero — cinematic bg = same art + grades as homepage (.hero-bg2 moon / treeline) */
.pdp-e1-hero--faq {
  min-height: clamp(340px, 52vh, 520px);
}
.pdp-e1-hero--faq .pdp-hero-cine-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/hero-bg2.png') center 35% / cover no-repeat;
  transform: scale(1.03);
  animation: e1BgDrift 20s ease-in-out infinite alternate;
}
.pdp-e1-hero--faq .e1-stars {
  z-index: 1;
}
.pdp-e1-hero--faq .pdp-hero-cine-black {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(0,0,0,.52);
  pointer-events: none;
}
.pdp-e1-hero--faq .pdp-hero-cine-lr {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to right,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.55) 42%,
    rgba(0,0,0,.22) 100%
  );
  pointer-events: none;
}
.pdp-e1-hero--faq .pdp-hero-cine-tb {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(to top, #000 0%, rgba(0,0,0,.12) 48%, rgba(0,0,0,.58) 100%);
  pointer-events: none;
}
.pdp-e1-hero--faq .pdp-hero-cine-tint {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(67,20,7,.18);
  pointer-events: none;
}
.pdp-e1-hero--faq .pdp-hero-cine-grid {
  position: absolute;
  inset: 0;
  z-index: 6;
  opacity: .09;
  background-image:
    linear-gradient(rgba(249,115,22,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.4) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* orange center bloom + fine dot texture */
.pdp-e1-hero--faq .pdp-e1-cine-overlay {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.1) 1px, transparent 0),
    radial-gradient(ellipse 72% 62% at 50% 40%, rgba(255,140,0,.22) 0%, rgba(249,115,22,.09) 48%, transparent 74%),
    radial-gradient(ellipse 100% 85% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,.35) 100%);
  background-size: 22px 22px, auto, auto;
}
.pdp-e1-faq-mesh {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: .5;
  background:
    linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 42%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1px, transparent 0);
  background-size: auto, 18px 18px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 22%, black 100%);
}
.pdp-e1-faq-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4.25rem 1.5rem 4.5rem;
  max-width: 760px;
  margin: 0 auto;
}
.pdp-e1-faq-back {
  margin-bottom: 1.35rem;
  justify-content: center;
}
.pdp-e1-faq-title {
  text-align: center;
  margin-bottom: 1.1rem;
}
.pdp-e1-faq-title .e1-accent {
  /* solid premium orange like FAQ reference (~#D98C2F) + subtle shine */
  background: linear-gradient(
    105deg,
    #e19a3c 0%,
    #f5a623 35%,
    #d98c2f 55%,
    #ea580c 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineScroll 5s linear infinite;
  background-size: 200% 100%;
}
.pdp-e1-faq-sub {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.65;
}
a.faq2-btn.pdp-e1-faq-cta {
  text-decoration: none;
  margin-top: .15rem;
  transition: transform .18s, border-color .2s, background .2s, box-shadow .2s;
}
a.faq2-btn.pdp-e1-faq-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,.15);
}

/* PDP hero — Arctic-style headline (cyan/teal) + CTA */
.pdp-e1-hero--arctic .pdp-e1-faq-content {
  position: relative;
}
.pdp-e1-hero--arctic .pdp-e1-faq-content::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translate(-50%, -50%);
  width: min(96%, 560px);
  height: clamp(160px, 28vw, 260px);
  background: radial-gradient(ellipse at center,
    rgba(255,255,255,.14) 0%,
    rgba(0,242,255,.06) 35%,
    transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.pdp-e1-hero--arctic .pdp-arctic-title,
.pdp-e1-hero--arctic .pdp-arctic-sub,
.pdp-e1-hero--arctic .pdp-e1-faq-back,
.pdp-e1-hero--arctic .pdp-arctic-cta {
  position: relative;
  z-index: 1;
}
.pdp-arctic-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
  color: #fff;
  text-align: center;
  margin: 0 0 1.05rem;
  max-width: 920px;
  text-wrap: balance;
}
.pdp-arctic-accent {
  background: linear-gradient(
    105deg,
    #00f2ff 0%,
    #5eeadb 35%,
    #3ef7ad 65%,
    #00d4aa 100%
  );
  background-size: 140% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pdpArcticShine 5s ease-in-out infinite;
}
@keyframes pdpArcticShine {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.pdp-arctic-sub {
  font-size: .92rem;
  color: rgba(255,255,255,.42);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 1.65rem;
  line-height: 1.65;
}
a.pdp-arctic-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  color: #061018;
  background: linear-gradient(135deg, #3ef7ad 0%, #22e8d8 40%, #00f2ff 100%);
  box-shadow:
    0 4px 24px rgba(62,247,173,.42),
    0 0 40px rgba(0,242,255,.22);
  transition: transform .18s, box-shadow .22s, filter .2s;
}
a.pdp-arctic-cta:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow:
    0 8px 32px rgba(62,247,173,.5),
    0 0 52px rgba(0,242,255,.3);
}
a.pdp-arctic-cta .pdp-arctic-cta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pdp-e1-hero--arctic .pdp-e1-cine-overlay {
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.08) 1px, transparent 0),
    radial-gradient(ellipse 70% 58% at 50% 38%, rgba(0,242,255,.12) 0%, rgba(62,247,173,.06) 45%, transparent 72%),
    radial-gradient(ellipse 100% 85% at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,0,0,.4) 100%);
  background-size: 22px 22px, auto, auto;
}
.pdp-e1-hero--arctic .pdp-hero-cine-tint {
  background: rgba(8,40,42,.22);
}
.pdp-shell.pdp-shell--glass {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow:
    0 0 0 1px rgba(249,115,22,.06),
    0 24px 72px rgba(0,0,0,.4);
  transition: border-color .5s, box-shadow .5s;
}
.pdp-shell.pdp-shell--glass:hover {
  border-color: rgba(249,115,22,.3);
  box-shadow:
    0 0 48px rgba(249,115,22,.12),
    0 0 80px rgba(127,29,29,.08),
    0 24px 72px rgba(0,0,0,.5);
}
.pdp-shell-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}
.pdp-shell-yt { border-radius: inherit; }
.pdp-shell.pdp-shell--glass:hover .yt-gradient-overlay { opacity: .9; }
.pdp-shell.pdp-shell--glass:hover .yt-inner-grid { opacity: .07; }
.pdp-shell-body {
  position: relative;
  z-index: 10;
}
.pdp-shell-corner { z-index: 5; }

.pdp-shell-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(0, .76fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
}

/* PDP — static image + trust badge graphics (no video UI) */
.pdp-showcase-static {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #0a0a0a;
}
.pdp-showcase-static .pdp-video-poster {
  border-radius: 0;
}
.pdp-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.pdp-trust-badges img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  /* PNGs use blue accents; rotate hue toward CheatBaron orange (~#f97316 / #ea580c) */
  filter: hue-rotate(162deg) saturate(1.22) brightness(1.06);
}

/* Feature gallery — bare thumbnails → lightbox; prev/next = orange */
.pdp-gallery {
  margin-top: 16px;
  border: none;
  background: transparent;
  overflow: visible;
}
.pdp-gallery-hint {
  margin: 0;
  padding: 0 0 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.pdp-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
}
.pdp-gallery-thumb {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255,255,255,.1);
  border-radius: 10px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
/* Orange title over screenshot; masks baked-in green banner (no whole-image tint) */
.pdp-gallery-thumb[data-gallery-caption]::after {
  content: attr(data-gallery-caption);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  padding: 0.5rem 0.65rem 1.35rem;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(0.62rem, 2.1vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  color: #fb923c;
  text-shadow: 0 1px 3px rgba(0,0,0,.95);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6,6,8,.98) 0%,
    rgba(6,6,8,.96) 38%,
    rgba(6,6,8,.55) 55%,
    transparent 72%
  );
  border-radius: 10px 10px 0 0;
}
.pdp-gallery-thumb:hover {
  border-color: rgba(249,115,22,.5);
  box-shadow: 0 0 20px rgba(249,115,22,.15);
}
.pdp-gallery-thumb.is-active {
  border-color: rgba(249,115,22,.75);
  box-shadow: 0 0 0 1px rgba(249,115,22,.4), 0 0 24px rgba(249,115,22,.12);
}
.pdp-gallery-thumb img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
@media (max-width: 640px) {
  .pdp-gallery-thumbs {
    grid-template-columns: 1fr;
  }
}
.pdp-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 2rem);
}
.pdp-gallery-lightbox[hidden] {
  display: none;
}
.pdp-gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0,0,0,.88);
  cursor: pointer;
}
.pdp-gallery-lightbox-stage {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1280px);
  max-height: min(88vh, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.pdp-gallery-lightbox-frame {
  position: relative;
  display: inline-block;
  max-width: 100%;
  line-height: 0;
  pointer-events: none;
}
.pdp-gallery-lightbox-frame .pdp-gallery-lightbox-img {
  pointer-events: auto;
  display: block;
  max-width: 100%;
  max-height: min(78vh, 820px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 80px rgba(0,0,0,.75);
  cursor: pointer;
}
.pdp-gallery-lightbox-cap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0.65rem 1rem 1.85rem;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(0.72rem, 2.2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: #fb923c;
  text-shadow: 0 1px 4px rgba(0,0,0,.95);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6,6,8,.98) 0%,
    rgba(6,6,8,.96) 38%,
    rgba(6,6,8,.55) 55%,
    transparent 72%
  );
  border-radius: 12px 12px 0 0;
}
.pdp-gallery-close,
.pdp-gallery-nav {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: transform .15s, filter .2s, box-shadow .2s;
}
.pdp-gallery-nav {
  border: 1px solid rgba(251,146,60,.55);
  background: linear-gradient(145deg, #fb923c, #c2410c);
  box-shadow: 0 4px 22px rgba(234,88,12,.5);
}
.pdp-gallery-nav:hover {
  filter: brightness(1.08);
  box-shadow: 0 6px 30px rgba(234,88,12,.55);
}
.pdp-gallery-nav:active {
  filter: brightness(0.94);
}
.pdp-gallery-close {
  border: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(145deg, #3f3f46, #27272a);
  box-shadow: 0 4px 18px rgba(0,0,0,.55);
  top: clamp(12px, 3vw, 24px);
  right: clamp(12px, 3vw, 24px);
}
.pdp-gallery-close:hover {
  transform: scale(1.06);
  filter: brightness(1.1);
  box-shadow: 0 6px 26px rgba(0,0,0,.5);
}
.pdp-gallery-close:active {
  transform: scale(0.96);
}
.pdp-gallery-nav--prev {
  left: clamp(8px, 2.5vw, 20px);
  top: 50%;
  transform: translateY(-50%);
}
.pdp-gallery-nav--next {
  right: clamp(8px, 2.5vw, 20px);
  top: 50%;
  transform: translateY(-50%);
}
.pdp-gallery-nav--prev:hover,
.pdp-gallery-nav--next:hover {
  transform: translateY(-50%) scale(1.06);
}
.pdp-gallery-nav--prev:active,
.pdp-gallery-nav--next:active {
  transform: translateY(-50%) scale(0.96);
}
.pdp-gallery-close svg,
.pdp-gallery-nav svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.pdp-tp-row {
  align-self: flex-start;
  margin-bottom: 1rem;
}

/* START CHEATING NOW — CTA gloss + label (from web example showcase card) */
@keyframes showcase-cta-gloss-sweep {
  0% { transform: translateX(-120%) skewX(-18deg); }
  55%, 100% { transform: translateX(220%) skewX(-18deg); }
}
@keyframes showcase-cta-glitch-micro {
  0%, 94%, 100% {
    text-shadow:
      0.45px 0 0 rgba(255, 90, 90, 0.42),
      -0.45px 0 0 rgba(100, 210, 255, 0.4),
      0 1px 14px rgba(0, 0, 0, 0.65);
  }
  95% {
    text-shadow:
      0.65px 0 0 rgba(255, 60, 60, 0.55),
      -0.65px 0 0 rgba(80, 230, 255, 0.55),
      0 1px 12px rgba(0, 0, 0, 0.7);
  }
  96% {
    text-shadow:
      -0.35px 0 0 rgba(255, 100, 100, 0.48),
      0.35px 0 0 rgba(120, 200, 255, 0.48),
      0 1px 14px rgba(0, 0, 0, 0.65);
  }
}
.pdp-buy-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2px;
  margin-bottom: 0.35rem;
}
.pdp-buy-actions .pdp-showcase-cta {
  margin-bottom: 0;
}

/* Refund policy — premium trust strip (matches PDP glass + brand orange) */
.pdp-refund-policy {
  position: relative;
  margin-top: 1.2rem;
  padding: 1.05rem 1.15rem 1.12rem;
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(125deg, rgba(249, 115, 22, 0.14) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(10, 12, 18, 0.9) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(249, 115, 22, 0.32);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 1px 0 rgba(253, 186, 116, 0.18) inset,
    0 10px 32px rgba(0, 0, 0, 0.38),
    0 0 36px rgba(249, 115, 22, 0.14);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.25s ease;
}
.pdp-refund-policy::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  z-index: 1;
  background: linear-gradient(90deg, transparent, #fdba74 18%, #f97316 50%, #ea580c 82%, transparent);
  opacity: 0.95;
  pointer-events: none;
}
.pdp-refund-policy::after {
  content: '';
  position: absolute;
  inset: -40% -30% auto -20%;
  height: 55%;
  z-index: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(249, 115, 22, 0.2), transparent 72%);
  pointer-events: none;
}
.pdp-refund-policy:hover {
  border-color: rgba(249, 115, 22, 0.48);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 1px 0 rgba(253, 186, 116, 0.22) inset,
    0 14px 40px rgba(0, 0, 0, 0.42),
    0 0 48px rgba(249, 115, 22, 0.22);
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .pdp-refund-policy {
    transition: none;
  }
  .pdp-refund-policy:hover {
    transform: none;
  }
}
.pdp-refund-policy-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.62rem;
}
.pdp-refund-policy-titles {
  min-width: 0;
  flex: 1;
}
.pdp-refund-policy-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 186, 116, 0.95);
}
.pdp-refund-policy-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #fdba74 0%, #f97316 52%, #c2410c 100%);
  color: #0a0a0f;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2) inset,
    0 2px 8px rgba(249, 115, 22, 0.45);
}
.pdp-refund-policy-icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2.35;
}
.pdp-refund-policy-title {
  margin: 0;
  padding-top: 0;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(249, 115, 22, 0.2);
}
.pdp-refund-policy-text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.58;
  color: rgba(248, 250, 252, 0.88);
  font-family: 'Inter', sans-serif;
}
.pdp-refund-policy-guarantee {
  display: inline;
  color: #4ade80;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.35);
}

/* SellHub dashboard embed buttons (data-sellhub-*) — see product-r6-spectre.html */
.pdp-sellhub-embed-demo {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.pdp-sellhub-embed-label {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}
.pdp-sellhub-embed-label a {
  color: rgba(251, 191, 36, 0.95);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pdp-sellhub-embed-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.pdp-sellhub-embed-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1.3;
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}
.pdp-sellhub-embed-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.pdp-sellhub-embed-cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pdp-showcase-cta.pdp-buy-now:hover .showcase-cta-gloss {
  animation-duration: 2.15s;
}
.showcase-cta-gloss {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 55%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.07) 45%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.07) 55%,
    transparent 100%
  );
  animation: showcase-cta-gloss-sweep 3.2s ease-in-out infinite;
}
.showcase-cta-label {
  color: #fafafa;
  text-shadow:
    0.45px 0 0 rgba(255, 90, 90, 0.42),
    -0.45px 0 0 rgba(100, 210, 255, 0.4),
    0 1px 14px rgba(0, 0, 0, 0.65);
}
.showcase-cta-label-anim {
  animation: showcase-cta-glitch-micro 5.5s ease-in-out infinite;
}
.pdp-showcase-cta.pdp-buy-now {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.55);
  background: linear-gradient(to bottom, #171717 0%, #ea580c 52%, #b45309 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 6px 24px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pdp-showcase-cta.pdp-buy-now:hover {
  transform: scale(1.03);
  border-color: rgba(253, 230, 138, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 32px rgba(249, 115, 22, 0.42),
    0 8px 28px rgba(0, 0, 0, 0.5);
}
.pdp-showcase-cta.pdp-buy-now:active {
  transform: scale(0.98);
}
.pdp-showcase-cta.pdp-add-cart {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.2s, background 0.2s;
}
.pdp-showcase-cta.pdp-add-cart .showcase-cta-label {
  text-shadow: none;
  color: rgba(250, 250, 250, 0.95);
}
.pdp-showcase-cta.pdp-add-cart:hover {
  transform: scale(1.02);
  border-color: rgba(249, 115, 22, 0.45);
  background: rgba(249, 115, 22, 0.08);
}
.pdp-showcase-cta.pdp-add-cart:active {
  transform: scale(0.98);
}
.pdp-showcase-cta.pdp-cta-down {
  border-color: rgba(239, 68, 68, 0.62) !important;
  background: linear-gradient(to bottom, #2b1313 0%, #7f1d1d 55%, #450a0a 100%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 24px rgba(127, 29, 29, 0.45) !important;
  cursor: not-allowed !important;
  opacity: 1;
}
.pdp-showcase-cta.pdp-cta-down .showcase-cta-label {
  color: #fee2e2 !important;
  text-shadow: none !important;
}
.pdp-showcase-cta.pdp-cta-down .showcase-cta-arrow {
  color: #fecaca !important;
  transform: none !important;
}
.pdp-showcase-cta.pdp-cta-down:hover,
.pdp-showcase-cta.pdp-cta-down:active {
  transform: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 6px 24px rgba(127, 29, 29, 0.45) !important;
}
.pdp-showcase-cta .showcase-cta-label {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: clamp(10px, 2.8vw, 12.5px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.pdp-showcase-cta .showcase-cta-arrow {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}
.pdp-showcase-cta.pdp-buy-now:hover .showcase-cta-arrow {
  transform: translateX(6px) scale(1.05);
}
.pdp-showcase-cta.pdp-add-cart:hover .showcase-cta-arrow {
  transform: scale(1.08);
}
@media (prefers-reduced-motion: reduce) {
  .showcase-cta-gloss { animation: none; opacity: 0; }
  .showcase-cta-label-anim { animation: none; }
  .pdp-showcase-cta.pdp-buy-now:hover .showcase-cta-gloss { animation: none; }
}

/* Left: faux video + feature thumbs */
.pdp-video-box {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  background: #0a0a0a;
}
.pdp-video-poster {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
}
.pdp-video-poster--r6 .pdp-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.pdp-video-poster--apex .pdp-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.pdp-play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.85);
  background: rgba(0,0,0,.45);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, background .2s, border-color .2s;
}
.pdp-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(249,115,22,.35);
  border-color: #fdba74;
}
.pdp-play-btn svg { width: 26px; height: 26px; margin-left: 3px; }

.pdp-video-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #1a1a1a, #121212);
  border-top: 1px solid rgba(255,255,255,.06);
}
.pdp-vc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fb923c;
  flex-shrink: 0;
}
.pdp-vc-bar {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.pdp-feat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.pdp-feat-thumb {
  position: relative;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .65rem .6rem .75rem;
  background: rgba(255,255,255,.03);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: #fff;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.pdp-feat-thumb:hover {
  border-color: rgba(249,115,22,.4);
  background: rgba(249,115,22,.06);
}
.pdp-feat-thumb.is-active {
  border-color: rgba(249,115,22,.65);
  background: rgba(249,115,22,.12);
  box-shadow: 0 0 0 1px rgba(249,115,22,.2);
}
.pdp-feat-thumb-label {
  display: block;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #fdba74;
  margin-bottom: .35rem;
}
.pdp-feat-thumb-cap {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  line-height: 1.3;
}

/* Right: purchase column */
.pdp-buy-col { min-width: 0; }

.pdp-quiz-offer {
  margin: 0 0 1rem;
  padding: .75rem .85rem;
  border-radius: 12px;
  border: 1px solid rgba(245,166,35,.4);
  background: linear-gradient(145deg, rgba(245,166,35,.14), rgba(12,14,22,.92));
}
.pdp-quiz-offer-kicker {
  margin: 0 0 .2rem;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fdba74;
}
.pdp-quiz-offer-title {
  margin: 0 0 .35rem;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}
.pdp-quiz-offer-code {
  margin: 0 0 .35rem;
  font-size: .88rem;
  color: rgba(244,248,252,.9);
}
.pdp-quiz-offer-code code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .95rem;
  font-weight: 700;
  color: #fde68a;
  letter-spacing: .04em;
}
.pdp-quiz-offer-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(253,224,200,.75);
  margin-right: .35rem;
}
.pdp-quiz-offer-hint {
  margin: 0;
  font-size: .72rem;
  line-height: 1.45;
  color: rgba(255,255,255,.52);
}

.pdp-help-choose {
  margin: 0 0 1rem;
  padding: .75rem .9rem;
  border-radius: 12px;
  border: 1px solid rgba(249,115,22,.22);
  background: linear-gradient(145deg, rgba(249,115,22,.09), rgba(0,0,0,.2));
}
.pdp-help-choose-text {
  margin: 0;
  font-size: .8rem;
  line-height: 1.5;
  color: rgba(255,255,255,.62);
}
.pdp-help-choose-text strong {
  color: rgba(253,224,200,.95);
  font-weight: 700;
}
.pdp-help-choose-btn {
  margin-top: .65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  padding: 0 .85rem;
  border-radius: 11px;
  border: 1px solid rgba(249,115,22,.4);
  background: rgba(249,115,22,.12);
  color: #fdba74;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, transform .15s;
}
.pdp-help-choose-btn:hover {
  border-color: rgba(249,115,22,.55);
  background: rgba(249,115,22,.2);
  color: #fff;
  transform: translateY(-1px);
}
.pdp-help-choose-btn:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}
.pdp-help-choose-btn i,
.pdp-help-choose-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.apex-game-guide-actions {
  position: relative;
  z-index: 1;
  margin-top: .35rem;
  padding: 0 0 .25rem;
  text-align: center;
}
.apex-game-guide-done {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 1.25rem;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .78rem;
  color: #fff;
  background: linear-gradient(135deg, #f5a623 0%, #c07d10 100%);
}

.pdp-tag {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,.12);
  color: #0a0a0a;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.pdp-buy-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 .85rem;
  line-height: 1.1;
}
.pdp-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}
.pdp-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: .38rem .65rem;
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pdp-mini-badge svg { width: 12px; height: 12px; flex-shrink: 0; }
.pdp-mini-badge--instant {
  background: rgba(249,115,22,.2);
  border: 1px solid rgba(249,115,22,.45);
  color: #fdba74;
}
.pdp-mini-badge--ud {
  background: rgba(34,197,94,.18);
  border: 1px solid rgba(34,197,94,.38);
  color: #4ade80;
}

.pdp-desc {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.58);
  margin: 0 0 1.25rem;
}

.pdp-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.pdp-price-big {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
}

.pdp-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0,0,0,.35);
}
.pdp-qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(255,255,255,.06);
  color: #fdba74;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  transition: background .2s;
}
.pdp-qty-btn:hover { background: rgba(249,115,22,.2); }
.pdp-qty-input {
  width: 44px;
  height: 40px;
  border: none;
  border-left: 1px solid rgba(255,255,255,.08);
  border-right: 1px solid rgba(255,255,255,.08);
  background: transparent;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
  -moz-appearance: textfield;
}
.pdp-qty-input::-webkit-outer-spin-button,
.pdp-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pdp-section-label {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin: 0 0 .65rem;
}

.pdp-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: none;
  margin: 0 0 1.25rem;
  padding: 0;
  min-width: 0;
}
label.pdp-plan {
  position: relative;
  display: block;
  padding: .75rem .65rem .65rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
  text-align: center;
}
label.pdp-plan:hover {
  border-color: rgba(249,115,22,.35);
}
label.pdp-plan:has(:checked) {
  background: rgba(249,115,22,.22);
  border-color: rgba(249,115,22,.65);
}
label.pdp-plan:has(:checked) .pdp-plan-dur,
label.pdp-plan:has(:checked) .pdp-plan-price {
  color: #0a0a0a;
}
.pdp-plan input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.pdp-plan-dur {
  display: block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: .35rem;
}
.pdp-plan-price {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}

/* Add to cart: global orange primary (plain button only) */
.btn-primary.pdp-add-cart:not(.pdp-showcase-cta) {
  width: 100%;
  justify-content: center;
  margin-bottom: .75rem;
  min-height: 52px;
  padding-top: .85rem;
  padding-bottom: .85rem;
}
.btn-primary.pdp-add-cart:not(.pdp-showcase-cta):active { transform: scale(.99); }

a.faq2-btn.pdp-faq-cta {
  width: 100%;
  justify-content: center;
  text-decoration: none;
  padding: .62rem 1.1rem;
  transition: transform .18s, border-color .2s, background .2s;
}
a.faq2-btn.pdp-faq-cta:hover {
  transform: translateY(-2px);
}
a.faq2-btn.pdp-faq-cta .faq2-btn-icon { flex-shrink: 0; }

/* Bottom: same feature list as before */
.pdp-includes {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 2rem;
}
.pdp-includes--glass {
  margin-top: .25rem;
  padding: 1.75rem 1.5rem 1.85rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 0 0 1px rgba(249,115,22,.04);
}
.pdp-includes--glass .pdp-feat {
  transition: border-color .22s, background .22s, box-shadow .22s;
}
.pdp-includes--glass .pdp-feat:hover {
  border-color: rgba(249,115,22,.28);
  background: rgba(249,115,22,.05);
  box-shadow: 0 0 20px rgba(249,115,22,.06);
}
.pdp-includes h2 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1rem;
}
.pdp-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.pdp-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: .75rem .85rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.45;
}
.pdp-feat svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: #fb923c;
  margin-top: 2px;
}
.pdp-feat strong { color: #fff; font-weight: 700; }

/* PDP lower: tabs, About, Information, FAQ, related cards */
.pdp-lower {
  margin-top: 1rem;
}
.pdp-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pdp-subtab {
  margin: 0;
  padding: 0.62rem 1.15rem;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 10px 10px 0 0;
  background: transparent;
  color: rgba(255,255,255,.42);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.pdp-subtab:hover {
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.04);
}
.pdp-subtab.is-active {
  color: #fff;
  background: rgba(249,115,22,.1);
  box-shadow: inset 0 -2px 0 #f97316;
}
.pdp-tab-panel[hidden] {
  display: none !important;
}
.pdp-about {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.pdp-about-head {
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(120,53,15,.32), rgba(24,24,27,.96));
  border-bottom: 1px solid rgba(249,115,22,.18);
}
.pdp-about-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.28rem;
}
.pdp-about-sub {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,.48);
}
.pdp-about-body {
  padding: 1.2rem 1.35rem 1.35rem;
  background: rgba(0,0,0,.38);
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(255,255,255,.76);
}
.pdp-about-body p {
  margin: 0 0 0.85rem;
}
.pdp-about-body p:last-child {
  margin-bottom: 0;
}
.pdp-info {
  margin-bottom: 1.5rem;
}
.pdp-info-summary {
  position: relative;
  padding: 1.05rem 1.1rem 1.05rem 1.3rem;
  margin-bottom: 1.15rem;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
}
.pdp-info-summary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #fb923c, #ea580c);
}
.pdp-info-h {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
  margin: 0 0 0.8rem;
}
.pdp-info-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pdp-info-bullets li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.42rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,.72);
  line-height: 1.45;
}
.pdp-info-bullets li:last-child {
  margin-bottom: 0;
}
.pdp-info-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fb923c;
}
.pdp-info-cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.pdp-info-col {
  position: relative;
  padding: 1rem 0.75rem 1rem 1rem;
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  min-height: 0;
}
.pdp-info-col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 1px;
  background: rgba(249,115,22,.65);
}
.pdp-info-col h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0 0 0.32rem;
}
.pdp-info-col .pdp-info-col-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,.46);
  margin: 0 0 0.72rem;
  line-height: 1.45;
}
.pdp-info-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,.64);
  line-height: 1.52;
}
.pdp-info-col li {
  position: relative;
  padding-left: 0.85rem;
  margin-bottom: 0.26rem;
}
.pdp-info-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fb923c;
}
.pdp-faq-block {
  margin-top: 1.5rem;
}
.pdp-faq-block .faq2-list {
  gap: 12px;
}
.pdp-faq-block .faq2-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #0a0a0a;
  font-size: 0.82rem;
}
.pdp-inline-link {
  color: #fb923c;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pdp-inline-link:hover {
  color: #fdba74;
}
.pdp-related-head {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.2rem;
}
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.pdp-related-card {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pdp-related-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #0c0c0e;
}
.pdp-related-card-body {
  padding: 1rem 1rem 1.05rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pdp-related-card-title {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.32rem;
}
.pdp-related-card-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,.52);
  line-height: 1.5;
  margin: 0 0 0.8rem;
  flex: 1;
}
.pdp-related-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 0.72rem;
}
.pdp-related-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.pdp-related-badge--ok {
  color: #4ade80;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.22);
}
.pdp-related-badge--test {
  color: #fdba74;
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.25);
}
.pdp-related-price {
  font-size: 0.84rem;
  font-weight: 800;
  color: #fb923c;
  white-space: nowrap;
}
.pdp-related-add {
  width: 100%;
  margin: 0;
  padding: 0.58rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.pdp-related-add:hover {
  border-color: rgba(249,115,22,.45);
  background: rgba(249,115,22,.1);
}
.pdp-related-add:active {
  transform: scale(0.98);
}

@media (max-width: 960px) {
  .pdp-shell-grid { grid-template-columns: 1fr; }
  .pdp-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pdp-info-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pdp-related-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .pdp-main { padding-top: 5.25rem; }
  .pdp-main--hero { padding-top: .75rem; }
  .pdp-feat-grid { grid-template-columns: 1fr; }
  .pdp-feat-strip { grid-template-columns: 1fr; }
  .pdp-info-cols {
    grid-template-columns: 1fr;
  }
}

/* listing cards: image + title link to PDP; buy stays separate */
a.apex-card-hero {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 14px 14px 0 0;
}
a.apex-card-hero:focus-visible {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}
.apex-card-name-link {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}
.apex-card-name-link:hover { color: #fdba74; }

/* ── Secure checkout email modal (PDP Buy now) ───────────────── */
body.cb-modal-open {
  overflow: hidden;
}
.cb-checkout-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.cb-checkout-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.cb-checkout-modal {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  border: 1px solid rgba(249, 115, 22, 0.32);
  background: linear-gradient(
    165deg,
    rgba(22, 22, 28, 0.98) 0%,
    rgba(10, 10, 14, 0.99) 50%,
    rgba(18, 12, 8, 0.98) 100%
  );
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 48px rgba(249, 115, 22, 0.14);
}
.cb-checkout-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 1.15rem 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cb-checkout-modal-title {
  margin: 0;
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.cb-checkout-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.cb-checkout-modal-close:hover {
  border-color: rgba(249, 115, 22, 0.5);
  color: #fff;
  background: rgba(249, 115, 22, 0.1);
}
.cb-checkout-modal-close svg {
  width: 18px;
  height: 18px;
}
.cb-checkout-modal-body {
  padding: 1.15rem 1.15rem 0.5rem;
}
.cb-checkout-modal-label {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}
.cb-checkout-modal-field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.05rem 0.75rem 0.05rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.45);
  background: rgba(0, 0, 0, 0.4);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cb-checkout-modal-field:focus-within {
  border-color: rgba(253, 186, 116, 0.75);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}
.cb-checkout-modal-field-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #fdba74;
  opacity: 0.95;
}
.cb-checkout-modal-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  padding: 0.72rem 0.25rem 0.72rem 0;
  outline: none;
}
.cb-checkout-modal-input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}
.cb-checkout-modal-hint {
  margin: 0.55rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.38);
}
.cb-checkout-modal-error {
  margin: 0.65rem 0 0;
  font-size: 0.8rem;
  color: #fecaca;
  line-height: 1.4;
}
.cb-checkout-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  padding: 1rem 1.15rem 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cb-checkout-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.cb-checkout-modal-btn:active {
  transform: scale(0.98);
}
.cb-checkout-modal-btn--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.88);
}
.cb-checkout-modal-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}
.cb-checkout-modal-btn--primary {
  border: 1px solid rgba(249, 115, 22, 0.45);
  background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
  color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 24px rgba(249, 115, 22, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.cb-checkout-modal-btn--primary:hover {
  border-color: rgba(249, 115, 22, 0.65);
  filter: brightness(1.06);
  box-shadow: 0 6px 28px rgba(249, 115, 22, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
@media (max-width: 480px) {
  .cb-checkout-modal-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .cb-checkout-modal-btn {
    width: 100%;
  }
}

/* ── Shared static dashboard shell (from `web example` DashboardPage + index.css)
   Used by guides.html hub preview and dashboard.html full panel tree. ───────── */
.guides-dash {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow-x: clip;
  padding: 2.25rem clamp(0.5rem, 2.5vw, 1.5rem) 1.5rem;
  background: #020202;
  scroll-margin-top: 5.5rem;
}

.guides-dash-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 130% 70% at 50% -25%, rgba(249, 115, 22, 0.22), transparent 58%),
    radial-gradient(ellipse 55% 45% at 95% 15%, rgba(234, 88, 12, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 40% at 5% 45%, rgba(251, 146, 60, 0.08), transparent 50%),
    radial-gradient(ellipse 90% 55% at 50% 110%, rgba(67, 20, 7, 0.45), transparent 52%),
    linear-gradient(165deg, hsl(20 12% 6%) 0%, hsl(0 0% 2%) 38%, hsl(240 8% 4%) 72%, hsl(0 0% 0%) 100%);
}

.guides-dash-orange-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.065) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

.guides-dash-grad {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.07), transparent 45%, rgba(46, 16, 101, 0.25));
}

.guides-dash-inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem 2.5rem;
}

/* Dashboard: `#element1` sits under navbar, full width (same placement as products.html) */
.element-1--dashboard-page {
  scroll-margin-top: 5.5rem;
}

.element-1--dashboard-page .e1-title#dashHeroTitle {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.2rem, 2.8vw, 1.85rem);
  line-height: 1.28;
}

.element-1--dashboard-page .e1-sub {
  margin-bottom: 2rem;
}

.guides-dash-btn-funds {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  padding: 0 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(to bottom, #f97316, #c2410c);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.guides-dash-btn-funds:hover {
  filter: brightness(1.06);
}

.guides-dash-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 9, 11, 0.95);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.guides-dash-shell .g-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.85;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.065) 1px, transparent 1px);
  background-size: 22px 22px;
}

.guides-dash-shell .g-grad {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.09), transparent 55%);
}

.guides-dash-shell .g-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(to right, transparent, rgba(249, 115, 22, 0.4), transparent);
}

.guides-dash-shell .g-br {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
  border-color: rgba(249, 115, 22, 0.7);
  border-style: solid;
}

.guides-dash-shell .g-br.tl {
  left: 0.75rem;
  top: 0.75rem;
  border-width: 2px 0 0 2px;
  border-radius: 2px 0 0 0;
}

.guides-dash-shell .g-br.tr {
  right: 0.75rem;
  top: 0.75rem;
  border-width: 2px 2px 0 0;
}

.guides-dash-shell .g-br.bl {
  left: 0.75rem;
  bottom: 0.75rem;
  border-width: 0 0 2px 2px;
}

.guides-dash-shell .g-br.br {
  right: 0.75rem;
  bottom: 0.75rem;
  border-width: 0 2px 2px 0;
}

.guides-dash-shell-in {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .guides-dash-shell-in {
    padding: 2rem;
  }
}

.guides-dash-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .guides-dash-tiles {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .guides-dash-tiles {
    grid-template-columns: repeat(3, 1fr);
  }
}

.guides-dash-tile {
  display: flex;
  min-height: 200px;
  flex-direction: column;
  justify-content: center;
  padding: 1.75rem 1.75rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(39, 39, 42, 0.9);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, box-shadow 0.3s, background-color 0.3s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  font: inherit;
  cursor: pointer;
  text-align: inherit;
}

.guides-dash-tile:hover:not(.is-disabled):not(.is-route-active) {
  border-color: rgba(249, 115, 22, 0.32);
  background: rgba(249, 115, 22, 0.04);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.guides-dash-tile.is-route-active {
  border-color: rgba(249, 115, 22, 0.55);
  background: rgba(249, 115, 22, 0.06);
  box-shadow:
    0 0 0 1px rgba(249, 115, 22, 0.22),
    0 14px 40px rgba(0, 0, 0, 0.5);
}

.guides-dash-tile.is-route-active:hover:not(.is-disabled) {
  border-color: rgba(251, 146, 60, 0.62);
  background: rgba(249, 115, 22, 0.08);
}

.guides-dash-tile.is-disabled {
  cursor: default;
  opacity: 0.7;
}

.guides-dash-tile .icon-wrap {
  position: relative;
  margin: 0 auto;
  display: flex;
  height: 100px;
  width: 100px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1.125rem;
  border: 1.5px dashed rgba(249, 115, 22, 0.42);
  background: linear-gradient(165deg, rgba(22, 22, 26, 0.98) 0%, rgba(8, 8, 11, 1) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -18px 36px rgba(0, 0, 0, 0.45),
    0 6px 22px rgba(0, 0, 0, 0.42);
}

/* “Vierkanten” micro-grid inside icon wells */
.guides-dash-tile .icon-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.07) 1px, transparent 1px);
  background-size: 9px 9px;
}

.guides-dash-tile .icon-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(251, 146, 60, 0.16) 0%, transparent 40%),
    radial-gradient(ellipse 95% 72% at 50% 0%, rgba(249, 115, 22, 0.11), transparent 55%),
    linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.32) 100%);
  opacity: 1;
}

.guides-dash-tile.is-route-active .icon-wrap {
  border-color: rgba(251, 146, 60, 0.55);
  box-shadow:
    inset 0 0 28px rgba(249, 115, 22, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -18px 36px rgba(0, 0, 0, 0.45),
    0 8px 26px rgba(0, 0, 0, 0.48);
}

.guides-dash-tile .icon-wrap svg {
  position: relative;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  color: #fb923c;
  stroke-width: 1.5px;
}

.guides-dash-tile .icon-wrap--flat-icon img {
  position: relative;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  display: block;
}

.guides-dash-tile-main {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.guides-dash-tile-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1.5rem;
  text-align: center;
  pointer-events: none;
  border-radius: inherit;
  background: rgba(9, 9, 11, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.guides-dash-tile:hover:not(.is-disabled) .guides-dash-tile-hover {
  opacity: 1;
}

.guides-dash-tile-hint-title {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fafafa;
}

.guides-dash-tile-hint-body {
  margin-top: 0.5rem;
  max-width: 17rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #a1a1aa;
}

.guides-dash-tile h3 {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

@media (min-width: 640px) {
  .guides-dash-tile h3 {
    font-size: 0.875rem;
  }
}

.guides-dash-tile .soon {
  margin-top: 0.35rem;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #71717a;
}

/* dashboard.html sub-panels (parity with `web example` dashboard-hub-panels) */
.dash-back {
  display: inline-block;
  margin: 0.75rem 0 0.5rem;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fb923c;
  cursor: pointer;
  text-decoration: none;
}

.dash-back:hover {
  color: #fdba74;
}

.dash-back[hidden] {
  display: none;
}

[data-dash-panel] {
  display: none;
}

[data-dash-panel].is-active {
  display: block;
}

.dash-bc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #71717a;
}

.dash-bc a,
.dash-bc button {
  color: #a1a1aa;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.dash-bc a:hover,
.dash-bc button:hover {
  color: #fdba74;
}

.dash-bc .sep {
  color: #52525b;
}

.dash-bc .here {
  color: #fff;
  letter-spacing: 0.15em;
}

.dash-subgrid-2 {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .dash-subgrid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dash-subgrid-3 {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .dash-subgrid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dash-subcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
  font: inherit;
  color: inherit;
  text-align: center;
}

.dash-subcard:hover:not(.is-route-active) {
  border-color: rgba(249, 115, 22, 0.4);
}

.dash-subcard.is-route-active {
  border-color: rgba(249, 115, 22, 0.55);
  background: rgba(249, 115, 22, 0.06);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.2);
}

.dash-subcard .ring,
.dash-rescard .ring,
.dash-promote-card .ring {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1.125rem;
  border: 1.5px dashed rgba(249, 115, 22, 0.42);
  background: linear-gradient(165deg, rgba(22, 22, 26, 0.98) 0%, rgba(8, 8, 11, 1) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -16px 32px rgba(0, 0, 0, 0.42),
    0 6px 20px rgba(0, 0, 0, 0.4);
}

.dash-subcard .ring::before,
.dash-rescard .ring::before,
.dash-promote-card .ring::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(249, 115, 22, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, 0.075) 1px, transparent 1px);
  background-size: 8px 8px;
}

.dash-subcard .ring,
.dash-rescard .ring {
  height: 96px;
  width: 96px;
}

.dash-promote-card .ring {
  height: 100px;
  width: 100px;
}

.dash-subcard .ring::after,
.dash-rescard .ring::after,
.dash-promote-card .ring::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(251, 146, 60, 0.14) 0%, transparent 40%),
    radial-gradient(ellipse 95% 70% at 50% 0%, rgba(249, 115, 22, 0.09), transparent 52%),
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 1;
}

.dash-subcard.is-route-active .ring {
  border-color: rgba(251, 146, 60, 0.55);
  box-shadow:
    inset 0 0 26px rgba(249, 115, 22, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -16px 32px rgba(0, 0, 0, 0.42),
    0 8px 24px rgba(0, 0, 0, 0.45);
}

.dash-subcard .ring svg,
.dash-rescard .ring svg {
  position: relative;
  z-index: 2;
  width: 2.25rem;
  height: 2.25rem;
  color: #fb923c;
  stroke-width: 1.5px;
}

.dash-promote-card .ring svg {
  position: relative;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  color: #fb923c;
  stroke-width: 1.5px;
}

.dash-subcard .lbl {
  margin-top: 1.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(249, 115, 22, 0.2);
  background: rgba(0, 0, 0, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.dash-rescard {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
  padding: 1.5rem;
  cursor: pointer;
  transition: border-color 0.3s;
  font: inherit;
  color: inherit;
  text-align: center;
}

.dash-rescard:hover {
  border-color: rgba(249, 115, 22, 0.4);
}

.dash-rescard .cap {
  margin-top: 1rem;
  font-size: 10px;
  color: #71717a;
}

.dash-rescard .lbl {
  margin-top: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(249, 115, 22, 0.2);
  background: rgba(0, 0, 0, 0.45);
  padding: 0.5rem 0.75rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.dash-loader {
  margin-top: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(249, 115, 22, 0.3);
  background: linear-gradient(to bottom right, rgba(249, 115, 22, 0.1), rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6));
  padding: 1.25rem 1.5rem;
  box-shadow: 0 0 40px rgba(249, 115, 22, 0.08);
}

.dash-loader h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.dash-loader p {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.55;
}

.dash-game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .dash-game-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dash-game-tile {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(249, 115, 22, 0.2);
  background: rgba(0, 0, 0, 0.5);
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.dash-game-tile:hover {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 0 48px rgba(249, 115, 22, 0.15);
}

.dash-game-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dash-game-tile .g {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #000, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.dash-game-tile .cap {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(249, 115, 22, 0.25);
  background: rgba(0, 0, 0, 0.8);
  padding: 0.5rem 0.75rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.dash-game-tile .cap span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.dash-game-tile .cap small {
  display: block;
  margin-top: 0.2rem;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #71717a;
}

.dash-profile-user:not([hidden]) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.dash-panel-card {
  margin-top: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(249, 115, 22, 0.15);
  background: rgba(0, 0, 0, 0.4);
  padding: 1.75rem 2rem;
}

.dash-panel-card h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.dash-panel-card > p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.55;
}

.dash-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.dash-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(249, 115, 22, 0.25);
  background: transparent;
  color: #e4e4e7;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.dash-btn-outline:hover {
  background: rgba(249, 115, 22, 0.1);
}

.dash-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 0;
  background: linear-gradient(to bottom, #f97316, #c2410c);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(249, 115, 22, 0.3);
}

.dash-btn-primary:hover {
  filter: brightness(1.06);
}

.dash-table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
  border-radius: 1rem;
  border: 1px solid rgba(249, 115, 22, 0.2);
  background: rgba(0, 0, 0, 0.5);
}

.dash-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.75rem;
  color: #a1a1aa;
}

.dash-table th {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
  background: rgba(0, 0, 0, 0.4);
  font-weight: 600;
  text-transform: lowercase;
  white-space: nowrap;
}

.dash-table td {
  padding: 3rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #71717a;
}

.dash-tick-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.dash-tick-list li {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #d4d4d8;
}

.dash-tick-list li::before {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.45);
  background: rgba(249, 115, 22, 0.12);
}

.dash-promote-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .dash-promote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dash-promote-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dash-promote-card {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: border-color 0.3s;
}

.dash-promote-card:hover:not(.is-route-active) {
  border-color: rgba(249, 115, 22, 0.4);
}

.dash-promote-card.is-route-active {
  border-color: rgba(249, 115, 22, 0.55);
  background: rgba(249, 115, 22, 0.06);
  box-shadow: 0 0 0 1px rgba(249, 115, 22, 0.2);
}

.dash-promote-card.is-route-active .ring {
  border-color: rgba(251, 146, 60, 0.55);
  box-shadow:
    inset 0 0 26px rgba(249, 115, 22, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -16px 32px rgba(0, 0, 0, 0.42),
    0 8px 24px rgba(0, 0, 0, 0.45);
}

.dash-promote-card .foot {
  margin-top: 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(249, 115, 22, 0.2);
  background: rgba(0, 0, 0, 0.5);
  padding: 0.75rem 1rem;
}

.dash-promote-card .foot strong {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}

.dash-promote-card .foot span {
  display: block;
  margin-top: 0.25rem;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #71717a;
}

.dash-help-search {
  position: relative;
  max-width: 36rem;
  margin: 2rem auto 0;
}

.dash-help-search svg {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  color: #71717a;
  pointer-events: none;
}

.dash-help-search input {
  width: 100%;
  height: 2.75rem;
  padding-left: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(249, 115, 22, 0.15);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.875rem;
}

.dash-help-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .dash-help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .dash-help-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dash-help-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid rgba(249, 115, 22, 0.15);
  background: rgba(0, 0, 0, 0.35);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.dash-help-card:hover {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 0 32px rgba(249, 115, 22, 0.1);
}

.dash-help-card h4 {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.dash-help-card p {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #71717a;
}

.dash-help-card.is-muted {
  opacity: 0.35;
  pointer-events: none;
}

.dash-support-banner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 12, 12, 0.9);
}

@media (min-width: 640px) {
  .dash-support-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.dash-form label {
  display: block;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #d4d4d8;
}

.dash-form input,
.dash-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 0.875rem;
}

.dash-form textarea {
  min-height: 6rem;
  resize: vertical;
}

.dash-muted {
  font-size: 0.8125rem;
  color: #71717a;
  line-height: 1.55;
}

.dash-game-detail-inner {
  position: relative;
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(249, 115, 22, 0.25);
  background: rgba(0, 0, 0, 0.55);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .dash-game-detail-inner {
    padding: 2rem 2.5rem;
  }
}

.dash-reseller-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .dash-reseller-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* GitBook embed (guides.html + dashboard orders-guides; guides page may override in its <style>) */
.guides-doc-area {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 1rem clamp(0.5rem, 2.5vw, 1.5rem) 1.5rem;
  background: #07090d;
  scroll-margin-top: 5.5rem;
}

.guides-doc-area--dash {
  margin-top: 0.75rem;
  padding: 0.5rem 0 1rem;
  scroll-margin-top: 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 9, 13, 0.85);
}

.guides-https-note {
  width: min(1320px, 100%);
  max-width: 100%;
  margin: 0 auto 1rem;
  padding: 0.65rem 1rem;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(249, 115, 22, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  line-height: 1.45;
  display: none;
  text-align: center;
}

.guides-https-note.is-visible {
  display: block;
}

.guides-embed-shell {
  position: relative;
  width: min(1320px, 100%);
  max-width: 100%;
  margin: 0 auto;
  height: calc(100svh - 9.25rem);
  min-height: calc(100svh - 9.25rem);
  max-height: none;
  background: #0b0c0d;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

.dash-ai-shell {
  position: relative;
  overflow: hidden;
}

.dash-corner-ribbon {
  position: absolute;
  left: -34px;
  top: 18px;
  z-index: 6;
  min-width: 120px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.85rem;
  transform: rotate(-42deg);
  background: linear-gradient(to bottom, #fb923c, #ea580c);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.dash-tile-ribbon {
  position: absolute;
  left: -24px;
  top: 14px;
  z-index: 3;
  min-width: 92px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.55rem;
  transform: rotate(-42deg);
  background: linear-gradient(to bottom, #fb923c, #ea580c);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.dash-ai-icon-wrap {
  margin-top: 0.75rem;
  width: 86px;
  height: 86px;
  border-radius: 1rem;
  border: 1.5px dashed rgba(249, 115, 22, 0.42);
  background: linear-gradient(165deg, rgba(22, 22, 26, 0.98) 0%, rgba(8, 8, 11, 1) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -16px 32px rgba(0, 0, 0, 0.42),
    0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-ai-icon-wrap img {
  width: 2.3rem;
  height: 2.3rem;
  object-fit: contain;
  display: block;
}

.guides-doc-area--dash .guides-embed-shell {
  height: calc(100svh - 15.5rem);
  min-height: min(520px, calc(100svh - 13rem));
}

.guides-embed-mount {
  width: 100%;
  height: 100%;
  min-height: min(640px, calc(100svh - 10rem));
}

.guides-doc-area--dash .guides-embed-mount {
  min-height: min(480px, calc(100svh - 14rem));
}

.guides-frame {
  width: 100%;
  height: 100%;
  min-height: min(640px, calc(100svh - 10rem));
  border: 0;
  display: block;
  background: #0b0c0d;
}

.guides-doc-area--dash .guides-frame {
  min-height: min(480px, calc(100svh - 14rem));
}

.guides-embed-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  background: #0b0c0d;
}

.guides-embed-fallback[hidden] {
  display: none;
}

.guides-fallback-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fdba74;
  border: 1px solid rgba(249, 115, 22, 0.4);
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  background: rgba(249, 115, 22, 0.1);
}

@media (max-width: 900px) {
  .guides-embed-shell {
    width: min(100%, 1320px);
    height: calc(100svh - 8rem);
    min-height: calc(100svh - 8rem);
    max-height: none;
    border-radius: 0;
  }

  .guides-doc-area--dash .guides-embed-shell {
    height: calc(100svh - 12rem);
    min-height: min(440px, calc(100svh - 10rem));
  }
}
