:root {
  --bg: #050712;
  --bg-2: #090d1f;
  --panel: rgba(11, 16, 34, 0.72);
  --panel-2: rgba(16, 22, 45, 0.82);
  --line: rgba(111, 232, 255, 0.18);
  --line-2: rgba(139, 92, 246, 0.28);
  --text: #f8fbff;
  --muted: #c6d3e8;
  --soft: #8795b4;
  --brand: #58f5ff;
  --brand-2: #8b5cf6;
  --brand-3: #ff3d81;
  --blue: #58f5ff;
  --aqua: #58f5ff;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --max: 1320px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 15% 15%, rgba(88, 245, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 84% 12%, rgba(139, 92, 246, 0.11), transparent 30rem),
    radial-gradient(circle at 50% 100%, rgba(139, 92, 246, 0.08), transparent 30rem),
    var(--bg);
  background-size: 64px 64px, 64px 64px, auto, auto, auto, auto;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("/nexora-bg.png") center top / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}

#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

:focus-visible {
  outline: 2px solid var(--brand-2);
  outline-offset: 3px;
}

.promo-strip {
  position: sticky;
  top: 0;
  z-index: 150;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 7px 14px;
  background: linear-gradient(90deg, rgba(88, 245, 255, 0.18), rgba(139, 92, 246, 0.16));
  border-bottom: 1px solid var(--line);
  color: var(--brand-2);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.promo-strip strong {
  color: var(--text);
}

.site-nav {
  position: sticky;
  top: 34px;
  z-index: 140;
  height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 0 28px;
  background: rgba(13, 17, 16, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 150px;
}

.brand-logo {
  width: auto;
  height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.mobile-drawer a {
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active,
.mobile-drawer a:hover,
.mobile-drawer a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.discord-link,
.cart-button,
.icon-btn,
.menu-button,
.language-picker,
.language-picker select,
.secondary-btn,
.text-btn,
.close-btn {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  min-height: 40px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 850;
  font-size: 0.82rem;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.language-picker {
  padding: 0 8px 0 12px;
}

.language-picker span {
  color: var(--muted);
}

.language-picker select {
  min-height: 30px;
  padding: 0 8px;
  border-color: rgba(88, 245, 255, 0.22);
  background: rgba(7, 16, 13, 0.7);
  color: var(--text);
}

.discord-link {
  background: var(--blue);
  border-color: rgba(255, 255, 255, 0.12);
}

.cart-button strong {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #160604;
}

.menu-button {
  display: none;
}

.discord-link:hover,
.cart-button:hover,
.icon-btn:hover,
.menu-button:hover,
.secondary-btn:hover,
.close-btn:hover,
.text-btn:hover {
  transform: translateY(-1px);
  border-color: var(--line-2);
  background: rgba(255, 255, 255, 0.075);
}

.primary-btn,
.add-btn,
.login-modal button,
.floating-cart button,
.mini-bundle button,
.upsell-box button {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #180705;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 34px rgba(255, 107, 26, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.primary-btn:hover,
.add-btn:hover,
.login-modal button:hover,
.floating-cart button:hover,
.mini-bundle button:hover,
.upsell-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(255, 107, 26, 0.34);
}

.full {
  width: 100%;
}

.mobile-drawer {
  position: fixed;
  top: 106px;
  left: 12px;
  right: 12px;
  z-index: 130;
  display: none;
  flex-direction: column;
  padding: 10px;
  background: rgba(12, 7, 7, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-drawer.open {
  display: flex;
}

#app {
  min-height: 70vh;
}

.hero-section,
.page-hero,
.store-shell,
.stats-band,
.section-head,
.carousel-row,
.product-grid,
.offer-grid,
.activity-section,
.testimonial-grid,
.cta-grid,
.product-showcase,
.detail-grid,
.bundle-row,
.story-grid,
.timeline,
.team-grid,
.support-grid,
.faq-layout,
.news-grid,
.policy-layout,
.dashboard-grid,
.leaderboard,
.faq-group.standalone,
.cta-band {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.hero-section {
  min-height: calc(100vh - 106px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 34px;
  padding: 72px 0 48px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 16px;
  font-size: clamp(2.6rem, 6vw, 5.75rem);
  max-width: 920px;
}

h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
}

h3 {
  font-size: 1.05rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-copy p,
.page-hero p {
  margin-top: 20px;
  max-width: 680px;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.cart-trust span {
  padding: 8px 10px;
  border: 1px solid rgba(111, 232, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(111, 232, 255, 0.07);
  color: #dff9ff;
  font-size: 0.76rem;
  font-weight: 800;
}

.trust-row.block {
  align-items: flex-start;
}

.glass-card,
.hero-market-card,
.product-card,
.offer-card,
.info-card,
.support-card,
.news-card,
.stat-card,
.testimonial-grid article,
.dashboard-panel,
.policy-card,
.leaderboard,
.faq-group,
.mini-bundle {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.24);
}

.hero-market-card {
  padding: 24px;
  min-height: 420px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  position: relative;
}

.hero-market-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.32), transparent 65%);
}

.market-top,
.goal-mini > div,
.cart-summary > div,
.offer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.market-top span,
.goal-mini span {
  color: var(--soft);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.73rem;
  letter-spacing: 0.12em;
}

.market-top strong {
  color: #a7f3d0;
}

.player-ring {
  width: 230px;
  height: 230px;
  margin: 24px auto;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle, rgba(255, 107, 26, 0.18), transparent 58%),
    rgba(255, 255, 255, 0.035);
}

.player-ring span {
  display: block;
  font-size: 3.2rem;
  font-weight: 900;
}

.player-ring small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 12px;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--aqua));
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.stat-card {
  padding: 18px;
}

.stat-card span {
  display: block;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 1.2rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 76px;
  margin-bottom: 18px;
}

.section-head p {
  margin-top: 8px;
}

.section-head a {
  color: var(--brand-2);
  font-weight: 900;
}

.carousel-row,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.carousel-row {
  overflow-x: auto;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  grid-template-columns: none;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.product-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
}

.product-image {
  min-height: 190px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 107, 26, 0.2), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.product-image span,
.media-main span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  color: var(--brand-2);
  background: rgba(255, 107, 26, 0.1);
  font-weight: 950;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-row {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.badge-row strong,
.featured-badge {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--brand-2);
  color: #160604;
  font-size: 0.67rem;
  font-weight: 950;
  text-transform: uppercase;
}

.badge-row .sale {
  background: #fecaca;
  color: #7f1d1d;
}

.product-body {
  padding: 16px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-category {
  color: var(--brand-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-body h3 {
  margin-top: 8px;
}

.product-body p {
  margin-top: 9px;
  min-height: 66px;
  font-size: 0.88rem;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
}

.price-stack {
  display: grid;
  gap: 2px;
}

.price-stack s {
  color: var(--soft);
  font-size: 0.75rem;
}

.price-stack strong,
.product-price {
  font-size: 1.4rem;
  font-weight: 950;
}

.wishlist-btn {
  margin-top: 12px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 850;
}

.wishlist-btn.saved {
  color: #c4b5fd;
  border-color: rgba(196, 181, 253, 0.35);
  background: rgba(88, 101, 242, 0.12);
}

.cta-band {
  margin-top: 62px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 107, 26, 0.14), rgba(88, 101, 242, 0.12)),
    rgba(255, 255, 255, 0.035);
}

.cta-band p {
  margin-top: 8px;
}

.offer-grid,
.story-grid,
.team-grid,
.support-grid,
.news-grid,
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.offer-card,
.info-card,
.support-card,
.news-card,
.dashboard-panel {
  padding: 20px;
}

.offer-card h3,
.info-card h2,
.support-card h2,
.news-card h2,
.dashboard-panel h2 {
  margin-top: 10px;
}

.offer-card p,
.info-card p,
.support-card p,
.news-card p,
.dashboard-panel p {
  margin-top: 10px;
}

.offer-meta {
  margin: 18px 0;
  color: var(--muted);
}

.activity-section {
  margin-top: 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: start;
}

.purchase-feed {
  display: grid;
  gap: 10px;
}

.purchase-feed div,
.leader-row,
.timeline article,
.mini-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.purchase-feed span,
.purchase-feed em,
.leader-row span,
.mini-product em {
  color: var(--muted);
  font-style: normal;
}

.testimonial-grid,
.cta-grid,
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-grid article {
  padding: 20px;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
  margin-top: 12px;
}

.testimonial-grid span {
  color: var(--soft);
  font-size: 0.82rem;
}

.page-hero {
  padding: 76px 0 34px;
}

.page-hero.slim {
  min-height: 300px;
}

.page-hero.category-hero,
.page-hero.community-hero {
  min-height: 440px;
  display: grid;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.store-shell {
  display: grid;
  grid-template-columns: 286px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 60px;
}

.filter-panel {
  position: sticky;
  top: 124px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 8, 8, 0.86);
}

.filter-head,
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.category-pill {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 900;
  text-align: left;
}

.category-pill span {
  color: var(--soft);
}

.category-pill.active {
  border-color: var(--brand);
  background: rgba(255, 107, 26, 0.12);
}

.filter-block {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.filter-block.two {
  grid-template-columns: 1fr 1fr;
}

.filter-block label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.86rem;
}

.filter-block input,
.search-input,
.select-input,
.hero-search,
.login-modal input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  padding: 0 12px;
}

.filter-block input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--brand);
}

.filter-block label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 10px;
}

.secure-box {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(111, 232, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(111, 232, 255, 0.07);
}

.secure-box p {
  margin-top: 6px;
  font-size: 0.84rem;
}

.store-results {
  min-width: 0;
}

.toolbar {
  margin-bottom: 12px;
}

.toolbar-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 190px;
  gap: 10px;
  width: min(520px, 100%);
}

.result-meta {
  margin-bottom: 16px;
  color: var(--soft);
  font-weight: 800;
}

.product-showcase {
  padding: 60px 0 26px;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
}

.product-media {
  padding: 16px;
}

.media-main {
  min-height: 420px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 107, 26, 0.18), transparent 50%),
    rgba(255, 255, 255, 0.035);
}

.media-main span {
  width: 140px;
  height: 140px;
  font-size: 2.2rem;
}

.media-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.media-thumbs button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-weight: 850;
}

.product-info {
  align-self: center;
}

.product-info p {
  margin-top: 18px;
  max-width: 680px;
  font-size: 1.05rem;
}

.product-price {
  margin-top: 22px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.detail-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 24px;
}

.detail-grid article {
  padding: 22px;
}

.feature-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.review-card {
  margin-top: 12px;
  padding: 13px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.review-card span {
  display: block;
  margin-top: 4px;
  color: var(--brand-2);
  font-size: 0.78rem;
}

.bundle-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-bundle {
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.mini-bundle div,
.mini-product span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 107, 26, 0.12);
  color: var(--brand-2);
  font-weight: 950;
}

.timeline {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.support-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.faq-group,
.faq-group.standalone {
  padding: 18px;
}

.faq-item {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 54px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  text-align: left;
  font-weight: 850;
}

.faq-item p {
  display: none;
  padding: 0 14px 14px;
}

.faq-item.open p {
  display: block;
}

.hero-search {
  max-width: 520px;
  margin-top: 20px;
}

.news-card span {
  color: var(--brand-2);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-card small {
  display: block;
  margin-top: 18px;
  color: var(--soft);
}

.policy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: start;
}

.policy-nav {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.policy-nav a {
  padding: 10px;
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 850;
}

.policy-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
}

.policy-card {
  padding: 24px;
}

.policy-card h2 {
  margin-top: 22px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p {
  margin-top: 8px;
}

.dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.reward-tier {
  display: grid;
  gap: 8px;
}

.mini-product {
  margin-top: 8px;
}

.mini-product strong {
  flex: 1;
}

.leaderboard {
  padding: 20px;
  margin-top: 18px;
}

.leader-row {
  margin-top: 10px;
}

.loading-shell {
  min-height: 60vh;
  display: grid;
  place-items: center;
}

.loading-card,
.empty-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.floating-cart {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 120;
  transform: translate(-50%, 120%);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: rgba(9, 5, 5, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.floating-cart.visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.floating-cart span {
  color: var(--muted);
  font-weight: 850;
}

.cart-overlay,
.login-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: none;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
}

.cart-overlay.open,
.login-overlay.open {
  display: block;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 220;
  width: min(460px, 100%);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.24s ease;
  background: rgba(10, 6, 6, 0.98);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cart-panel.open {
  transform: translateX(0);
}

.panel-head {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.cart-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.cart-line > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(255, 107, 26, 0.12);
  color: var(--brand-2);
  font-weight: 950;
}

.cart-line small {
  display: block;
  color: var(--muted);
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-controls button {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.qty-controls em {
  color: var(--muted);
  font-style: normal;
  min-width: 20px;
  text-align: center;
}

.cart-empty {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.upsell-box {
  margin: 0 16px 16px;
}

.upsell-box:empty {
  display: none;
}

.upsell-box {
  padding: 14px;
  border: 1px solid rgba(88, 101, 242, 0.3);
  border-radius: var(--radius);
  background: rgba(88, 101, 242, 0.12);
}

.upsell-box p {
  margin: 6px 0 12px;
}

.cart-summary {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.cart-summary p {
  margin: 10px 0 14px;
  font-size: 0.84rem;
}

.login-overlay.open {
  display: grid;
  place-items: center;
  padding: 18px;
}

.login-modal {
  width: min(460px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 7, 7, 0.98);
  box-shadow: var(--shadow);
}

.login-modal p,
.login-modal label {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.login-modal input {
  margin-top: 8px;
}

.login-modal button {
  margin-top: 14px;
}

.toast-container {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 260;
  display: grid;
  gap: 8px;
  width: min(360px, calc(100% - 36px));
}

.toast {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 7, 7, 0.96);
  box-shadow: var(--shadow);
  color: var(--text);
  font-weight: 800;
  animation: toastIn 0.22s ease both;
}

.toast.info {
  border-color: rgba(88, 101, 242, 0.36);
}

.toast.error {
  border-color: rgba(220, 38, 38, 0.44);
}

.toast.leaving {
  animation: toastOut 0.22s ease both;
}

.support-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 180;
  width: 70px;
  height: 70px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2), var(--brand-3));
  color: #fff7ec;
  box-shadow: 0 18px 46px rgba(88, 245, 255, 0.24);
  font-size: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.support-launcher::before,
.support-launcher::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.support-launcher::before {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.support-launcher::after {
  width: 13px;
  height: 13px;
  right: 18px;
  bottom: 17px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.support-launcher:hover {
  transform: translateY(-3px) scale(1.03);
}

.support-launcher.hidden,
.support-launcher[hidden],
.support-widget[hidden] {
  display: none;
}

.support-widget {
  position: fixed;
  right: 22px;
  bottom: 98px;
  z-index: 230;
  width: min(398px, calc(100vw - 24px));
  height: min(650px, calc(100vh - 126px));
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 107, 26, 0.48);
  border-radius: 16px;
  background: #f8fafc;
  color: #0f172a;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.support-widget.open {
  display: flex;
}

.support-top {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px 0;
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.95), rgba(249, 115, 22, 0.92)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 8px, transparent 8px 16px);
}

.support-tabs {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(92, 36, 8, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.support-tabs button,
.support-close {
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: transparent;
  color: #fff7ec;
  font-weight: 900;
}

.support-tabs button.active {
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(124, 45, 18, 0.28);
}

.support-close {
  position: absolute;
  right: 10px;
  top: 12px;
  width: 42px;
  padding: 0;
  font-size: 0;
}

.support-close::before,
.support-close::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  top: 17px;
  height: 2px;
  background: currentColor;
}

.support-close::before {
  transform: rotate(45deg);
}

.support-close::after {
  transform: rotate(-45deg);
}

.support-hero {
  padding: 6px 22px 18px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.95), rgba(249, 115, 22, 0.92)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 8px, transparent 8px 16px);
  color: #fff;
}

.support-avatars {
  display: flex;
  justify-content: center;
  margin: 4px 0 12px;
}

.support-avatars span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-left: -6px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 950;
}

.support-avatars span:first-child {
  margin-left: 0;
  background: #7c3aed;
}

.support-avatars span:nth-child(2) {
  background: #334155;
}

.support-avatars span:nth-child(3) {
  background: #f8fafc;
  color: #64748b;
}

.support-hero h2 {
  font-size: 1rem;
  letter-spacing: 0;
}

.support-hero p {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: #fff7ed;
  font-size: 0.88rem;
}

.online-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #58f5ff;
  box-shadow: 0 0 0 4px rgba(88, 245, 255, 0.18);
}

.support-pane {
  display: none;
  min-height: 0;
  flex: 1;
}

.support-pane.active {
  display: flex;
  flex-direction: column;
}

.support-thread {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agent-message,
.user-message {
  max-width: 84%;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.agent-message {
  align-self: flex-start;
  background: #eef2f7;
  color: #0f172a;
  border-top-left-radius: 4px;
}

.user-message {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #170704;
  border-top-right-radius: 4px;
  font-weight: 700;
}

.support-form {
  margin: 0 8px 8px;
  padding: 10px;
  border: 2px solid var(--brand);
  border-radius: 16px;
  background: #fff;
}

.support-form textarea {
  width: 100%;
  min-height: 76px;
  max-height: 140px;
  resize: vertical;
  border: 0;
  outline: none;
  color: #0f172a;
}

.support-form > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.support-form span {
  color: #94a3b8;
  font-size: 0.72rem;
}

.support-form button {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: #d1d5db;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 900;
}

.article-search {
  padding: 14px 14px 8px;
}

.article-search input {
  width: 100%;
  min-height: 42px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0 14px;
  background: #fff;
  color: #0f172a;
}

.support-articles {
  flex: 1;
  overflow: auto;
  padding: 8px 14px 16px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.support-article {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  color: #0f172a;
  text-align: left;
}

.support-article span {
  display: block;
  color: #58f5ff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-article strong {
  display: block;
  margin-top: 4px;
}

.support-empty {
  padding: 18px;
  border-radius: 12px;
  background: #eef2f7;
  color: #64748b;
}

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

@keyframes toastOut {
  to { opacity: 0; transform: translateY(10px); }
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 90px auto 0;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin-top: 6px;
  max-width: 620px;
  font-size: 0.84rem;
}

.site-footer a {
  display: inline-flex;
  margin-top: 12px;
  margin-right: 12px;
  color: var(--brand-2);
  font-weight: 850;
  font-size: 0.84rem;
}

.site-footer img {
  max-width: 240px;
  opacity: 0.88;
}

@media (max-width: 1120px) {
  .site-nav {
    grid-template-columns: auto 1fr;
  }

  .nav-links {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-section,
  .product-showcase,
  .activity-section,
  .store-shell,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel,
  .policy-nav {
    position: static;
  }

  .stats-band,
  .carousel-row,
  .product-grid,
  .product-grid.compact,
  .offer-grid,
  .story-grid,
  .team-grid,
  .support-grid,
  .faq-layout,
  .news-grid,
  .dashboard-grid,
  .bundle-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
  }

  .promo-strip {
    justify-content: space-between;
    font-size: 0.64rem;
  }

  .site-nav {
    top: 34px;
    height: 64px;
    padding: 0 12px;
    gap: 10px;
  }

  .brand {
    min-width: 92px;
  }

  .brand-logo {
    height: 48px;
  }

  .discord-link,
  .icon-btn {
    display: none;
  }

  .cart-button,
  .menu-button {
    min-height: 38px;
    padding: 0 10px;
  }

  .mobile-drawer {
    top: 98px;
  }

  .hero-section,
  .page-hero,
  .store-shell,
  .stats-band,
  .section-head,
  .carousel-row,
  .product-grid,
  .offer-grid,
  .activity-section,
  .testimonial-grid,
  .cta-grid,
  .product-showcase,
  .detail-grid,
  .bundle-row,
  .story-grid,
  .timeline,
  .team-grid,
  .support-grid,
  .faq-layout,
  .news-grid,
  .policy-layout,
  .dashboard-grid,
  .leaderboard,
  .faq-group.standalone,
  .cta-band {
    width: min(100% - 24px, var(--max));
  }

  .hero-section {
    min-height: auto;
    padding-top: 48px;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3.6rem);
  }

  .hero-market-card {
    min-height: 340px;
  }

  .player-ring {
    width: 190px;
    height: 190px;
  }

  .stats-band,
  .carousel-row,
  .product-grid,
  .product-grid.compact,
  .offer-grid,
  .story-grid,
  .team-grid,
  .support-grid,
  .faq-layout,
  .news-grid,
  .dashboard-grid,
  .bundle-row,
  .testimonial-grid,
  .cta-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .toolbar,
  .section-head,
  .cta-band,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar-controls {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .filter-block.two {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 170px;
  }

  .media-main {
    min-height: 280px;
  }

  .mini-bundle,
  .cart-line {
    grid-template-columns: auto 1fr;
  }

  .mini-bundle button,
  .qty-controls {
    grid-column: 1 / -1;
  }

  .floating-cart {
    left: 12px;
    right: 12px;
    bottom: 12px;
    transform: translateY(120%);
    justify-content: space-between;
  }

  .floating-cart.visible {
    transform: translateY(0);
  }

  .toast-container {
    right: 12px;
    bottom: 82px;
    width: calc(100% - 24px);
  }

  .support-launcher {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
  }

  .support-widget {
    inset: auto 8px 8px 8px;
    width: auto;
    height: min(680px, calc(100vh - 42px));
    border-radius: 14px;
  }

  .support-top {
    min-height: 58px;
  }

  .support-hero {
    padding: 4px 16px 14px;
  }

  .support-avatars span {
    width: 38px;
    height: 38px;
  }

  .site-footer img {
    max-width: 200px;
  }
}

/* Nexora cursor and support desk */
@media (pointer: fine) {
  body,
  body * {
    cursor: none !important;
  }

  .cursor-core,
  .cursor-trail {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.18s ease, width 0.18s ease, height 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  }

  .cursor-core {
    width: 10px;
    height: 10px;
    background: var(--brand);
    box-shadow: 0 0 18px rgba(88, 245, 255, 0.9), 0 0 2px #fff;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  }

  .cursor-trail {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(88, 245, 255, 0.62);
    background:
      linear-gradient(135deg, rgba(88, 245, 255, 0.08), transparent),
      radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 58%);
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    mix-blend-mode: screen;
  }

  .cursor-core.visible,
  .cursor-trail.visible {
    opacity: 1;
  }

  body.cursor-link .cursor-core {
    width: 16px;
    height: 16px;
    background: var(--brand-2);
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.9);
  }

  body.cursor-link .cursor-trail {
    width: 48px;
    height: 48px;
    border-color: rgba(139, 92, 246, 0.72);
  }
}

.support-launcher {
  border: 1px solid rgba(88, 245, 255, 0.48);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(139, 92, 246, 0.38), transparent 42%),
    conic-gradient(from 90deg, rgba(88, 245, 255, 0.2), rgba(88, 245, 255, 0.9), rgba(139, 92, 246, 0.7), rgba(88, 245, 255, 0.2));
  color: #07100d;
  clip-path: polygon(50% 0, 100% 22%, 100% 78%, 50% 100%, 0 78%, 0 22%);
  box-shadow: 0 0 34px rgba(88, 245, 255, 0.28), 0 20px 58px rgba(0, 0, 0, 0.38);
}

.support-launcher::before {
  width: 30px;
  height: 24px;
  border: 2px solid #07100d;
  border-radius: 3px;
  background: transparent;
  clip-path: none;
}

.support-launcher::after {
  width: 9px;
  height: 9px;
  right: 19px;
  bottom: 19px;
  background: #07100d;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.support-widget {
  border: 1px solid rgba(88, 245, 255, 0.46);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 34, 0.98), rgba(5, 7, 18, 0.98)),
    repeating-linear-gradient(0deg, rgba(88, 245, 255, 0.035), rgba(88, 245, 255, 0.035) 1px, transparent 1px, transparent 7px);
  color: var(--text);
  clip-path: polygon(0 0, 94% 0, 100% 6%, 100% 100%, 6% 100%, 0 94%);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.08), 0 32px 90px rgba(0, 0, 0, 0.58);
}

.support-widget::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(88, 245, 255, 0.1), transparent 32%, transparent 70%, rgba(139, 92, 246, 0.08)),
    radial-gradient(circle at 18% 8%, rgba(88, 245, 255, 0.22), transparent 28%);
}

.support-top,
.support-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(88, 245, 255, 0.15), rgba(139, 92, 246, 0.09)),
    rgba(7, 16, 13, 0.92);
  color: var(--text);
}

.support-top {
  min-height: 70px;
  border-bottom: 1px solid rgba(88, 245, 255, 0.18);
}

.support-tabs {
  border-radius: 0;
  border: 1px solid rgba(88, 245, 255, 0.22);
  background: rgba(0, 0, 0, 0.2);
  clip-path: polygon(0 0, 94% 0, 100% 50%, 94% 100%, 0 100%);
}

.support-tabs button,
.support-close {
  border-radius: 0;
  color: #dffbf2;
}

.support-tabs button.active {
  background: linear-gradient(135deg, rgba(88, 245, 255, 0.24), rgba(139, 92, 246, 0.16));
  color: #ffffff;
  box-shadow: inset 0 -2px 0 var(--brand);
}

.support-close {
  border: 1px solid rgba(88, 245, 255, 0.18);
  background: rgba(0, 0, 0, 0.16);
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%);
}

.support-close::before,
.support-close::after {
  background: var(--brand);
}

.support-hero {
  padding-top: 10px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.14);
}

.support-avatars span {
  border: 1px solid rgba(88, 245, 255, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(88, 245, 255, 0.88), rgba(139, 92, 246, 0.72));
  color: #07100d;
  transform: rotate(45deg);
  box-shadow: 0 0 18px rgba(88, 245, 255, 0.22);
}

.support-avatars span:nth-child(2),
.support-avatars span:nth-child(4) {
  background: linear-gradient(135deg, rgba(12, 20, 58, 1), rgba(88, 245, 255, 0.32));
  color: #dffbf2;
}

.support-avatars span:nth-child(3) {
  background: #07100d;
  color: var(--brand);
}

.support-hero h2 {
  margin-top: 10px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.support-hero p {
  color: #cbd7f4;
}

.support-thread {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(88, 245, 255, 0.08), transparent 30%),
    rgba(5, 7, 18, 0.72);
}

.agent-message,
.user-message {
  border-radius: 0;
  border: 1px solid rgba(88, 245, 255, 0.18);
  font-family: "JetBrains Mono", "Consolas", monospace;
  font-size: 0.84rem;
  clip-path: polygon(0 0, 96% 0, 100% 14%, 100% 100%, 4% 100%, 0 86%);
}

.agent-message {
  background: rgba(13, 15, 38, 0.92);
  color: #dffbf2;
  border-top-left-radius: 0;
}

.agent-message::before {
  content: "NX_SUPPORT";
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.user-message {
  background: linear-gradient(135deg, rgba(88, 245, 255, 0.92), rgba(139, 92, 246, 0.84));
  color: #07100d;
  border-color: rgba(139, 92, 246, 0.36);
}

.support-form {
  margin: 0 10px 10px;
  border: 1px solid rgba(88, 245, 255, 0.46);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(88, 245, 255, 0.06), transparent),
    rgba(7, 16, 13, 0.96);
  clip-path: polygon(0 0, 96% 0, 100% 18%, 100% 100%, 4% 100%, 0 82%);
}

.support-form textarea {
  background: transparent;
  color: var(--text);
}

.support-form textarea::placeholder {
  color: rgba(201, 214, 206, 0.72);
}

.support-form span {
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.support-form button {
  border-radius: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #07100d;
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
}

.article-search input,
.support-article {
  border-radius: 0;
  border-color: rgba(88, 245, 255, 0.18);
  background: rgba(7, 16, 13, 0.78);
  color: var(--text);
}

.support-article span {
  color: var(--brand-2);
}

.support-article strong {
  color: #ffffff;
}

@media (max-width: 720px) {
  .support-widget {
    clip-path: none;
  }
}

/* Simplified buyer flow */
.nova-gateway.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
  margin-bottom: 18px;
}

.nova-gateway.compact .nova-gateway-card {
  min-height: 128px;
  padding: 16px;
}

.nova-gateway.compact .nova-gateway-card h2 {
  margin: 8px 0 12px;
}

.nova-signal-strip.compact {
  justify-content: center;
  gap: clamp(24px, 9vw, 140px);
}

.secure-box.compact {
  padding: 12px;
}

.nova-faq-console {
  grid-template-columns: 1fr;
  padding-top: 36px;
}

.nova-faq-console > div {
  min-height: 250px;
  display: grid;
  align-content: center;
}

.nova-faq-console h1 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
}

.nova-faq-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1120px) {
  .nova-gateway.compact,
  .nova-faq-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* Nexora neon marketplace layer */
:root {
  --bg: #050718;
  --bg-2: #0b102b;
  --panel: rgba(8, 13, 36, 0.82);
  --panel-strong: rgba(10, 18, 50, 0.94);
  --border: rgba(98, 245, 255, 0.28);
  --border-strong: rgba(135, 93, 255, 0.56);
  --text: #f7fbff;
  --muted: #a9b8e8;
  --cyan: #62f5ff;
  --blue: #4e7cff;
  --violet: #865dff;
  --pink: #ff5df1;
  --gold: #ffd166;
  --success: #55f0ad;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

body {
  background:
    radial-gradient(circle at 76% 16%, rgba(98, 245, 255, 0.2), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(134, 93, 255, 0.28), transparent 32%),
    url("/nexora-bg.png") center top / cover fixed,
    var(--bg);
  color: var(--text);
}

body::before {
  background:
    linear-gradient(90deg, rgba(98, 245, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(98, 245, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 82%);
}

.promo-strip {
  background: linear-gradient(90deg, rgba(98, 245, 255, 0.18), rgba(134, 93, 255, 0.18));
  border-bottom: 1px solid rgba(98, 245, 255, 0.22);
  color: var(--cyan);
}

.site-nav {
  background: rgba(5, 7, 24, 0.78);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.brand-logo {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.nav-links a,
.mobile-drawer a,
.language-picker,
.icon-btn,
.cart-button,
.menu-button,
.discord-link {
  border-radius: 8px;
}

.nav-links a.active,
.nav-links a:hover,
.mobile-drawer a.active {
  background: linear-gradient(135deg, rgba(98, 245, 255, 0.14), rgba(134, 93, 255, 0.2));
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(98, 245, 255, 0.22);
}

.discord-link,
.primary-btn,
.add-btn,
.cart-button strong,
.support-launcher {
  background: linear-gradient(135deg, var(--cyan), var(--blue) 48%, var(--violet));
  color: #050718;
  box-shadow: 0 14px 34px rgba(78, 124, 255, 0.34);
}

.secondary-btn,
.text-btn,
.category-pill,
.nova-chip,
.select-input,
.search-input,
input,
select,
textarea {
  background: rgba(7, 13, 36, 0.76);
  border-color: var(--border);
  color: var(--text);
}

.nova-store-hero {
  min-height: 610px;
  padding: 74px min(6vw, 76px) 130px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.74fr);
  gap: 28px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(98, 245, 255, 0.22);
}

.nova-store-hero::before {
  content: "";
  position: absolute;
  inset: 22px min(4vw, 52px) 74px;
  background:
    linear-gradient(135deg, rgba(7, 13, 36, 0.9), rgba(12, 23, 66, 0.58)),
    radial-gradient(circle at 88% 16%, rgba(98, 245, 255, 0.24), transparent 28%);
  border: 1px solid var(--border);
  clip-path: polygon(0 0, 92% 0, 100% 18%, 100% 86%, 94% 100%, 6% 100%, 0 84%);
  box-shadow: var(--shadow);
  z-index: -1;
}

.nova-store-hero::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -110px;
  top: -120px;
  border: 1px solid rgba(98, 245, 255, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(134, 93, 255, 0.16), 0 0 120px rgba(98, 245, 255, 0.08);
  z-index: -1;
}

.nova-hero-copy {
  max-width: 760px;
  align-self: center;
}

.eyebrow {
  color: var(--cyan);
  letter-spacing: 0.08em;
}

.nova-hero-copy h1 {
  max-width: 850px;
  font-size: clamp(58px, 8.4vw, 118px);
  line-height: 0.88;
  text-transform: uppercase;
  text-shadow: 0 0 36px rgba(98, 245, 255, 0.14);
}

.nova-hero-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.nova-quick-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nova-chip {
  min-height: 44px;
  border: 1px solid var(--border);
  color: var(--text);
}

.nova-chip.active,
.category-pill.active {
  background: linear-gradient(135deg, rgba(98, 245, 255, 0.24), rgba(134, 93, 255, 0.26));
  border-color: rgba(98, 245, 255, 0.78);
}

.nova-drop-panel {
  background:
    linear-gradient(145deg, rgba(11, 17, 48, 0.94), rgba(30, 25, 78, 0.88)),
    radial-gradient(circle at 50% 20%, rgba(98, 245, 255, 0.18), transparent 34%);
  border: 1px solid rgba(98, 245, 255, 0.34);
  border-radius: 16px;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255,255,255,0.04);
}

.nexora-preview-stage {
  position: relative;
  min-height: 420px;
  align-self: center;
  isolation: isolate;
}

.nexora-preview-stage::before {
  content: "";
  position: absolute;
  inset: 8% -4% 4% 10%;
  background: radial-gradient(circle, rgba(98, 245, 255, 0.26), rgba(134, 93, 255, 0.16) 48%, transparent 72%);
  filter: blur(8px);
  z-index: -1;
}

.nexora-desktop-frame {
  position: absolute;
  left: 0;
  top: 34px;
  width: min(96%, 620px);
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(8, 13, 36, 0.96), rgba(19, 24, 74, 0.94));
  border: 1px solid rgba(98, 245, 255, 0.36);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.44), 0 0 60px rgba(78, 124, 255, 0.22);
  transform: perspective(900px) rotateY(-7deg) rotateX(2deg);
}

.nexora-browser-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(98, 245, 255, 0.14);
}

.nexora-browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(98, 245, 255, 0.8);
}

.nexora-browser-bar span:nth-child(2) {
  background: var(--violet);
}

.nexora-browser-bar span:nth-child(3) {
  background: var(--pink);
}

.nexora-browser-bar strong {
  margin-left: auto;
  color: var(--cyan);
}

.nexora-preview-hero {
  margin-top: 14px;
  min-height: 136px;
  padding: 24px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(98, 245, 255, 0.18), rgba(134, 93, 255, 0.24)),
    radial-gradient(circle at 76% 28%, rgba(255, 93, 241, 0.2), transparent 34%),
    #071025;
  border: 1px solid rgba(98, 245, 255, 0.22);
}

.nexora-preview-hero span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.nexora-preview-hero h2 {
  margin: 8px 0 14px;
  max-width: 340px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.92;
  text-transform: uppercase;
}

.nexora-preview-hero button,
.nexora-phone-frame button {
  border: 0;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 950;
  color: #050718;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.nexora-mini-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.nexora-mini-products article {
  min-height: 122px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(5, 8, 26, 0.78);
  border: 1px solid rgba(98, 245, 255, 0.18);
}

.nexora-mini-products i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #050718;
  font-style: normal;
  font-weight: 950;
}

.nexora-mini-products strong,
.nexora-mini-products em {
  display: block;
}

.nexora-mini-products strong {
  font-size: 13px;
}

.nexora-mini-products em {
  margin-top: 6px;
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.nexora-phone-frame {
  position: absolute;
  right: 0;
  top: 8px;
  width: 190px;
  min-height: 364px;
  padding: 44px 16px 18px;
  border-radius: 34px;
  background: linear-gradient(145deg, #06091d, #121a48);
  border: 9px solid #10172f;
  box-shadow: 0 30px 90px rgba(0,0,0,0.5), 0 0 42px rgba(98,245,255,0.18);
  transform: rotate(6deg);
}

.nexora-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 72px;
  height: 12px;
  border-radius: 99px;
  background: #02040d;
  transform: translateX(-50%);
}

.nexora-phone-frame span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.nexora-phone-frame h3 {
  margin: 10px 0 18px;
  font-size: 24px;
  line-height: 1;
}

.nexora-phone-icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 0 auto 18px;
  border-radius: 28px;
  color: #050718;
  font-size: 30px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
}

.nexora-phone-frame button {
  width: 100%;
}

.nexora-hero-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 12px;
  margin-top: 22px;
  max-width: 100%;
}

.nexora-hero-checks span {
  position: relative;
  min-width: 0;
  padding: 10px 12px 10px 34px;
  border-radius: 9px;
  background: rgba(7, 13, 36, 0.62);
  border: 1px solid rgba(98, 245, 255, 0.2);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.nexora-hero-checks span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(98, 245, 255, 0.72);
  transform: translateY(-50%);
}

.nexora-feature-row,
.nexora-template-band {
  width: min(100% - 32px, 1320px);
  margin: 28px auto;
}

.nexora-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.nexora-feature-row article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 14px;
  background: rgba(7, 13, 36, 0.76);
  border: 1px solid rgba(98, 245, 255, 0.2);
}

.nexora-feature-row article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(98, 245, 255, 0.22), rgba(134, 93, 255, 0.22));
  color: var(--cyan);
  font-size: 0;
}

.nexora-feature-row article > span::first-letter {
  font-size: 16px;
}

.nexora-feature-row strong {
  display: block;
  color: var(--text);
}

.nexora-feature-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.nexora-template-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(7, 13, 36, 0.82);
  border: 1px solid rgba(98, 245, 255, 0.2);
}

.nexora-template-band h2 {
  margin: 8px 0;
  font-size: clamp(28px, 4vw, 44px);
}

.nexora-template-band p {
  margin: 0;
  color: var(--muted);
}

.nexora-payment-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.nexora-payment-pills span {
  min-height: 58px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(5, 8, 26, 0.74);
  border: 1px solid rgba(98, 245, 255, 0.14);
}

.nexora-payment-pills strong,
.nexora-payment-pills em {
  display: block;
}

.nexora-payment-pills strong {
  color: var(--text);
  font-size: 13px;
}

.nexora-payment-pills em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.nexora-store-wall {
  width: min(100% - 32px, 1320px);
  margin: 28px auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 16px;
}

.nexora-featured-package,
.nexora-live-column > div,
.nexora-studio-ribbon,
.nexora-final-cta {
  border: 1px solid rgba(98, 245, 255, 0.22);
  background:
    linear-gradient(135deg, rgba(7, 13, 36, 0.88), rgba(19, 29, 78, 0.68)),
    radial-gradient(circle at 86% 18%, rgba(98, 245, 255, 0.22), transparent 34%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.nexora-featured-package {
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 22px;
  padding: 30px;
  clip-path: polygon(0 0, 96% 0, 100% 14%, 100% 100%, 0 100%);
}

.nexora-featured-package h2 {
  margin: 8px 0 10px;
  max-width: 620px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.95;
  text-transform: uppercase;
}

.nexora-featured-package p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
}

.nexora-featured-price {
  display: grid;
  gap: 14px;
  justify-items: stretch;
}

.nexora-featured-price span {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  justify-self: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #62f5ff, #865dff);
  color: #050718;
  font-size: 34px;
  font-weight: 1000;
  box-shadow: 0 20px 60px rgba(98, 245, 255, 0.24);
}

.nexora-featured-price strong {
  color: var(--cyan);
  font-size: 28px;
  text-align: center;
}

.nexora-live-column {
  display: grid;
  gap: 16px;
}

.nexora-live-column > div {
  min-height: 132px;
  padding: 22px;
  border-radius: 0;
}

.nexora-top-customer strong,
.nexora-offer-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 24px;
}

.nexora-top-customer em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-style: normal;
}

.nexora-offer-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nexora-offer-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.nexora-studio-ribbon {
  width: min(100% - 32px, 1320px);
  margin: -18px auto 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
}

.nexora-studio-ribbon span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(5, 8, 26, 0.5);
  color: var(--text);
  font-weight: 900;
  text-align: center;
}

.nexora-final-cta {
  width: min(100% - 32px, 1320px);
  margin: 28px auto 48px;
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
  clip-path: polygon(0 0, 94% 0, 100% 22%, 100% 100%, 6% 100%, 0 78%);
}

.nexora-final-cta h2 {
  max-width: 780px;
  margin: 10px auto;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
}

.nexora-final-cta p {
  max-width: 620px;
  margin: 0 auto 22px;
  color: var(--muted);
}

.nova-reactor {
  background: radial-gradient(circle, rgba(98, 245, 255, 0.95), rgba(78, 124, 255, 0.72) 45%, rgba(134, 93, 255, 0.22) 72%);
  box-shadow: 0 0 70px rgba(98, 245, 255, 0.34);
}

.nova-reactor span {
  background: #050718;
  color: var(--cyan);
}

.nova-signal-strip {
  left: min(6vw, 76px);
  right: min(6vw, 76px);
  bottom: 36px;
  background: rgba(5, 8, 26, 0.88);
  border: 1px solid rgba(98, 245, 255, 0.24);
  color: var(--muted);
}

.nova-signal-strip strong {
  color: var(--cyan);
}

.nova-gateway,
.nova-market-layout,
.detail-grid,
.support-grid,
.dashboard-grid,
.news-grid,
.story-grid,
.team-grid,
.nova-sector-grid,
.nova-staff-grid {
  max-width: 1320px;
}

.nova-gateway-card,
.filter-panel,
.store-results,
.product-card,
.offer-card,
.info-card,
.support-card,
.dashboard-panel,
.news-card,
.stat-card,
.glass-card,
.faq-group,
.policy-card,
.cart-panel,
.support-widget,
.nova-leaderboard,
.nova-staff-grid article {
  background: rgba(7, 13, 36, 0.78);
  border: 1px solid rgba(98, 245, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
  backdrop-filter: blur(16px);
}

.nova-gateway-card h2,
.product-card h3,
.support-card h2,
.faq-group h2,
.page-hero h1 {
  color: var(--text);
}

.product-card {
  border-radius: 16px;
  overflow: hidden;
}

.product-card:hover {
  border-color: rgba(98, 245, 255, 0.54);
  transform: translateY(-4px);
}

.product-image {
  background:
    linear-gradient(145deg, rgba(98, 245, 255, 0.16), rgba(134, 93, 255, 0.22)),
    rgba(5, 7, 24, 0.74);
}

.product-image > span,
.media-main span {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #050718;
}

.badge-row strong,
.offer-card .eyebrow {
  background: rgba(98, 245, 255, 0.14);
  border: 1px solid rgba(98, 245, 255, 0.32);
  color: var(--cyan);
}

.price-stack strong,
.product-price,
.nova-drop-top strong {
  color: var(--gold);
}

.toolbar,
.filter-head,
.panel-head {
  border-color: rgba(98, 245, 255, 0.16);
}

.page-hero,
.nova-faq-console,
.nova-community-hero,
.category-hero {
  background:
    linear-gradient(135deg, rgba(7, 13, 36, 0.9), rgba(16, 24, 70, 0.72)),
    radial-gradient(circle at 82% 18%, rgba(98, 245, 255, 0.2), transparent 34%);
  border: 1px solid rgba(98, 245, 255, 0.24);
  box-shadow: var(--shadow);
}

.support-widget {
  background: rgba(6, 10, 32, 0.96);
  border-color: rgba(98, 245, 255, 0.36);
}

.nexora-support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 28px;
}

.nexora-support-preview {
  min-height: 190px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(98, 245, 255, 0.18), rgba(134, 93, 255, 0.24)),
    #071025;
  border: 1px solid rgba(98, 245, 255, 0.3);
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
}

.nexora-support-preview span,
.nexora-support-preview strong,
.nexora-support-preview em {
  display: block;
}

.nexora-support-preview span {
  color: var(--cyan);
  font-weight: 950;
  text-transform: uppercase;
}

.nexora-support-preview strong {
  margin: 20px 0 12px;
  font-size: 52px;
  line-height: 1;
}

.nexora-support-preview em {
  color: var(--muted);
  font-style: normal;
}

.support-hero {
  background:
    linear-gradient(135deg, rgba(98, 245, 255, 0.18), rgba(134, 93, 255, 0.28)),
    #0a1232;
}

.support-avatars span {
  background: #071025;
  color: var(--cyan);
  border-color: rgba(98, 245, 255, 0.34);
}

.cursor-core {
  background: var(--cyan);
}

.cursor-trail {
  border-color: rgba(98, 245, 255, 0.56);
}

.site-footer {
  background: rgba(5, 7, 24, 0.9);
  border-top: 1px solid rgba(98, 245, 255, 0.24);
}

@media (max-width: 980px) {
  .nova-store-hero {
    grid-template-columns: 1fr;
    padding: 46px 18px 118px;
  }

  .nexora-preview-stage {
    min-height: 530px;
  }

  .nexora-desktop-frame {
    width: 100%;
    transform: none;
  }

  .nexora-phone-frame {
    right: 16px;
    top: 210px;
  }

  .nexora-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nexora-store-wall,
  .nexora-featured-package {
    grid-template-columns: 1fr;
  }

  .nexora-featured-price {
    max-width: 240px;
  }

  .nexora-template-band,
  .nexora-support-hero {
    grid-template-columns: 1fr;
  }

  .nexora-payment-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nova-store-hero::before {
    inset: 12px 10px 70px;
  }

  .nova-drop-panel {
    max-width: none;
  }

  .nova-signal-strip {
    left: 18px;
    right: 18px;
    grid-template-columns: repeat(3, 1fr);
  }

  .nova-hero-copy h1 {
    font-size: clamp(36px, 12vw, 46px);
    line-height: 0.94;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .nova-hero-copy p {
    font-size: 16px;
  }

  .nova-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nova-chip {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
  }
}

@media (max-width: 620px) {
  .brand-logo {
    width: 138px;
  }

  .nova-signal-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 18px;
  }

  .nova-store-hero {
    overflow: hidden;
  }

  .nova-drop-panel {
    width: 100%;
    min-width: 0;
  }

  .nexora-preview-stage {
    min-height: 392px;
  }

  .nexora-desktop-frame {
    left: 0;
    top: 0;
    padding: 10px;
  }

  .nexora-preview-hero {
    min-height: 116px;
    padding: 16px;
  }

  .nexora-preview-hero h2 {
    font-size: 30px;
  }

  .nexora-mini-products {
    grid-template-columns: 1fr;
  }

  .nexora-mini-products article:nth-child(n+2) {
    display: none;
  }

  .nexora-phone-frame {
    width: 136px;
    min-height: 260px;
    right: 4px;
    top: 150px;
    padding: 36px 10px 12px;
    border-width: 7px;
    border-radius: 28px;
  }

  .nexora-phone-frame h3 {
    font-size: 18px;
  }

  .nexora-phone-icon {
    width: 78px;
    height: 78px;
    font-size: 20px;
  }

  .nexora-feature-row,
  .nexora-payment-pills {
    grid-template-columns: 1fr;
  }

  .nexora-store-wall {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
  }

  .nexora-featured-package {
    min-height: 0;
    padding: 22px;
    clip-path: none;
  }

  .nexora-featured-package h2 {
    font-size: clamp(28px, 10vw, 40px);
  }

  .nexora-featured-price {
    max-width: none;
    width: 100%;
  }

  .nexora-featured-price span {
    width: 92px;
    height: 92px;
    border-radius: 18px;
    font-size: 26px;
  }

  .nexora-studio-ribbon {
    width: calc(100% - 20px);
    grid-template-columns: 1fr 1fr;
  }

  .nexora-studio-ribbon span {
    min-height: 58px;
    font-size: 13px;
  }

  .nexora-final-cta {
    width: calc(100% - 20px);
    clip-path: none;
    text-align: left;
  }

  .nexora-final-cta h2 {
    font-size: clamp(30px, 11vw, 44px);
  }

  .nexora-hero-checks {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nexora-hero-checks span {
    width: 100%;
    padding-block: 11px;
    white-space: normal;
  }

  .nexora-template-band {
    padding: 18px;
  }

  .nova-drop-top {
    gap: 12px;
  }

  .nova-drop-top strong {
    font-size: 16px;
  }
}
body {
  background-color: #090f0d;
}

.site-nav {
  border-bottom-color: rgba(88, 245, 255, 0.2);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.brand {
  min-width: 210px;
}

.brand-logo {
  height: 54px;
}

.nav-links a.active {
  background: linear-gradient(135deg, rgba(88, 245, 255, 0.14), rgba(139, 92, 246, 0.08));
  box-shadow: inset 0 -1px 0 rgba(88, 245, 255, 0.5);
}

.nova-store-hero,
.nova-market-layout,
.nova-community-hero,
.nova-sector-grid,
.nova-staff-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.nova-store-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 22px;
  padding: 58px 0 34px;
}

.nova-store-hero::before {
  content: "";
  position: absolute;
  inset: 20px -24px auto -24px;
  height: 280px;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 35%, rgba(88, 245, 255, 0.24), transparent 34%),
    radial-gradient(circle at 74% 10%, rgba(139, 92, 246, 0.18), transparent 30%),
    linear-gradient(115deg, rgba(88, 245, 255, 0.08), transparent 52%);
  clip-path: polygon(0 0, 96% 0, 100% 62%, 87% 100%, 5% 86%);
}

.nova-hero-copy,
.nova-drop-panel,
.nova-filter-panel,
.nova-results,
.nova-community-hero,
.nova-staff-grid article {
  border: 1px solid rgba(88, 245, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(88, 245, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.nova-hero-copy {
  min-height: 390px;
  padding: clamp(24px, 5vw, 54px);
  display: grid;
  align-content: center;
  clip-path: polygon(0 0, 96% 0, 100% 16%, 100% 100%, 5% 100%, 0 84%);
}

.nova-hero-copy h1 {
  max-width: 820px;
  margin: 12px 0 0;
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.nova-hero-copy p {
  max-width: 690px;
  margin-top: 18px;
  color: #cbd7f4;
  font-size: 1.05rem;
}

.nova-quick-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.nova-chip {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(88, 245, 255, 0.22);
  border-radius: 4px;
  background: rgba(7, 16, 13, 0.72);
  color: var(--text);
  font-weight: 900;
}

.nova-chip.active,
.nova-chip:hover {
  border-color: var(--brand);
  background: rgba(88, 245, 255, 0.16);
  color: #ffffff;
}

.nova-drop-panel {
  position: relative;
  min-height: 390px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
  clip-path: polygon(10% 0, 100% 0, 100% 86%, 90% 100%, 0 100%, 0 12%);
}

.nova-drop-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -70px;
  top: -70px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.28), transparent 68%);
}

.nova-drop-top,
.nova-signal-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.nova-drop-top {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.nova-drop-top strong {
  color: var(--brand-2);
  font-size: 1.1rem;
}

.nova-reactor {
  width: 150px;
  height: 150px;
  margin: 18px auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(88, 245, 255, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.42), transparent 30%),
    conic-gradient(from 90deg, rgba(88, 245, 255, 0.1), rgba(88, 245, 255, 0.62), rgba(139, 92, 246, 0.36), rgba(88, 245, 255, 0.1));
  box-shadow: 0 0 46px rgba(88, 245, 255, 0.24);
}

.nova-reactor span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #08110e;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 950;
}

.nova-drop-panel h2 {
  margin: 0;
  font-size: 1.8rem;
}

.nova-drop-panel p {
  margin: 10px 0 18px;
  color: var(--muted);
}

.nova-signal-strip {
  grid-column: 1 / -1;
  min-height: 70px;
  padding: 0 18px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  background: rgba(10, 13, 34, 0.76);
  clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}

.nova-signal-strip span {
  color: var(--muted);
  font-weight: 900;
}

.nova-signal-strip strong {
  color: var(--brand);
  margin-right: 5px;
}

.nova-market-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 20px;
  align-items: start;
  padding-bottom: 70px;
}

.nova-gateway,
.nova-faq-console,
.nova-policy-strip {
  width: min(var(--max), calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.nova-gateway {
  display: grid;
  grid-template-columns: 1.1fr 1.25fr 1fr 1.35fr;
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 22px;
}

.nova-gateway-card {
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(88, 245, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(88, 245, 255, 0.075), transparent 44%),
    rgba(10, 13, 34, 0.86);
  clip-path: polygon(0 0, 94% 0, 100% 14%, 100% 100%, 6% 100%, 0 86%);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.nova-gateway-card h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.nova-gateway-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nova-avatar {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(88, 245, 255, 0.35);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #07100d;
  font-weight: 950;
  font-size: 1.3rem;
  transform: rotate(45deg);
}

.nova-avatar::first-letter {
  transform: rotate(-45deg);
}

.nova-goal-card .progress {
  margin: 14px 0;
  height: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.nova-goal-card .progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.nova-payments-card {
  display: grid;
  gap: 8px;
}

.nova-payments-card > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(88, 245, 255, 0.12);
}

.nova-payments-card strong {
  color: #ffffff;
}

.nova-payments-card span,
.nova-payments-card em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.nova-payments-card em {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.nova-filter-panel {
  background:
    linear-gradient(180deg, rgba(10, 14, 34, 0.94), rgba(10, 12, 28, 0.9)),
    repeating-linear-gradient(135deg, rgba(88, 245, 255, 0.07), rgba(88, 245, 255, 0.07) 1px, transparent 1px, transparent 10px);
  border-radius: 0;
  clip-path: polygon(0 0, 92% 0, 100% 7%, 100% 100%, 8% 100%, 0 93%);
}

.nova-results {
  min-width: 0;
  padding: 18px;
  border-radius: 0;
  clip-path: polygon(0 0, 98% 0, 100% 4%, 100% 100%, 2% 100%, 0 96%);
}

.nova-toolbar {
  padding: 6px 4px 18px;
  border-bottom: 1px solid rgba(88, 245, 255, 0.14);
}

.category-pill {
  border-radius: 4px;
  clip-path: polygon(0 0, 96% 0, 100% 50%, 96% 100%, 0 100%);
}

.category-pill.active {
  background: linear-gradient(135deg, rgba(88, 245, 255, 0.18), rgba(139, 92, 246, 0.08));
}

.nova-module-stack {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  background: rgba(139, 92, 246, 0.055);
}

.nova-module-stack span,
.nova-module-stack strong {
  display: block;
}

.nova-module-stack span {
  color: var(--brand-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nova-module-stack strong {
  margin-top: 8px;
  color: #eefcf5;
  font-size: 0.88rem;
}

.nova-product-grid {
  gap: 18px;
}

.nova-product-card {
  position: relative;
  border-color: rgba(88, 245, 255, 0.18);
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(88, 245, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
}

.nova-product-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 44%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.nova-product-card .product-image {
  background:
    radial-gradient(circle at 50% 42%, rgba(88, 245, 255, 0.28), transparent 38%),
    linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(88, 245, 255, 0.06));
}

.nova-product-card .product-image span {
  border-radius: 18px;
  transform: rotate(45deg);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), transparent 22%),
    linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #08110e;
}

.nova-product-card .product-image span::first-letter {
  transform: rotate(-45deg);
}

.nova-card-code {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  color: rgba(244, 247, 242, 0.62);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.nova-product-card .add-btn,
.nova-product-card .wishlist-btn,
.nova-drop-panel .primary-btn,
.nova-community-hero .primary-btn {
  border-radius: 4px;
}

.nova-community-hero {
  min-height: 470px;
  margin-top: 42px;
  padding: clamp(24px, 5vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  clip-path: polygon(0 0, 96% 0, 100% 12%, 100% 100%, 4% 100%, 0 88%);
}

.nova-faq-console {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 20px;
  align-items: stretch;
  padding-top: 54px;
}

.nova-faq-console > div,
.nova-help-stack,
.nova-policy-strip article,
.nova-faq-layout .faq-group {
  border: 1px solid rgba(88, 245, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(88, 245, 255, 0.08), transparent 40%),
    rgba(10, 13, 34, 0.86);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.nova-faq-console > div {
  padding: clamp(24px, 5vw, 48px);
  clip-path: polygon(0 0, 96% 0, 100% 18%, 100% 100%, 5% 100%, 0 84%);
}

.nova-faq-console h1 {
  max-width: 820px;
  margin: 10px 0 0;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.nova-faq-console p {
  max-width: 660px;
  margin-top: 16px;
  color: #cbd7f4;
}

.nova-help-stack {
  display: grid;
  gap: 10px;
  padding: 18px;
  clip-path: polygon(8% 0, 100% 0, 100% 88%, 92% 100%, 0 100%, 0 12%);
}

.nova-help-stack article {
  padding: 14px;
  border: 1px solid rgba(88, 245, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}

.nova-help-stack span {
  color: var(--brand);
  font-weight: 950;
}

.nova-help-stack strong {
  display: block;
  margin-top: 6px;
  color: #ffffff;
}

.nova-help-stack p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.nova-policy-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.nova-policy-strip article {
  padding: 18px;
  clip-path: polygon(0 0, 94% 0, 100% 20%, 100% 100%, 0 100%);
}

.nova-policy-strip span {
  color: var(--brand-2);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.nova-policy-strip p {
  margin: 8px 0 0;
  color: var(--muted);
}

.nova-faq-layout {
  margin-top: 18px;
}

.nova-faq-layout .faq-group {
  border-radius: 0;
  clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 6% 100%, 0 92%);
}

.nova-faq-layout .faq-item {
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.12);
}

.nova-community-hero h1 {
  margin: 10px 0 0;
  max-width: 760px;
  font-size: clamp(2.7rem, 7vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.nova-community-hero p {
  max-width: 650px;
  margin: 18px 0 24px;
  color: #cbd7f4;
}

.nova-orbit-map {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(88, 245, 255, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(88, 245, 255, 0.18), transparent 38%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px);
}

.nova-orbit-map span {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #07100d;
  font-weight: 950;
}

.nova-orbit-map i {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 26px rgba(88, 245, 255, 0.9);
}

.nova-orbit-map i:nth-child(2) { top: 18%; left: 28%; }
.nova-orbit-map i:nth-child(3) { top: 30%; right: 15%; background: var(--brand-2); }
.nova-orbit-map i:nth-child(4) { bottom: 18%; left: 20%; }
.nova-orbit-map i:nth-child(5) { bottom: 26%; right: 24%; background: var(--brand-2); }

.nova-sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.nova-sector-grid .stat-card {
  border-radius: 0;
  clip-path: polygon(0 0, 92% 0, 100% 18%, 100% 100%, 0 100%);
}

.nova-staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.nova-staff-grid article {
  padding: 20px;
  clip-path: polygon(0 0, 92% 0, 100% 14%, 100% 100%, 8% 100%, 0 86%);
}

.nova-staff-grid span {
  color: var(--brand);
  font-weight: 950;
}

.nova-staff-grid h2 {
  margin: 12px 0 8px;
  font-size: 1.1rem;
}

.nova-staff-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.nova-leaderboard {
  border-radius: 0;
  clip-path: polygon(0 0, 98% 0, 100% 8%, 100% 100%, 2% 100%, 0 92%);
}

[dir="rtl"] .nova-store-hero::before,
[dir="rtl"] .nova-hero-copy,
[dir="rtl"] .nova-drop-panel,
[dir="rtl"] .nova-filter-panel,
[dir="rtl"] .nova-results,
[dir="rtl"] .nova-product-card,
[dir="rtl"] .nova-community-hero {
  direction: rtl;
}

@media (max-width: 1120px) {
  .nova-store-hero,
  .nova-market-layout,
  .nova-community-hero,
  .nova-faq-console {
    grid-template-columns: 1fr;
  }

  .nova-signal-strip,
  .nova-sector-grid,
  .nova-staff-grid,
  .nova-gateway,
  .nova-policy-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nova-filter-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 46px;
    max-width: 170px;
  }

  .language-picker {
    display: none;
  }

  .nova-store-hero,
  .nova-community-hero {
    width: min(100% - 20px, var(--max));
    margin-top: 14px;
    padding-top: 20px;
  }

  .nova-hero-copy,
  .nova-drop-panel,
  .nova-community-hero,
  .nova-results,
  .nova-filter-panel,
  .nova-product-card {
    clip-path: none;
  }

  .nova-hero-copy {
    min-height: auto;
    padding: 22px;
  }

  .nova-hero-copy h1,
  .nova-community-hero h1 {
    font-size: clamp(2.25rem, 14vw, 4rem);
  }

  .nova-signal-strip,
  .nova-sector-grid,
  .nova-staff-grid,
  .nova-gateway,
  .nova-policy-strip {
    grid-template-columns: 1fr;
  }

  .nova-signal-strip {
    align-items: stretch;
    flex-direction: column;
    padding: 14px;
  }

  .nova-faq-console,
  .nova-policy-strip {
    width: min(100% - 20px, var(--max));
  }

  .nova-faq-console > div,
  .nova-help-stack,
  .nova-gateway-card,
  .nova-policy-strip article,
  .nova-faq-layout .faq-group {
    clip-path: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 720px) {
  html,
  body,
  #app {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .nova-store-hero .nova-hero-copy h1 {
    font-size: clamp(2rem, 10.5vw, 2.85rem) !important;
    line-height: 1 !important;
    max-width: 100% !important;
  }

  .nova-store-hero .nova-hero-copy p {
    font-size: 0.92rem !important;
    line-height: 1.45 !important;
    max-width: 290px !important;
  }

  .nova-store-hero .nova-quick-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  .nova-store-hero {
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    margin-inline: auto !important;
    padding-inline: 22px !important;
    padding-bottom: 34px !important;
  }

  .nova-store-hero::before {
    inset: 0 !important;
    clip-path: none !important;
    border-radius: 0 !important;
  }

  .nexora-preview-stage {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 354px !important;
    overflow: hidden !important;
  }

  .nexora-desktop-frame {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .nexora-browser-bar strong {
    display: none;
  }

  .nexora-preview-hero h2 {
    max-width: 210px;
    font-size: 25px !important;
    line-height: 0.96;
  }

  .nexora-phone-frame {
    right: 8px !important;
    top: 158px !important;
    transform: rotate(5deg) scale(0.82) !important;
    transform-origin: top right;
  }
}

/* Nexora Apex identity layer */
:root {
  --brand: #62f5ff;
  --brand-2: #865dff;
  --brand-3: #4e7cff;
  --bg: #050718;
  --panel: rgba(8, 13, 36, 0.84);
  --panel-2: rgba(12, 20, 58, 0.94);
  --line: rgba(98, 245, 255, 0.2);
  --line-2: rgba(134, 93, 255, 0.28);
  --text: #f8fbff;
  --muted: #b8c3e8;
  --soft: #7f8ebd;
}

body {
  background:
    linear-gradient(90deg, rgba(98, 245, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(134, 93, 255, 0.04) 1px, transparent 1px),
    linear-gradient(125deg, rgba(5, 7, 24, 0.96) 0%, rgba(9, 18, 52, 0.96) 48%, rgba(8, 31, 56, 0.96) 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

.promo-strip {
  background: linear-gradient(90deg, rgba(98, 245, 255, 0.18), rgba(134, 93, 255, 0.2));
  color: var(--cyan);
  border-bottom-color: rgba(98, 245, 255, 0.28);
}

.site-nav,
.mobile-drawer,
.cart-panel,
.support-widget {
  background: rgba(5, 7, 24, 0.9);
  border-color: rgba(98, 245, 255, 0.22);
}

.page-hero,
.category-hero,
.nova-faq-console,
.nova-community-hero,
.nexora-about-hero {
  background:
    linear-gradient(135deg, rgba(7, 12, 36, 0.95), rgba(19, 24, 78, 0.82)),
    linear-gradient(100deg, rgba(98, 245, 255, 0.12), transparent 42%, rgba(134, 93, 255, 0.16));
  border: 1px solid rgba(98, 245, 255, 0.28);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
}

.nexora-about-hero {
  width: min(100% - 32px, 1320px);
  min-height: 580px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.42fr);
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 94% 0, 100% 16%, 100% 100%, 0 100%);
}

.nexora-about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(98, 245, 255, 0.12) 44% 46%, transparent 46% 100%),
    linear-gradient(160deg, transparent 0 62%, rgba(134, 93, 255, 0.18) 62% 70%, transparent 70% 100%);
  pointer-events: none;
}

.nexora-about-copy,
.nexora-about-card {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.nexora-about-copy h1 {
  max-width: 850px;
  margin: 10px 0 18px;
  font-size: clamp(56px, 7.4vw, 112px);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nexora-about-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
}

.nexora-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.nexora-about-card {
  min-height: 420px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(5, 8, 26, 0.95), rgba(20, 24, 82, 0.9)),
    linear-gradient(45deg, rgba(98, 245, 255, 0.16), rgba(134, 93, 255, 0.2));
  border: 1px solid rgba(98, 245, 255, 0.34);
  border-radius: 22px;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.42);
  transform: rotate(2deg);
}

.nexora-about-card span,
.nexora-about-card em {
  color: var(--cyan);
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nexora-about-card strong {
  color: var(--text);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
}

.nexora-about-card em {
  color: var(--gold);
  font-size: 30px;
}

.nexora-about-card div {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  color: #050718;
  font-size: 36px;
  font-weight: 1000;
  box-shadow: 0 22px 70px rgba(98, 245, 255, 0.28);
}

.nexora-about-wall {
  width: min(100% - 32px, 1320px);
  margin: 28px auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: 16px;
}

.nexora-about-wall article,
.nexora-about-wall aside,
.nexora-about-metrics article {
  background: rgba(7, 13, 36, 0.82);
  border: 1px solid rgba(98, 245, 255, 0.22);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.nexora-about-wall article {
  padding: clamp(24px, 4vw, 42px);
  clip-path: polygon(0 0, 96% 0, 100% 18%, 100% 100%, 0 100%);
}

.nexora-about-wall article h2 {
  max-width: 760px;
  margin: 8px 0 12px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.96;
  text-transform: uppercase;
}

.nexora-about-wall article p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
}

.nexora-about-wall aside {
  padding: 22px;
}

.nexora-about-wall aside > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(98, 245, 255, 0.14);
}

.nexora-about-wall aside strong,
.nexora-about-wall aside span,
.nexora-about-wall aside em {
  display: block;
}

.nexora-about-wall aside strong {
  color: var(--text);
}

.nexora-about-wall aside span {
  color: var(--muted);
  font-size: 13px;
}

.nexora-about-wall aside em {
  color: var(--cyan);
  font-size: 12px;
  font-style: normal;
  grid-row: span 2;
  align-self: center;
}

.nexora-about-metrics {
  width: min(100% - 32px, 1320px);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.nexora-about-metrics article {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px;
}

.nexora-about-metrics strong {
  color: var(--cyan);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.nexora-about-metrics span {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.story-grid,
.team-grid,
.timeline {
  display: none;
}

.info-card,
.support-card,
.dashboard-panel,
.news-card,
.stat-card,
.glass-card,
.faq-group,
.policy-card,
.product-card,
.filter-panel,
.store-results,
.nova-gateway-card,
.nexora-feature-row article,
.nexora-template-band,
.nexora-featured-package,
.nexora-live-column > div {
  background: rgba(7, 13, 36, 0.84);
  border-color: rgba(98, 245, 255, 0.22);
}

.support-widget:not(.open) {
  display: none !important;
}

.support-widget.open {
  display: flex !important;
}

.support-launcher:not(.hidden):not([hidden]) {
  display: grid !important;
}

@media (max-width: 980px) {
  .nexora-about-hero,
  .nexora-about-wall {
    grid-template-columns: 1fr;
  }

  .nexora-about-card {
    max-width: 420px;
    transform: none;
  }

  .nexora-about-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .nexora-about-hero,
  .nexora-about-wall,
  .nexora-about-metrics {
    width: min(340px, calc(100vw - 28px)) !important;
    max-width: min(340px, calc(100vw - 28px)) !important;
    margin-left: auto;
    margin-right: auto;
  }

  .nexora-about-hero {
    min-height: 0;
    padding: 28px 22px;
    clip-path: none;
  }

  .nexora-about-hero * {
    min-width: 0;
  }

  .nexora-about-copy h1 {
    font-size: clamp(38px, 13vw, 54px);
    overflow-wrap: break-word;
  }

  .nexora-about-copy p {
    max-width: 300px;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .nexora-about-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .nexora-about-actions .primary-btn,
  .nexora-about-actions .secondary-btn {
    width: 100%;
    max-width: 100%;
  }

  .nexora-about-card {
    min-height: 0;
    padding: 22px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .nexora-about-wall article {
    clip-path: none;
  }

  .nexora-about-wall article h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .nexora-about-metrics,
  .nexora-studio-ribbon {
    grid-template-columns: 1fr;
  }
}

/* Nexora support chat final skin */
.support-launcher {
  border: 1px solid rgba(98, 245, 255, 0.62) !important;
  background:
    radial-gradient(circle at 50% 44%, rgba(98, 245, 255, 0.32), transparent 42%),
    conic-gradient(from 90deg, rgba(98, 245, 255, 0.18), rgba(98, 245, 255, 0.95), rgba(134, 93, 255, 0.9), rgba(78, 124, 255, 0.72), rgba(98, 245, 255, 0.18)) !important;
  color: #050718 !important;
  box-shadow: 0 0 34px rgba(98, 245, 255, 0.34), 0 20px 58px rgba(0, 0, 0, 0.42) !important;
}

.support-launcher::before {
  border-color: #050718 !important;
}

.support-launcher::after {
  background: #050718 !important;
}

.support-widget {
  border: 1px solid rgba(98, 245, 255, 0.5) !important;
  background:
    linear-gradient(180deg, rgba(5, 7, 24, 0.98), rgba(8, 13, 36, 0.98)),
    repeating-linear-gradient(0deg, rgba(98, 245, 255, 0.035), rgba(98, 245, 255, 0.035) 1px, transparent 1px, transparent 7px) !important;
  color: var(--text) !important;
  box-shadow: 0 0 0 1px rgba(134, 93, 255, 0.16), 0 32px 90px rgba(0, 0, 0, 0.6), 0 0 70px rgba(98, 245, 255, 0.12) !important;
}

.support-widget::before {
  background:
    linear-gradient(90deg, rgba(98, 245, 255, 0.1), transparent 32%, transparent 70%, rgba(134, 93, 255, 0.12)),
    radial-gradient(circle at 18% 8%, rgba(98, 245, 255, 0.22), transparent 28%) !important;
}

.support-top,
.support-hero {
  background:
    linear-gradient(135deg, rgba(98, 245, 255, 0.16), rgba(134, 93, 255, 0.16)),
    rgba(7, 13, 36, 0.94) !important;
  color: var(--text) !important;
}

.support-top {
  border-bottom: 1px solid rgba(98, 245, 255, 0.22) !important;
}

.support-tabs {
  border-color: rgba(98, 245, 255, 0.28) !important;
  background: rgba(5, 7, 24, 0.42) !important;
}

.support-tabs button,
.support-close {
  color: #eaf7ff !important;
}

.support-tabs button.active {
  background: linear-gradient(135deg, rgba(98, 245, 255, 0.24), rgba(134, 93, 255, 0.2)) !important;
  box-shadow: inset 0 -2px 0 var(--cyan) !important;
}

.support-close {
  border-color: rgba(98, 245, 255, 0.24) !important;
  background: rgba(5, 7, 24, 0.28) !important;
}

.support-close::before,
.support-close::after {
  background: var(--cyan) !important;
}

.support-hero {
  border-bottom: 1px solid rgba(134, 93, 255, 0.2) !important;
}

.support-avatars span {
  border-color: rgba(98, 245, 255, 0.48) !important;
  background: linear-gradient(135deg, rgba(98, 245, 255, 0.94), rgba(134, 93, 255, 0.86)) !important;
  color: #050718 !important;
  box-shadow: 0 0 18px rgba(98, 245, 255, 0.24) !important;
}

.support-avatars span:nth-child(2),
.support-avatars span:nth-child(4) {
  background: linear-gradient(135deg, rgba(12, 20, 58, 1), rgba(98, 245, 255, 0.3)) !important;
  color: #eaf7ff !important;
}

.support-avatars span:nth-child(3) {
  background: #050718 !important;
  color: var(--cyan) !important;
}

.support-hero h2 {
  color: #ffffff !important;
}

.support-hero p {
  color: var(--muted) !important;
}

.online-dot {
  background: var(--cyan) !important;
  box-shadow: 0 0 0 4px rgba(98, 245, 255, 0.18), 0 0 16px rgba(98, 245, 255, 0.52) !important;
}

.support-thread {
  background:
    radial-gradient(circle at 12% 20%, rgba(98, 245, 255, 0.08), transparent 30%),
    rgba(5, 7, 24, 0.72) !important;
}

.agent-message,
.user-message {
  border-color: rgba(98, 245, 255, 0.2) !important;
}

.agent-message {
  background: rgba(8, 13, 36, 0.94) !important;
  color: #eaf7ff !important;
}

.agent-message::before {
  color: var(--cyan) !important;
}

.user-message {
  background: linear-gradient(135deg, rgba(98, 245, 255, 0.94), rgba(134, 93, 255, 0.88)) !important;
  color: #050718 !important;
  border-color: rgba(134, 93, 255, 0.38) !important;
}

.support-form {
  border-color: rgba(98, 245, 255, 0.5) !important;
  background:
    linear-gradient(135deg, rgba(98, 245, 255, 0.06), transparent),
    rgba(7, 13, 36, 0.96) !important;
}

.support-form textarea {
  color: var(--text) !important;
}

.support-form textarea::placeholder {
  color: rgba(184, 195, 232, 0.74) !important;
}

.support-form span {
  color: var(--cyan) !important;
}

.support-form button {
  background: linear-gradient(135deg, var(--cyan), var(--violet)) !important;
  color: #050718 !important;
}

.article-search input,
.support-article {
  border-color: rgba(98, 245, 255, 0.22) !important;
  background: rgba(7, 13, 36, 0.82) !important;
  color: var(--text) !important;
}

.support-article span {
  color: var(--cyan) !important;
}

/* Premium Minecraft marketplace asset pack */
body::before {
  background:
    linear-gradient(180deg, rgba(5, 7, 24, 0.22), rgba(5, 7, 24, 0.88)),
    url("/assets/nexora-premium/hero-background-4k.png") center top / cover fixed no-repeat !important;
  opacity: 0.62 !important;
}

#bgCanvas {
  mix-blend-mode: screen;
  opacity: 0.72;
}

.brand {
  position: relative;
  isolation: isolate;
}

.brand::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  width: 94px;
  height: 94px;
  z-index: -1;
  transform: translateY(-50%);
  background: url("/assets/nexora-premium/logo-backplate.png") center / contain no-repeat;
  opacity: 0.24;
  border-radius: 50%;
  clip-path: circle(48% at 50% 50%);
  filter: drop-shadow(0 0 18px rgba(98, 245, 255, 0.26));
}

.nova-store-hero {
  background:
    linear-gradient(90deg, rgba(5, 7, 24, 0.86), rgba(5, 7, 24, 0.28) 58%, rgba(7, 13, 36, 0.6)),
    url("/assets/nexora-premium/hero-background-4k.png") center / cover no-repeat !important;
  border: 1px solid rgba(98, 245, 255, 0.22);
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255,255,255,0.02);
}

.nova-store-hero::before {
  background:
    linear-gradient(135deg, rgba(7, 13, 36, 0.74), rgba(10, 18, 58, 0.44)),
    radial-gradient(circle at 88% 16%, rgba(98, 245, 255, 0.22), transparent 28%) !important;
  backdrop-filter: blur(2px);
}

.nova-store-hero::after,
.page-hero::after,
.nexora-about-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: auto 4% -1px 4%;
  height: 3px;
  background: url("/assets/nexora-premium/section-divider.png") center / cover no-repeat;
  opacity: 0.86;
}

.nexora-preview-stage::before {
  background:
    radial-gradient(circle, rgba(98, 245, 255, 0.3), rgba(134, 93, 255, 0.2) 48%, transparent 72%),
    url("/assets/nexora-premium/section-divider.png") center / cover no-repeat !important;
}

.nexora-category-banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 24, 0.78), rgba(5, 7, 24, 0.32)),
    var(--category-banner) center / cover no-repeat !important;
}

.nexora-category-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(98, 245, 255, 0.12) 44% 46%, transparent 46% 100%),
    radial-gradient(circle at 78% 22%, rgba(134, 93, 255, 0.22), transparent 34%);
  pointer-events: none;
}

.nexora-category-banner > * {
  position: relative;
  z-index: 1;
}

.nexora-category-banner .primary-btn {
  width: fit-content;
  min-width: 220px;
  max-width: 100%;
}

.nova-product-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(98, 245, 255, 0.24) !important;
  background:
    linear-gradient(180deg, rgba(7, 13, 36, 0.88), rgba(5, 7, 24, 0.94)) !important;
}

.nova-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(98, 245, 255, 0.1), transparent 38%, rgba(134, 93, 255, 0.1));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.nova-product-card:hover::after {
  opacity: 1;
}

.nova-product-card .product-image {
  min-height: 190px;
  background:
    linear-gradient(180deg, rgba(5, 7, 24, 0.12), rgba(5, 7, 24, 0.72)),
    var(--pkg-art) center / cover no-repeat !important;
}

.nova-product-card .product-image span {
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(98, 245, 255, 0.98), rgba(134, 93, 255, 0.94)) !important;
  box-shadow: 0 22px 70px rgba(98, 245, 255, 0.24), inset 0 0 0 1px rgba(255,255,255,0.24);
}

.nova-product-card:hover {
  border-color: rgba(98, 245, 255, 0.72) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), 0 0 44px rgba(98, 245, 255, 0.12) !important;
}

.nexora-feature-row article > span img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(98, 245, 255, 0.46));
}

.nexora-feature-row article > span::first-letter {
  font-size: 0 !important;
}

.section-head {
  position: relative;
}

.section-head::after,
.nexora-template-band::after,
.nexora-store-wall::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(98, 245, 255, 0.86), rgba(134, 93, 255, 0.66), transparent);
  opacity: 0.72;
}

.nexora-template-band,
.nexora-store-wall {
  position: relative;
}

.nexora-featured-package {
  background:
    linear-gradient(135deg, rgba(7, 13, 36, 0.82), rgba(19, 24, 78, 0.72)),
    url("/assets/nexora-premium/banner-bundles.png") center / cover no-repeat !important;
}

.nexora-live-column > div {
  background:
    linear-gradient(135deg, rgba(7, 13, 36, 0.9), rgba(12, 20, 58, 0.78)),
    url("/assets/nexora-premium/section-divider.png") center / cover no-repeat !important;
}

.page-hero,
.nexora-about-hero,
.nova-faq-console,
.nova-community-hero {
  background:
    linear-gradient(90deg, rgba(5, 7, 24, 0.82), rgba(7, 13, 36, 0.42)),
    url("/assets/nexora-premium/hero-background-4k.png") center / cover no-repeat !important;
}

@keyframes nexoraEnergyDrift {
  from { background-position: 48% 50%; }
  to { background-position: 53% 47%; }
}

.nova-store-hero,
.nexora-about-hero,
.page-hero {
  animation: nexoraEnergyDrift 12s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .nova-store-hero,
  .nexora-about-hero,
  .page-hero {
    animation: none;
  }
}

/* Premium custom cursor system */
@media (pointer: fine) and (hover: hover) {
  body:not(.cursor-disabled),
  body:not(.cursor-disabled) * {
    cursor: none !important;
  }

  .cursor-core,
  .cursor-trail,
  .cursor-particles {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: 10000;
  }

  .cursor-core,
  .cursor-trail {
    opacity: 0;
    will-change: transform, opacity, width, height;
    transition: opacity 0.18s ease, width 0.18s ease, height 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  }

  .cursor-core {
    --cursor-size: 18px;
    width: var(--cursor-size);
    height: var(--cursor-size);
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
      radial-gradient(circle at 42% 38%, #ffffff 0 8%, #ff9cff 9% 28%, #9a42ff 58%, rgba(154, 66, 255, 0.1) 74%);
    box-shadow: 0 0 18px rgba(255, 79, 216, 0.78), 0 0 42px rgba(139, 61, 255, 0.36);
    mix-blend-mode: screen;
  }

  .cursor-core::before,
  .cursor-core::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: inherit;
    border: 1px solid rgba(255, 122, 255, 0.22);
    opacity: 0;
  }

  .cursor-core::after {
    inset: -18px;
    border-color: rgba(198, 92, 255, 0.14);
  }

  .cursor-label {
    color: #080014;
    font-size: 10px;
    font-weight: 1000;
    letter-spacing: 0.08em;
    opacity: 0;
    transform: scale(0.72);
    transition: opacity 0.16s ease, transform 0.16s ease;
  }

  .cursor-trail {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(198, 92, 255, 0.46);
    background: radial-gradient(circle, rgba(255, 79, 216, 0.08), transparent 64%);
    box-shadow: inset 0 0 28px rgba(139, 61, 255, 0.18), 0 0 32px rgba(198, 92, 255, 0.16);
    mix-blend-mode: screen;
  }

  body.cursor-visible .cursor-core,
  body.cursor-visible .cursor-trail {
    opacity: 1;
  }

  .cursor-core[data-cursor-state="hover"] {
    --cursor-size: 42px;
    background: transparent;
    border: 2px solid rgba(255, 122, 255, 0.9);
    box-shadow: 0 0 28px rgba(255, 79, 216, 0.38), inset 0 0 18px rgba(139, 61, 255, 0.22);
    animation: cursorRingSpin 1.1s linear infinite;
  }

  .cursor-core[data-cursor-state="hover"]::before {
    opacity: 1;
    border-style: dashed;
  }

  .cursor-core[data-cursor-state="view"],
  .cursor-core[data-cursor-state="buy"] {
    --cursor-size: 70px;
    border: 1px solid rgba(255, 122, 255, 0.68);
    background: rgba(255, 122, 255, 0.88);
    box-shadow: 0 0 42px rgba(255, 79, 216, 0.52), 0 0 88px rgba(139, 61, 255, 0.28);
    mix-blend-mode: normal;
  }

  .cursor-core[data-cursor-state="buy"] {
    background: linear-gradient(135deg, #ff7bff, #f0c8ff);
    box-shadow: 0 0 42px rgba(255, 79, 216, 0.68), 0 0 92px rgba(198, 92, 255, 0.36);
  }

  .cursor-core[data-cursor-state="view"] .cursor-label,
  .cursor-core[data-cursor-state="buy"] .cursor-label {
    opacity: 1;
    transform: scale(1);
  }

  .cursor-trail[data-cursor-state="view"],
  .cursor-trail[data-cursor-state="buy"] {
    width: 92px;
    height: 92px;
    border-color: rgba(255, 122, 255, 0.36);
  }

  body.cursor-clicking .cursor-core::after {
    opacity: 1;
    animation: cursorPulseExplosion 0.36s ease-out both;
  }

  body.cursor-rare .cursor-core {
    background: conic-gradient(from 0deg, #ff4fd8, #f0c8ff, #8b3dff, #ff4fd8);
    box-shadow: 0 0 34px rgba(255, 79, 216, 0.9), 0 0 110px rgba(198, 92, 255, 0.58);
  }

  body.cursor-rare .cursor-trail {
    border-color: rgba(240, 200, 255, 0.78);
    box-shadow: inset 0 0 36px rgba(255, 79, 216, 0.26), 0 0 80px rgba(240, 200, 255, 0.28);
  }

  .cursor-particles {
    right: 0;
    bottom: 0;
    overflow: hidden;
  }

  .cursor-particles i {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: radial-gradient(circle, #f0c8ff, #ff4fd8 48%, transparent 72%);
    box-shadow: 0 0 16px rgba(255, 79, 216, 0.72);
    transform: translate(-50%, -50%);
    animation: cursorParticleOut 0.56s ease-out forwards;
  }

  .cursor-particles i.rare {
    background: radial-gradient(circle, #ffffff, #ff7bff 42%, #8b3dff 74%);
    box-shadow: 0 0 24px rgba(240, 200, 255, 0.86);
    animation-duration: 0.9s;
  }
}

@media (pointer: coarse), (hover: none), (prefers-reduced-motion: reduce) {
  .cursor-core,
  .cursor-trail,
  .cursor-particles {
    display: none !important;
  }
}

@keyframes cursorRingSpin {
  to { rotate: 360deg; }
}

@keyframes cursorPulseExplosion {
  from {
    transform: scale(0.75);
    opacity: 0.9;
  }
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}

@keyframes cursorParticleOut {
  from {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.12);
  }
}

/* Nexora Apex nebula direction */
:root {
  --brand: #c65cff;
  --brand-2: #8b3dff;
  --brand-3: #ff4fd8;
  --cyan: #df7bff;
  --violet: #8b3dff;
  --blue: #6d4dff;
  --pink: #ff4fd8;
  --gold: #f0c8ff;
  --bg: #080014;
  --panel: rgba(16, 7, 36, 0.86);
  --panel-2: rgba(24, 9, 58, 0.94);
  --line: rgba(198, 92, 255, 0.22);
  --line-2: rgba(255, 79, 216, 0.26);
  --muted: #d9c7ff;
  --soft: #a98bdc;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(198, 92, 255, 0.22), transparent 34rem),
    linear-gradient(125deg, #070011 0%, #120024 48%, #090018 100%) !important;
}

body::before {
  background:
    linear-gradient(180deg, rgba(8, 0, 20, 0.32), rgba(8, 0, 20, 0.9)),
    radial-gradient(circle at 50% 20%, rgba(255, 79, 216, 0.22), transparent 36rem),
    linear-gradient(180deg, rgba(7, 9, 20, 0.88), rgba(7, 9, 20, 0.96)) !important;
  background-size: auto, auto, 190% auto !important;
  background-position: center, center, center center !important;
  opacity: 0.86 !important;
}

.promo-strip {
  background: linear-gradient(90deg, rgba(198, 92, 255, 0.22), rgba(255, 79, 216, 0.16)) !important;
  color: #f4d9ff !important;
  border-bottom-color: rgba(198, 92, 255, 0.34) !important;
}

.site-nav,
.mobile-drawer,
.cart-panel,
.support-widget {
  background: rgba(8, 0, 20, 0.9) !important;
  border-color: rgba(198, 92, 255, 0.26) !important;
}

.discord-link,
.primary-btn,
.add-btn,
.cart-button strong,
.support-launcher {
  background: linear-gradient(135deg, #f06cff, #8b3dff 58%, #5d2cff) !important;
  color: #080014 !important;
  box-shadow: 0 14px 38px rgba(198, 92, 255, 0.34), 0 0 26px rgba(255, 79, 216, 0.18) !important;
}

.secondary-btn,
.text-btn,
.category-pill,
.nova-chip,
.select-input,
.search-input,
input,
select,
textarea {
  background: rgba(18, 5, 44, 0.78) !important;
  border-color: rgba(198, 92, 255, 0.26) !important;
  color: var(--text) !important;
}

.eyebrow,
.nova-signal-strip strong,
.nexora-feature-row article > span,
.support-article span,
.agent-message::before,
.support-form span {
  color: #ef9cff !important;
}

.nova-store-hero,
.page-hero,
.nexora-about-hero,
.nova-faq-console,
.nova-community-hero {
  background:
    linear-gradient(90deg, rgba(8, 0, 20, 0.9), rgba(22, 0, 54, 0.5) 58%, rgba(8, 0, 20, 0.72)),
    linear-gradient(180deg, rgba(9, 13, 28, 0.9), rgba(14, 17, 43, 0.86)) !important;
  background-size: auto, 190% auto !important;
  background-position: center, center center !important;
  border-color: rgba(198, 92, 255, 0.34) !important;
}

.nova-store-hero::before {
  background:
    linear-gradient(135deg, rgba(16, 7, 36, 0.78), rgba(47, 9, 92, 0.48)),
    radial-gradient(circle at 80% 18%, rgba(255, 79, 216, 0.22), transparent 28%) !important;
  border-color: rgba(198, 92, 255, 0.28) !important;
}

.nexora-preview-stage::before {
  background:
    radial-gradient(circle, rgba(255, 79, 216, 0.3), rgba(139, 61, 255, 0.22) 48%, transparent 72%),
    url("/assets/nexora-premium/section-divider.png") center / cover no-repeat !important;
}

.nexora-category-banner {
  background:
    linear-gradient(90deg, rgba(8, 0, 20, 0.82), rgba(40, 0, 70, 0.32)),
    linear-gradient(180deg, rgba(9, 13, 28, 0.9), rgba(14, 17, 43, 0.86)) !important;
  background-size: auto, 190% auto !important;
  background-position: center, center center !important;
}

.nova-product-card,
.info-card,
.support-card,
.dashboard-panel,
.news-card,
.stat-card,
.glass-card,
.faq-group,
.policy-card,
.filter-panel,
.store-results,
.nova-gateway-card,
.nexora-feature-row article,
.nexora-template-band,
.nexora-featured-package,
.nexora-live-column > div {
  background: rgba(15, 4, 38, 0.86) !important;
  border-color: rgba(198, 92, 255, 0.24) !important;
}

.nova-product-card .product-image {
  background:
    linear-gradient(180deg, rgba(8, 0, 20, 0.08), rgba(8, 0, 20, 0.72)),
    var(--pkg-art) center / cover no-repeat !important;
  filter: saturate(1.16) hue-rotate(16deg);
}

.nova-product-card .product-image span,
.nexora-featured-price span,
.nexora-phone-icon,
.nexora-about-card div {
  background: linear-gradient(135deg, #ff7bff, #8b3dff) !important;
  box-shadow: 0 22px 70px rgba(198, 92, 255, 0.28), inset 0 0 0 1px rgba(255,255,255,0.22) !important;
}

.nexora-feature-row article > span img {
  filter: hue-rotate(42deg) saturate(1.28) drop-shadow(0 0 8px rgba(255, 79, 216, 0.46)) !important;
}

.section-head::after,
.nexora-template-band::after,
.nexora-store-wall::after,
.nova-store-hero::after,
.page-hero::after,
.nexora-about-hero::after {
  filter: hue-rotate(48deg) saturate(1.4);
  opacity: 0.9;
}

.support-launcher {
  border-color: rgba(198, 92, 255, 0.62) !important;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 79, 216, 0.36), transparent 42%),
    conic-gradient(from 90deg, rgba(198, 92, 255, 0.2), rgba(255, 79, 216, 0.94), rgba(139, 61, 255, 0.95), rgba(198, 92, 255, 0.2)) !important;
}

.support-top,
.support-hero {
  background:
    linear-gradient(135deg, rgba(198, 92, 255, 0.2), rgba(255, 79, 216, 0.14)),
    rgba(16, 7, 36, 0.94) !important;
}

.agent-message {
  background: rgba(18, 5, 44, 0.94) !important;
}

.user-message,
.support-form button {
  background: linear-gradient(135deg, rgba(255, 122, 255, 0.94), rgba(139, 61, 255, 0.9)) !important;
}

/* Nexora Apex catalog modules */
.store-results {
  position: relative;
  overflow: hidden;
}

.store-results::before {
  content: "";
  position: absolute;
  inset: 86px 18px auto 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 255, 0.58), transparent);
  opacity: 0.72;
}

.nova-product-grid {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px !important;
  align-items: stretch;
}

.nova-product-grid .nexora-catalog-card {
  grid-column: span 2;
}

.nova-product-grid .nexora-catalog-card:nth-child(7n+1),
.nova-product-grid .nexora-catalog-card:nth-child(7n+6) {
  grid-column: span 3;
}

.nova-product-grid .nexora-catalog-card:nth-child(3n+2) {
  transform: translateY(18px);
}

.nexora-catalog-card {
  min-height: 472px;
  isolation: isolate;
  padding-left: 18px;
  border-radius: 0 !important;
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 36px 100%, 0 calc(100% - 36px)) !important;
  background:
    linear-gradient(135deg, rgba(255, 122, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(18, 5, 44, 0.88), rgba(8, 0, 20, 0.96)) !important;
  border: 1px solid rgba(198, 92, 255, 0.32) !important;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255,255,255,0.025) !important;
}

.nexora-catalog-card::before {
  width: 2px !important;
  height: calc(100% - 42px) !important;
  left: 8px !important;
  top: 20px !important;
  background: linear-gradient(180deg, transparent, #ff7bff, #8b3dff, transparent) !important;
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.48);
}

.nexora-catalog-card::after {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 122, 255, 0.18), transparent 32%),
    linear-gradient(135deg, transparent 0 42%, rgba(255, 79, 216, 0.08) 42% 44%, transparent 44% 100%) !important;
}

.nexora-card-ribbon {
  position: absolute;
  left: 0;
  top: 26px;
  z-index: 5;
  width: 34px;
  height: 148px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(255, 122, 255, 0.92), rgba(139, 61, 255, 0.88));
  color: #080014;
  box-shadow: 0 0 24px rgba(255, 79, 216, 0.28);
  clip-path: polygon(0 0, 100% 12px, 100% calc(100% - 12px), 0 100%);
}

.nexora-card-ribbon span {
  rotate: -90deg;
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nexora-catalog-card .product-image {
  height: 210px;
  margin: 14px 14px 0 0;
  border: 1px solid rgba(198, 92, 255, 0.28);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.nexora-catalog-card .product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 47%, rgba(255, 255, 255, 0.14) 48%, transparent 52%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 28px);
  opacity: 0.56;
  pointer-events: none;
}

.nexora-orbit-line {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 122, 255, 0.38);
  border-radius: 50%;
  opacity: 0.8;
}

.nexora-orbit-line::before,
.nexora-orbit-line::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 1px solid rgba(139, 61, 255, 0.34);
}

.nexora-orbit-line::before {
  inset: 10px -8px;
  transform: rotate(28deg);
}

.nexora-orbit-line::after {
  width: 8px;
  height: 8px;
  right: 7px;
  top: 9px;
  background: #ff7bff;
  box-shadow: 0 0 14px rgba(255, 79, 216, 0.8);
}

.nexora-catalog-card .product-image span {
  width: 84px;
  height: 84px;
  font-size: 1.2rem;
  transform: rotate(-8deg) skew(-4deg) !important;
  border-radius: 18px !important;
}

.nexora-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.nexora-card-meta span {
  color: #f0c8ff;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nexora-catalog-card .product-body {
  padding: 18px 18px 20px 2px;
}

.nexora-catalog-card .product-body h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.55rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.nexora-catalog-card .product-body p {
  min-height: 62px;
  color: rgba(217, 199, 255, 0.82);
}

.nexora-catalog-card .product-foot {
  align-items: end;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(198, 92, 255, 0.16);
}

.nexora-catalog-card .price-stack strong {
  color: #f0c8ff !important;
  font-size: 1.18rem;
  text-shadow: 0 0 16px rgba(255, 79, 216, 0.28);
}

.nexora-catalog-card .add-btn {
  min-width: 92px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%) !important;
}

.nexora-catalog-card .wishlist-btn {
  margin-top: 12px;
  width: 100%;
  border-style: dashed;
  color: #f0c8ff;
}

.nexora-catalog-card:hover {
  transform: translateY(-8px) scale(1.012) !important;
  border-color: rgba(255, 122, 255, 0.62) !important;
}

.nova-product-grid .nexora-catalog-card:nth-child(3n+2):hover {
  transform: translateY(6px) scale(1.012) !important;
}

@media (max-width: 1180px) {
  .nova-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nova-product-grid .nexora-catalog-card,
  .nova-product-grid .nexora-catalog-card:nth-child(7n+1),
  .nova-product-grid .nexora-catalog-card:nth-child(7n+6) {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .nova-product-grid {
    grid-template-columns: 1fr;
  }

  .nova-product-grid .nexora-catalog-card,
  .nova-product-grid .nexora-catalog-card:nth-child(3n+2),
  .nexora-catalog-card:hover,
  .nova-product-grid .nexora-catalog-card:nth-child(3n+2):hover {
    transform: none !important;
  }

  .nexora-catalog-card {
    min-height: 0;
    padding-left: 14px;
  }

  .nexora-catalog-card .product-image {
    height: 190px;
  }
}

/* Nexora Apex compatibility layer */
:root {
  --brand: #58f5ff;
  --brand-2: #8b5cf6;
  --brand-3: #ff3d81;
  --cyan: #58f5ff;
  --bg: #050712;
  --bg-2: #090d1f;
  --panel: rgba(11, 16, 34, 0.72);
  --panel-2: rgba(16, 22, 45, 0.82);
  --line: rgba(111, 232, 255, 0.18);
  --line-2: rgba(139, 92, 246, 0.28);
  --text: #f7fbff;
  --muted: #c6d3e8;
  --soft: #8795b4;
}

body {
  background:
    linear-gradient(135deg, rgba(88, 245, 255, 0.08), transparent 34rem),
    linear-gradient(180deg, #080a10 0%, #111319 48%, #080a10 100%) !important;
}

body::before {
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0.68), rgba(8, 10, 16, 0.94)),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 9, 20, 0.88), rgba(7, 9, 20, 0.96)) !important;
  background-size: auto, 44px 44px, 44px 44px, 180% auto !important;
  opacity: 0.72 !important;
}

.site-nav,
.mobile-drawer,
.cart-panel,
.support-widget,
.nova-product-card,
.info-card,
.support-card,
.dashboard-panel,
.news-card,
.stat-card,
.glass-card,
.faq-group,
.policy-card,
.filter-panel,
.store-results,
.nova-gateway-card,
.nexora-feature-row article,
.nexora-template-band,
.nexora-featured-package,
.nexora-live-column > div {
  background: rgba(12, 16, 24, 0.9) !important;
  border-color: rgba(111, 232, 255, 0.18) !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28) !important;
}

.promo-strip {
  background: linear-gradient(90deg, rgba(88, 245, 255, 0.14), rgba(139, 92, 246, 0.16)) !important;
  color: #eafbff !important;
  border-bottom-color: rgba(111, 232, 255, 0.2) !important;
}

.discord-link,
.primary-btn,
.add-btn,
.cart-button strong,
.support-launcher,
.nexora-preview-hero button,
.nexora-phone-frame button {
  background: linear-gradient(135deg, #58f5ff, #8b5cf6 55%, #ff3d81) !important;
  color: #030714 !important;
  box-shadow: 0 12px 26px rgba(88, 245, 255, 0.2) !important;
}

.secondary-btn,
.text-btn,
.category-pill,
.nova-chip,
.select-input,
.search-input,
input,
select,
textarea {
  background: rgba(17, 24, 39, 0.86) !important;
  border-color: rgba(111, 232, 255, 0.16) !important;
  color: var(--text) !important;
}

.eyebrow,
.nova-signal-strip strong,
.nexora-feature-row article > span,
.support-article span,
.agent-message::before,
.support-form span {
  color: #7df7ff !important;
}

.nova-store-hero,
.page-hero,
.nexora-about-hero,
.nova-faq-console,
.nova-community-hero {
  border-radius: 8px !important;
  background:
    linear-gradient(90deg, rgba(8, 10, 16, 0.94), rgba(19, 14, 42, 0.74)),
    linear-gradient(90deg, rgba(111, 232, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(9, 13, 28, 0.9), rgba(14, 17, 43, 0.86)) !important;
  background-size: auto, 38px 38px, 38px 38px, 190% auto !important;
  border-color: rgba(111, 232, 255, 0.2) !important;
}

.nova-store-hero::before,
.nova-store-hero::after,
.page-hero::after,
.nexora-template-band::after,
.nexora-store-wall::after {
  opacity: 0.18 !important;
}

.nova-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 5.5vw, 5rem) !important;
  letter-spacing: 0 !important;
}

.nova-hero-copy p {
  max-width: 640px;
  color: rgba(226, 236, 255, 0.86) !important;
}

.nova-quick-grid {
  gap: 10px !important;
}

.nova-chip {
  border-radius: 8px !important;
  min-height: 44px;
}

.nova-chip.active,
.category-pill.active {
  background: rgba(111, 232, 255, 0.14) !important;
  border-color: rgba(111, 232, 255, 0.42) !important;
  color: #f5ffef !important;
}

.nexora-hero-checks {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
}

.nexora-hero-checks span {
  min-height: 46px !important;
  border-radius: 8px !important;
  background: rgba(12, 16, 24, 0.78) !important;
  border-color: rgba(111, 232, 255, 0.18) !important;
}

.nexora-hero-checks span::before {
  background: #58f5ff !important;
  box-shadow: 0 0 12px rgba(88, 245, 255, 0.5) !important;
}

.nexora-preview-stage {
  min-height: 420px !important;
  filter: none !important;
}

.nexora-preview-stage::before {
  background:
    linear-gradient(135deg, rgba(88, 245, 255, 0.12), rgba(139, 92, 246, 0.16)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.04) 0 8px, transparent 8px 16px) !important;
  border-radius: 8px !important;
}

.nexora-desktop-frame,
.nexora-phone-frame {
  border-radius: 8px !important;
  background: rgba(11, 15, 23, 0.96) !important;
  border-color: rgba(111, 232, 255, 0.2) !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34) !important;
}

.nexora-preview-hero {
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(10, 24, 44, 0.92), rgba(25, 14, 45, 0.82)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 28px) !important;
}

.nexora-preview-hero h2,
.nexora-phone-frame h3,
.nexora-featured-package h2,
.nexora-template-band h2 {
  letter-spacing: 0 !important;
}

.nexora-mini-products article,
.nexora-payment-pills span {
  border-radius: 8px !important;
  background: rgba(17, 24, 39, 0.9) !important;
  border-color: rgba(111, 232, 255, 0.16) !important;
}

.nexora-mini-products i,
.nexora-phone-icon,
.nexora-featured-price span,
.nova-product-card .product-image span {
  border-radius: 8px !important;
  background: linear-gradient(135deg, #58f5ff, #8b5cf6 58%, #ff3d81) !important;
  color: #030714 !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2), 0 14px 30px rgba(88, 245, 255, 0.18) !important;
  transform: none !important;
}

.nexora-feature-row {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.nexora-feature-row article {
  border-radius: 8px !important;
  padding: 18px !important;
}

.nexora-feature-row p,
.nexora-template-band p,
.nexora-live-column p,
.nexora-catalog-card .product-body p {
  color: rgba(226, 236, 255, 0.72) !important;
}

.nexora-store-wall {
  gap: 18px !important;
}

.nexora-featured-package,
.nexora-template-band,
.nexora-live-column > div {
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(88, 245, 255, 0.08), rgba(139, 92, 246, 0.08)),
    rgba(12, 16, 24, 0.9) !important;
}

.nova-market-layout {
  align-items: start !important;
}

.filter-panel,
.store-results {
  border-radius: 8px !important;
}

.store-results::before {
  display: none !important;
}

.nova-product-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 16px !important;
  align-items: stretch !important;
}

.nova-product-grid .nexora-catalog-card,
.nova-product-grid .nexora-catalog-card:nth-child(7n+1),
.nova-product-grid .nexora-catalog-card:nth-child(7n+6),
.nova-product-grid .nexora-catalog-card:nth-child(3n+2) {
  grid-column: auto !important;
  transform: none !important;
}

.nexora-catalog-card {
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 8px !important;
  clip-path: none !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, rgba(21, 28, 40, 0.96), rgba(10, 13, 20, 0.98)) !important;
  border: 1px solid rgba(111, 232, 255, 0.18) !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28) !important;
}

.nexora-catalog-card::before,
.nexora-catalog-card::after,
.nexora-orbit-line {
  display: none !important;
}

.nexora-card-ribbon {
  left: 14px !important;
  top: 14px !important;
  z-index: 6 !important;
  width: auto !important;
  height: auto !important;
  padding: 7px 10px !important;
  display: inline-flex !important;
  border-radius: 999px !important;
  clip-path: none !important;
  background: rgba(9, 14, 30, 0.84) !important;
  border: 1px solid rgba(111, 232, 255, 0.36) !important;
  color: #dff9ff !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32) !important;
}

.nexora-card-ribbon span {
  rotate: 0deg !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.06em !important;
}

.nexora-catalog-card .product-image {
  height: 190px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  clip-path: none !important;
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0.06), rgba(8, 10, 16, 0.68)),
    var(--pkg-art) center / cover no-repeat !important;
  filter: saturate(1.04) contrast(1.02) !important;
}

.nexora-catalog-card .product-image::after {
  background:
    linear-gradient(180deg, transparent, rgba(8, 10, 16, 0.46)),
    linear-gradient(90deg, rgba(111, 232, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(139, 92, 246, 0.07) 1px, transparent 1px) !important;
  background-size: auto, 32px 32px, 32px 32px !important;
  opacity: 0.45 !important;
}

.nova-card-code {
  right: 12px !important;
  bottom: 12px !important;
  border-radius: 999px !important;
  background: rgba(8, 10, 16, 0.8) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
}

.badge-row {
  top: 14px !important;
  right: 12px !important;
}

.badge-row strong {
  border-radius: 999px !important;
  background: rgba(168, 85, 247, 0.82) !important;
}

.badge-row strong.sale {
  background: rgba(255, 61, 129, 0.88) !important;
  color: #ffffff !important;
}

.nexora-catalog-card .product-body {
  padding: 16px !important;
}

.nexora-card-meta {
  margin-bottom: 10px !important;
}

.nexora-card-meta span,
.product-category {
  color: #7df7ff !important;
}

.nexora-catalog-card .product-body h3 {
  font-size: 1.08rem !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.nexora-catalog-card .product-body p {
  min-height: 48px !important;
  font-size: 0.9rem !important;
}

.nexora-catalog-card .product-foot {
  border-top-color: rgba(111, 232, 255, 0.14) !important;
  align-items: center !important;
}

.nexora-catalog-card .price-stack strong {
  color: #ffffff !important;
  text-shadow: none !important;
}

.nexora-catalog-card .add-btn {
  min-width: 82px !important;
  border-radius: 8px !important;
  clip-path: none !important;
}

.nexora-catalog-card .wishlist-btn {
  margin-top: 10px !important;
  border-radius: 8px !important;
  border-style: solid !important;
  color: #dff9ff !important;
}

.nexora-catalog-card:hover,
.nova-product-grid .nexora-catalog-card:nth-child(3n+2):hover {
  transform: translateY(-4px) !important;
  border-color: rgba(111, 232, 255, 0.42) !important;
}

@media (max-width: 1120px) {
  .nova-product-grid,
  .nexora-feature-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .nova-store-hero {
    padding: 18px !important;
  }

  .nexora-hero-checks,
  .nova-product-grid,
  .nexora-feature-row {
    grid-template-columns: 1fr !important;
  }

  .nexora-preview-stage {
    min-height: 330px !important;
  }

  .nexora-catalog-card .product-image {
    height: 176px !important;
  }

  .nexora-catalog-card .product-body p {
    min-height: 0 !important;
  }
}

/* Nexora Apex premium gaming storefront */
:root {
  --brand: #6fe8ff;
  --brand-2: #8b5cf6;
  --brand-3: #ff3d81;
  --cyan: #58f5ff;
  --danger: #ff375f;
  --gold: #ffd166;
  --bg: #050712;
  --bg-2: #090d1f;
  --panel: rgba(11, 16, 34, 0.72);
  --panel-2: rgba(16, 22, 45, 0.82);
  --line: rgba(111, 232, 255, 0.24);
  --line-2: rgba(139, 92, 246, 0.32);
  --text: #f8fbff;
  --muted: #c6d3e8;
  --soft: #8795b4;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(88, 245, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(139, 92, 246, 0.24), transparent 34rem),
    radial-gradient(circle at 50% 95%, rgba(255, 61, 129, 0.12), transparent 32rem),
    linear-gradient(180deg, #040510 0%, #070a18 48%, #040510 100%) !important;
  color: var(--text) !important;
}

body::before {
  background:
    linear-gradient(180deg, rgba(5, 7, 18, 0.42), rgba(5, 7, 18, 0.92)),
    radial-gradient(circle at 55% 18%, rgba(111, 232, 255, 0.16), transparent 30rem),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 9, 20, 0.88), rgba(7, 9, 20, 0.96)) !important;
  background-size: auto, auto, 56px 56px, 56px 56px, 170% auto !important;
  opacity: 0.82 !important;
}

#bgCanvas {
  opacity: 0.5 !important;
  mix-blend-mode: screen;
}

h1,
h2,
h3,
.brand,
.eyebrow,
.price-stack strong,
.stat-card strong {
  font-family: Rajdhani, Inter, system-ui, sans-serif !important;
}

.site-nav {
  top: 30px !important;
  background: rgba(5, 9, 22, 0.7) !important;
  border: 1px solid rgba(111, 232, 255, 0.16) !important;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.05) !important;
  backdrop-filter: blur(22px) saturate(1.35) !important;
}

.nav-links a,
.mobile-drawer a,
.icon-btn,
.cart-button,
.language-picker,
.discord-link {
  border-radius: 8px !important;
}

.nav-links a.active,
.nav-links a:hover,
.mobile-drawer a.active,
.mobile-drawer a:hover {
  background: linear-gradient(135deg, rgba(111, 232, 255, 0.16), rgba(139, 92, 246, 0.18)) !important;
  color: #ffffff !important;
  box-shadow: inset 0 0 0 1px rgba(111, 232, 255, 0.18) !important;
}

.promo-strip {
  background: linear-gradient(90deg, rgba(88, 245, 255, 0.18), rgba(139, 92, 246, 0.22), rgba(255, 61, 129, 0.16)) !important;
  border-bottom: 1px solid rgba(111, 232, 255, 0.18) !important;
}

.brand-logo {
  filter: drop-shadow(0 0 24px rgba(88, 245, 255, 0.32)) !important;
}

.primary-btn,
.add-btn,
.discord-link,
.support-form button,
.floating-cart button,
#checkoutBtn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #58f5ff 0%, #8b5cf6 52%, #ff3d81 100%) !important;
  color: #030714 !important;
  border: 0 !important;
  box-shadow: 0 18px 44px rgba(88, 245, 255, 0.2), 0 0 30px rgba(139, 92, 246, 0.18) !important;
}

.primary-btn::after,
.add-btn::after,
.discord-link::after,
.support-form button::after,
.floating-cart button::after,
#checkoutBtn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255,255,255,0.45) 46%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.primary-btn:hover::after,
.add-btn:hover::after,
.discord-link:hover::after,
.support-form button:hover::after,
.floating-cart button:hover::after,
#checkoutBtn:hover::after {
  transform: translateX(120%);
}

.secondary-btn,
.text-btn,
.category-pill,
.nova-chip,
.select-input,
.search-input,
input,
select,
textarea,
.icon-btn,
.cart-button,
.language-picker {
  background: rgba(10, 15, 31, 0.72) !important;
  border: 1px solid rgba(111, 232, 255, 0.15) !important;
  color: var(--text) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035) !important;
}

.eyebrow {
  color: #7df7ff !important;
  letter-spacing: 0.11em !important;
  text-transform: uppercase;
}

.hero-section.apex-hero {
  min-height: min(880px, calc(100vh - 46px));
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.7fr);
  gap: 28px;
  align-items: center;
  padding: clamp(32px, 6vw, 88px);
  border: 1px solid rgba(111, 232, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(5, 8, 20, 0.92), rgba(7, 10, 24, 0.52) 52%, rgba(8, 6, 22, 0.86)),
    radial-gradient(circle at 76% 42%, rgba(139, 92, 246, 0.24), transparent 24rem),
    url("/assets/nexora-premium/hero-background-4k.png") center / cover no-repeat !important;
  box-shadow: 0 28px 110px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255,255,255,0.055);
}

.hero-section.apex-hero::before,
.nova-store-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 22%, rgba(88, 245, 255, 0.16), transparent 20rem),
    radial-gradient(circle at 86% 18%, rgba(255, 61, 129, 0.16), transparent 18rem),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 82px);
  animation: apexDrift 15s ease-in-out infinite alternate;
}

.hero-section.apex-hero::after,
.nova-store-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -36% 8%;
  height: 58%;
  z-index: -1;
  background: conic-gradient(from 160deg, transparent, rgba(88, 245, 255, 0.28), rgba(139, 92, 246, 0.24), transparent);
  filter: blur(30px);
  opacity: 0.8;
  animation: apexPulse 5s ease-in-out infinite alternate;
}

.hero-copy h1,
.nova-hero-copy h1 {
  max-width: 880px;
  font-size: clamp(3.2rem, 7vw, 7.4rem) !important;
  line-height: 0.88 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
}

.hero-copy p,
.nova-hero-copy p {
  max-width: 690px;
  color: rgba(226, 235, 250, 0.82) !important;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.hero-actions,
.trust-row {
  gap: 12px !important;
}

.trust-row span,
.cart-trust span,
.nexora-hero-checks span,
.apex-card-perks span {
  background: rgba(8, 13, 28, 0.62) !important;
  border: 1px solid rgba(111, 232, 255, 0.14) !important;
  color: rgba(240, 247, 255, 0.9) !important;
  backdrop-filter: blur(14px);
}

.hero-market-card.apex-showcase {
  transform-style: preserve-3d;
  min-height: 520px;
  border-radius: 8px !important;
  background:
    linear-gradient(145deg, rgba(12, 18, 38, 0.78), rgba(20, 10, 38, 0.68)),
    radial-gradient(circle at 50% 20%, rgba(88, 245, 255, 0.15), transparent 18rem) !important;
  border: 1px solid rgba(111, 232, 255, 0.2) !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.06) !important;
}

.apex-product-orb {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 250px;
  margin: 18px 0;
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(88, 245, 255, 0.2), transparent 64%),
    linear-gradient(135deg, rgba(88, 245, 255, 0.08), rgba(139, 92, 246, 0.12));
  border: 1px solid rgba(111, 232, 255, 0.14);
}

.apex-product-orb span {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #58f5ff, #8b5cf6 58%, #ff3d81);
  color: #06101c;
  font-weight: 1000;
  font-size: 1.55rem;
  box-shadow: 0 22px 70px rgba(88, 245, 255, 0.26);
  animation: apexFloat 4.8s ease-in-out infinite;
}

.apex-product-orb strong {
  font-size: 2rem;
  color: #ffffff;
}

.stats-band {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.stat-card,
.info-card,
.support-card,
.dashboard-panel,
.news-card,
.glass-card,
.faq-group,
.policy-card,
.filter-panel,
.store-results,
.nova-gateway-card,
.nexora-feature-row article,
.nexora-template-band,
.nexora-featured-package,
.nexora-live-column > div,
.testimonial-grid article,
.offer-card,
.cta-band,
.nexora-final-cta {
  border-radius: 8px !important;
  background:
    linear-gradient(145deg, rgba(17, 24, 49, 0.72), rgba(7, 11, 25, 0.82)) !important;
  border: 1px solid rgba(111, 232, 255, 0.14) !important;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(18px) saturate(1.2);
}

.stat-card strong {
  color: #ffffff !important;
  text-shadow: 0 0 24px rgba(88, 245, 255, 0.3);
}

.section-head {
  align-items: end !important;
}

.section-head h2,
.nexora-template-band h2,
.nexora-featured-package h2,
.activity-section h2,
.nexora-final-cta h2 {
  font-size: clamp(2rem, 3vw, 3.6rem) !important;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
}

.section-head a {
  color: #7df7ff !important;
  border-bottom: 1px solid rgba(125, 247, 255, 0.5);
}

.nova-store-hero {
  min-height: 680px;
  position: relative;
  isolation: isolate;
  border-radius: 8px !important;
  background:
    linear-gradient(100deg, rgba(5, 8, 20, 0.94), rgba(10, 13, 34, 0.56) 58%, rgba(7, 5, 22, 0.9)),
    url("/assets/nexora-premium/hero-background-4k.png") center / cover no-repeat !important;
  border-color: rgba(111, 232, 255, 0.2) !important;
}

.nexora-preview-stage::before {
  background:
    radial-gradient(circle, rgba(88, 245, 255, 0.18), rgba(139, 92, 246, 0.18), transparent 70%),
    linear-gradient(135deg, rgba(255,255,255,0.07), transparent) !important;
}

.nexora-desktop-frame,
.nexora-phone-frame {
  background: rgba(8, 13, 29, 0.9) !important;
  border-color: rgba(111, 232, 255, 0.18) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.44), 0 0 40px rgba(88, 245, 255, 0.12) !important;
}

.nexora-preview-hero {
  background:
    linear-gradient(135deg, rgba(88, 245, 255, 0.2), rgba(139, 92, 246, 0.24)),
    url("/assets/nexora-premium/banner-bundles.png") center / cover no-repeat !important;
}

.nova-product-grid,
.apex-featured-row,
.apex-best-grid {
  perspective: 1200px;
}

.nexora-catalog-card {
  transform-style: preserve-3d;
  background:
    linear-gradient(180deg, rgba(18, 27, 55, 0.92), rgba(7, 10, 24, 0.98)) !important;
  border-color: rgba(111, 232, 255, 0.16) !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255,255,255,0.045) !important;
}

.nexora-catalog-card::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(88, 245, 255, 0.16), rgba(139, 92, 246, 0.12), rgba(255, 61, 129, 0.1));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.nexora-catalog-card:hover::before {
  opacity: 1;
}

.nexora-catalog-card:hover,
.nova-product-grid .nexora-catalog-card:nth-child(3n+2):hover {
  transform: translateY(-8px) rotateX(2deg) !important;
  border-color: rgba(111, 232, 255, 0.38) !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42), 0 0 34px rgba(88, 245, 255, 0.12) !important;
}

.nexora-catalog-card .product-image {
  height: 214px !important;
  background:
    linear-gradient(180deg, rgba(4, 7, 18, 0.02), rgba(4, 7, 18, 0.72)),
    var(--pkg-art) center / cover no-repeat !important;
}

.nexora-catalog-card .product-image::after {
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,0.14) 48%, transparent 54%),
    radial-gradient(circle at 70% 18%, rgba(88, 245, 255, 0.22), transparent 38%),
    linear-gradient(180deg, transparent, rgba(4, 7, 18, 0.58)) !important;
  opacity: 0.78 !important;
}

.nexora-card-ribbon {
  background: rgba(5, 8, 20, 0.78) !important;
  border-color: rgba(111, 232, 255, 0.34) !important;
  color: #dcfbff !important;
  backdrop-filter: blur(14px);
}

.badge-row strong {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.92), rgba(88, 245, 255, 0.72)) !important;
  color: #ffffff !important;
}

.badge-row strong.sale,
.badge-row strong.discount {
  background: linear-gradient(135deg, #ff3d81, #ffd166) !important;
  color: #19050c !important;
}

.apex-card-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 4px;
}

.apex-card-perks span {
  min-height: 30px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.nexora-catalog-card .product-body h3 {
  font-size: 1.22rem !important;
  color: #ffffff !important;
}

.nexora-catalog-card .price-stack strong {
  font-size: 1.4rem !important;
  color: #ffffff !important;
}

.nexora-catalog-card .add-btn {
  min-width: 102px !important;
}

.offer-card {
  position: relative;
  overflow: hidden;
}

.offer-card::before,
.cta-band::before,
.nexora-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(88, 245, 255, 0.08), transparent);
  transform: translateX(-100%);
  animation: apexSweep 5s ease-in-out infinite;
  pointer-events: none;
}

.activity-section,
.nova-gateway,
.nexora-store-wall {
  gap: 18px !important;
}

.purchase-feed div,
.leader-row,
.cart-items > div,
.support-article,
.faq-item {
  background: rgba(9, 14, 30, 0.68) !important;
  border: 1px solid rgba(111, 232, 255, 0.12) !important;
  border-radius: 8px !important;
}

.testimonial-grid article p::before {
  content: "“";
  color: #7df7ff;
  font-size: 2.4rem;
  line-height: 0;
}

.apex-home-faq {
  max-width: 980px;
  margin-inline: auto;
}

.faq-item button {
  color: #ffffff !important;
}

.faq-item.open {
  border-color: rgba(111, 232, 255, 0.3) !important;
  box-shadow: 0 0 26px rgba(88, 245, 255, 0.08);
}

.floating-cart,
.support-widget,
.cart-panel,
.login-modal {
  background:
    linear-gradient(145deg, rgba(15, 22, 48, 0.88), rgba(6, 9, 22, 0.96)) !important;
  border: 1px solid rgba(111, 232, 255, 0.18) !important;
  box-shadow: 0 24px 80px rgba(0,0,0,0.44), 0 0 34px rgba(88,245,255,0.1) !important;
  backdrop-filter: blur(22px) saturate(1.25);
}

.support-launcher {
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 50% 36%, rgba(255,255,255,0.3), transparent 28%),
    linear-gradient(135deg, #58f5ff, #8b5cf6 60%, #ff3d81) !important;
  box-shadow: 0 18px 50px rgba(88, 245, 255, 0.24), 0 0 40px rgba(139, 92, 246, 0.2) !important;
}

.support-top,
.support-hero {
  background: linear-gradient(135deg, rgba(88, 245, 255, 0.13), rgba(139, 92, 246, 0.16)) !important;
}

.site-footer {
  border-top: 1px solid rgba(111, 232, 255, 0.12) !important;
  background: rgba(4, 6, 16, 0.72);
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes apexDrift {
  from { transform: translate3d(-1.4%, -1%, 0) scale(1); }
  to { transform: translate3d(1.4%, 1%, 0) scale(1.03); }
}

@keyframes apexPulse {
  from { opacity: 0.55; transform: scaleX(0.96); }
  to { opacity: 0.88; transform: scaleX(1.02); }
}

@keyframes apexFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes apexSweep {
  0%, 45% { transform: translateX(-110%); }
  75%, 100% { transform: translateX(110%); }
}

@media (max-width: 1180px) {
  .hero-section.apex-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-market-card.apex-showcase {
    min-height: 0;
  }

  .stats-band {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  html,
  body,
  #app {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body::before {
    background-size: auto, auto, 44px 44px, 44px 44px, cover !important;
    background-attachment: scroll !important;
  }

  .site-nav {
    top: 30px !important;
  }

  .hero-section.apex-hero,
  .nova-store-hero {
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 22px !important;
    min-height: auto;
    display: block !important;
    grid-template-columns: minmax(0, 1fr) !important;
    overflow: hidden !important;
    box-sizing: border-box;
  }

  .hero-copy,
  .nova-hero-copy,
  .hero-market-card,
  .hero-market-card.apex-showcase,
  .apex-showcase,
  .nexora-preview-stage,
  .nexora-desktop-frame,
  .nexora-phone-frame {
    min-width: 0 !important;
    width: min(100%, 286px) !important;
    max-width: 286px !important;
    box-sizing: border-box;
  }

  .hero-copy h1,
  .nova-hero-copy h1 {
    max-width: 286px !important;
    font-size: clamp(1.46rem, 7.6vw, 2.05rem) !important;
    line-height: 1 !important;
    overflow-wrap: anywhere;
  }

  .hero-copy p,
  .nova-hero-copy p {
    max-width: 286px !important;
    font-size: 0.92rem !important;
  }

  .hero-market-card.apex-showcase {
    padding: 16px !important;
    margin-top: 22px !important;
  }

  .hero-market-card .market-top,
  .goal-mini > div {
    flex-wrap: wrap;
  }

  .hero-market-card .market-top strong {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .apex-product-orb {
    min-height: 210px;
  }

  .apex-product-orb span {
    width: 92px;
    height: 92px;
    border-radius: 20px;
  }

  .stats-band,
  .apex-card-perks {
    grid-template-columns: 1fr !important;
  }

  .nexora-catalog-card .product-image {
    height: 190px !important;
  }

  .floating-cart {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    width: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Nexora Prism cursor shape */
@media (pointer: fine) and (hover: hover) {
  .cursor-core {
    --cursor-size: 24px;
    border-radius: 0 !important;
    clip-path: polygon(50% 0%, 88% 22%, 100% 62%, 58% 100%, 16% 82%, 0% 36%);
    background:
      radial-gradient(circle at 42% 36%, rgba(255,255,255,0.95) 0 8%, transparent 9%),
      conic-gradient(from 35deg, #58f5ff, #8b5cf6, #ff3d81, #58f5ff) !important;
    border: 1px solid rgba(255,255,255,0.42);
    box-shadow:
      0 0 18px rgba(88, 245, 255, 0.72),
      0 0 42px rgba(139, 92, 246, 0.42),
      inset 0 0 12px rgba(255,255,255,0.28) !important;
    transform-origin: center;
  }

  .cursor-core::before {
    inset: -9px !important;
    border-radius: 0 !important;
    clip-path: polygon(50% 0%, 92% 20%, 100% 70%, 54% 100%, 8% 76%, 0% 30%);
    border: 1px solid rgba(88, 245, 255, 0.36) !important;
    background: linear-gradient(135deg, rgba(88,245,255,0.08), rgba(255,61,129,0.06));
    opacity: 0.82 !important;
  }

  .cursor-core::after {
    inset: -18px !important;
    border-radius: 0 !important;
    clip-path: polygon(50% 0%, 96% 26%, 88% 82%, 42% 100%, 0% 60%, 12% 12%);
    border: 1px dashed rgba(139, 92, 246, 0.36) !important;
    opacity: 0.5 !important;
  }

  .cursor-trail {
    width: 54px !important;
    height: 54px !important;
    border-radius: 0 !important;
    clip-path: polygon(50% 0%, 86% 18%, 100% 50%, 82% 86%, 50% 100%, 14% 82%, 0% 50%, 18% 14%);
    border-color: rgba(88, 245, 255, 0.38) !important;
    background:
      radial-gradient(circle, rgba(88, 245, 255, 0.08), transparent 58%),
      conic-gradient(from 180deg, rgba(88,245,255,0.18), rgba(139,92,246,0.08), rgba(255,61,129,0.14), rgba(88,245,255,0.18)) !important;
    box-shadow:
      inset 0 0 28px rgba(88, 245, 255, 0.12),
      0 0 34px rgba(88, 245, 255, 0.16) !important;
  }

  .cursor-core[data-cursor-state="hover"] {
    --cursor-size: 48px;
    clip-path: polygon(50% 0%, 92% 24%, 92% 74%, 50% 100%, 8% 74%, 8% 24%) !important;
    background:
      linear-gradient(rgba(5,7,18,0.86), rgba(5,7,18,0.86)) padding-box,
      conic-gradient(from var(--cursor-angle, 0deg), #58f5ff, #8b5cf6, #ff3d81, #58f5ff) border-box !important;
    border: 2px solid transparent !important;
    box-shadow: 0 0 30px rgba(88,245,255,0.28), inset 0 0 20px rgba(139,92,246,0.18) !important;
    animation: cursorPrismSpin 1.2s linear infinite !important;
  }

  .cursor-core[data-cursor-state="hover"]::before {
    border-style: solid !important;
    transform: rotate(18deg);
  }

  .cursor-core[data-cursor-state="view"],
  .cursor-core[data-cursor-state="buy"] {
    --cursor-size: 76px;
    clip-path: polygon(50% 0%, 94% 26%, 86% 82%, 50% 100%, 14% 82%, 6% 26%) !important;
    background:
      linear-gradient(135deg, rgba(88, 245, 255, 0.94), rgba(139, 92, 246, 0.94) 54%, rgba(255, 61, 129, 0.94)) !important;
    border: 1px solid rgba(255,255,255,0.42) !important;
    box-shadow:
      0 0 42px rgba(88, 245, 255, 0.38),
      0 0 90px rgba(139, 92, 246, 0.3) !important;
  }

  .cursor-core[data-cursor-state="buy"] {
    background:
      linear-gradient(135deg, #ff3d81, #ffd166 46%, #58f5ff) !important;
    box-shadow:
      0 0 44px rgba(255, 61, 129, 0.55),
      0 0 90px rgba(255, 209, 102, 0.24) !important;
  }

  .cursor-core[data-cursor-state="view"] .cursor-label,
  .cursor-core[data-cursor-state="buy"] .cursor-label {
    color: #040713 !important;
    text-shadow: none;
  }

  .cursor-trail[data-cursor-state="view"],
  .cursor-trail[data-cursor-state="buy"] {
    width: 104px !important;
    height: 104px !important;
    clip-path: polygon(50% 0%, 90% 18%, 100% 62%, 68% 100%, 20% 88%, 0% 42%) !important;
  }

  .cursor-particles i {
    border-radius: 0 !important;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: linear-gradient(135deg, #58f5ff, #ff3d81) !important;
  }

  body.cursor-rare .cursor-core {
    clip-path: polygon(50% 0%, 100% 28%, 88% 84%, 50% 100%, 12% 84%, 0% 28%) !important;
    background: conic-gradient(from 0deg, #ffd166, #58f5ff, #ff3d81, #8b5cf6, #ffd166) !important;
  }
}

@keyframes cursorPrismSpin {
  from {
    --cursor-angle: 0deg;
    rotate: 0deg;
  }
  to {
    --cursor-angle: 360deg;
    rotate: 360deg;
  }
}

/* Apex final color cleanup */
.product-category,
.nexora-card-meta span,
.nexora-card-meta .product-category,
.nexora-catalog-card .wishlist-btn,
.nexora-payment-pills em,
.faq-group .eyebrow,
.faq-item strong,
.support-article span,
.support-form span,
.support-hero .online-dot + strong,
.nexora-support-preview span,
.nexora-support-preview em {
  color: #7df7ff !important;
}

.nova-chip.active,
.category-pill.active,
.nexora-hero-checks span,
.faq-item.open,
.support-tabs button.active,
.support-article:hover {
  border-color: rgba(111, 232, 255, 0.42) !important;
  background:
    linear-gradient(135deg, rgba(88, 245, 255, 0.14), rgba(139, 92, 246, 0.14)) !important;
}

.badge-row strong.sale,
.badge-row strong.discount {
  background: linear-gradient(135deg, #ff3d81, #8b5cf6) !important;
  color: #ffffff !important;
}

.nexora-featured-price span,
.nexora-phone-icon,
.nexora-mini-products i,
.nova-product-card .product-image span,
.media-main span,
.apex-product-orb span {
  background: linear-gradient(135deg, #58f5ff, #8b5cf6 56%, #ff3d81) !important;
  color: #030714 !important;
}

.progress span,
.goal-mini .progress span,
.nova-goal-card .progress span {
  background: linear-gradient(90deg, #58f5ff, #8b5cf6, #ff3d81) !important;
}

.online-dot,
.nexora-hero-checks span::before {
  background: #58f5ff !important;
  box-shadow: 0 0 0 4px rgba(88, 245, 255, 0.16), 0 0 16px rgba(88, 245, 255, 0.5) !important;
}

/* Apex purple support/chat finish */
.support-widget {
  background:
    linear-gradient(180deg, rgba(10, 5, 28, 0.96), rgba(5, 7, 18, 0.98)) !important;
  border-color: rgba(139, 92, 246, 0.42) !important;
}

.support-widget::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 61, 129, 0.22), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(139, 92, 246, 0.26), transparent 38%),
    linear-gradient(90deg, rgba(88, 245, 255, 0.08), transparent 34%, rgba(255, 61, 129, 0.12)) !important;
}

.support-top,
.support-hero {
  background:
    linear-gradient(135deg, rgba(23, 8, 58, 0.96), rgba(80, 18, 108, 0.76)),
    linear-gradient(90deg, rgba(88, 245, 255, 0.08), transparent 42%, rgba(255, 61, 129, 0.13)) !important;
  border-color: rgba(139, 92, 246, 0.34) !important;
}

.support-tabs {
  background: rgba(6, 8, 22, 0.52) !important;
  border-color: rgba(139, 92, 246, 0.34) !important;
}

.support-tabs button.active {
  background: linear-gradient(135deg, rgba(88, 245, 255, 0.16), rgba(139, 92, 246, 0.34), rgba(255, 61, 129, 0.2)) !important;
}

.support-avatars span,
.support-avatars span:nth-child(2),
.support-avatars span:nth-child(3),
.support-avatars span:nth-child(4) {
  background: linear-gradient(135deg, #58f5ff, #8b5cf6 55%, #ff3d81) !important;
  color: #050712 !important;
}

.agent-message,
.support-form,
.support-form textarea,
.support-article {
  background: rgba(8, 9, 28, 0.9) !important;
  border-color: rgba(139, 92, 246, 0.28) !important;
}

.agent-message::before,
.support-form span,
.support-powered,
.support-article span {
  color: #7df7ff !important;
}

/* Final Nexora brand polish */
.brand {
  min-width: 212px !important;
}

.brand::before {
  display: none !important;
}

.brand-logo {
  width: 236px !important;
  height: 58px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 0 14px rgba(111, 232, 255, 0.2)) !important;
}

.nova-faq-console,
.nova-faq-console > div,
.page-hero.slim,
.page-hero.category-hero,
.nexora-support-hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(139, 92, 246, 0.18), transparent 24rem),
    radial-gradient(circle at 18% 4%, rgba(103, 232, 249, 0.09), transparent 22rem),
    linear-gradient(100deg, rgba(7, 10, 27, 0.96), rgba(12, 13, 42, 0.84) 58%, rgba(21, 8, 54, 0.78)),
    linear-gradient(90deg, rgba(111, 232, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px) !important;
  background-size: auto, auto, auto, 38px 38px, 38px 38px !important;
  border-color: rgba(111, 232, 255, 0.2) !important;
}

.nova-faq-console > div {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035), 0 22px 70px rgba(0,0,0,0.32) !important;
}

@media (max-width: 720px) {
  .brand {
    min-width: 150px !important;
  }

  .brand-logo {
    width: 166px !important;
    height: 44px !important;
  }
}

/* Human-made simplicity pass */
:root {
  --brand: #67e8f9;
  --brand-2: #8b5cf6;
  --brand-3: #f43f8b;
  --bg: #070914;
  --bg-2: #0b1020;
  --panel: rgba(12, 17, 34, 0.82);
  --panel-2: rgba(15, 22, 42, 0.92);
  --line: rgba(148, 163, 184, 0.18);
  --line-2: rgba(103, 232, 249, 0.22);
  --muted: #b9c3d8;
  --soft: #8390aa;
}

body {
  background:
    radial-gradient(circle at 74% -8%, rgba(139, 92, 246, 0.2), transparent 32rem),
    radial-gradient(circle at 18% 4%, rgba(103, 232, 249, 0.1), transparent 26rem),
    linear-gradient(180deg, #070914 0%, #090b16 46%, #060712 100%) !important;
}

body::before {
  background:
    radial-gradient(circle at 28% 12%, rgba(103, 232, 249, 0.12), transparent 24rem),
    radial-gradient(circle at 78% 8%, rgba(139, 92, 246, 0.18), transparent 30rem),
    linear-gradient(180deg, rgba(7, 9, 20, 0.72), rgba(7, 9, 20, 0.94)) !important;
  opacity: 0.28 !important;
  filter: saturate(0.9) contrast(0.95) !important;
}

#bgCanvas {
  opacity: 0.12 !important;
}

.site-nav {
  background: rgba(7, 10, 23, 0.86) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26) !important;
}

.promo-strip {
  background: rgba(11, 16, 32, 0.92) !important;
  border-bottom-color: rgba(103, 232, 249, 0.16) !important;
}

.hero-section,
.nova-store-hero,
.page-hero,
.nexora-about-hero,
.nova-faq-console,
.nova-faq-console > div,
.nova-community-hero,
.category-hero,
.glass-card,
.info-card,
.support-card,
.faq-group,
.faq-item,
.news-card,
.policy-card,
.dashboard-panel,
.store-results,
.filter-panel,
.nova-product-card,
.nexora-catalog-card,
.nexora-featured-package,
.nexora-live-column > div,
.nexora-template-band,
.nexora-support-preview,
.support-widget,
.support-top,
.support-hero,
.support-form,
.agent-message,
.nexora-preview-stage,
.nexora-desktop-frame,
.nexora-phone-frame {
  clip-path: none !important;
}

.hero-section,
.nova-store-hero,
.page-hero,
.nexora-about-hero,
.nova-faq-console,
.nova-community-hero,
.category-hero {
  min-height: auto !important;
  border-radius: 12px !important;
  background:
    radial-gradient(circle at 76% 18%, rgba(139, 92, 246, 0.22), transparent 24rem),
    radial-gradient(circle at 18% 4%, rgba(103, 232, 249, 0.11), transparent 22rem),
    linear-gradient(100deg, rgba(9, 13, 28, 0.96), rgba(14, 17, 43, 0.9) 60%, rgba(24, 12, 52, 0.78)) !important;
  border: 1px solid rgba(148, 163, 184, 0.18) !important;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28) !important;
}

.hero-section::before,
.hero-section::after,
.nova-store-hero::before,
.nova-store-hero::after,
.page-hero::after,
.nexora-about-hero::after,
.nexora-template-band::after,
.store-results::before,
.nexora-catalog-card::before,
.nexora-catalog-card::after {
  display: none !important;
}

.glass-card,
.info-card,
.support-card,
.faq-group,
.news-card,
.policy-card,
.dashboard-panel,
.store-results,
.filter-panel,
.nova-product-card,
.nexora-catalog-card,
.nexora-featured-package,
.nexora-live-column > div,
.nexora-template-band {
  border-radius: 10px !important;
  background: rgba(12, 17, 34, 0.86) !important;
  border: 1px solid rgba(148, 163, 184, 0.16) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22) !important;
}

.hero-copy h1,
.nova-hero-copy h1,
.page-hero h1,
.nova-faq-console h1 {
  max-width: 760px !important;
  font-size: clamp(2.35rem, 5.2vw, 4.8rem) !important;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
}

.hero-copy p,
.nova-hero-copy p,
.page-hero p,
.nova-faq-console p {
  max-width: 660px !important;
  color: #c5d0e4 !important;
  font-size: 1rem !important;
}

.eyebrow {
  color: #67e8f9 !important;
  letter-spacing: 0.08em !important;
}

.primary-btn,
.add-btn,
.discord-link,
.support-form button,
.floating-cart button,
#checkoutBtn {
  border-radius: 8px !important;
  background: linear-gradient(135deg, #67e8f9, #8b5cf6 58%, #f43f8b) !important;
  box-shadow: 0 10px 24px rgba(103, 232, 249, 0.16) !important;
}

.secondary-btn,
.text-btn,
.category-pill,
.nova-chip,
.select-input,
.search-input,
input,
select,
textarea {
  border-radius: 8px !important;
  background: rgba(9, 14, 28, 0.88) !important;
  border-color: rgba(148, 163, 184, 0.18) !important;
}

.trust-row,
.nexora-hero-checks,
.nova-signal-strip,
.stats-band {
  background: rgba(7, 10, 22, 0.74) !important;
  border-color: rgba(148, 163, 184, 0.14) !important;
  box-shadow: none !important;
}

.nexora-preview-stage,
.hero-market-card,
.apex-showcase {
  background: rgba(10, 15, 31, 0.72) !important;
  border-color: rgba(148, 163, 184, 0.14) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24) !important;
}

.hero-section.apex-hero,
.nova-store-hero,
.page-hero,
.nexora-about-hero,
.nova-faq-console,
.nova-community-hero,
.category-hero,
.nexora-support-hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(139, 92, 246, 0.2), transparent 24rem),
    radial-gradient(circle at 18% 4%, rgba(103, 232, 249, 0.1), transparent 22rem),
    linear-gradient(100deg, rgba(9, 13, 28, 0.97), rgba(14, 17, 43, 0.9) 62%, rgba(24, 12, 52, 0.74)) !important;
}

.nova-store-hero {
  grid-template-columns: minmax(0, 1fr) !important;
  padding: clamp(34px, 6vw, 72px) !important;
}

.nova-store-hero .nova-hero-copy {
  max-width: 780px !important;
}

.nexora-preview-stage {
  display: none !important;
}

.hero-market-card.apex-showcase {
  max-width: 420px !important;
  align-self: center !important;
}

.apex-product-orb {
  min-height: 0 !important;
  height: auto !important;
  padding: 22px !important;
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: 18px !important;
  align-items: center !important;
  background: rgba(9, 14, 31, 0.88) !important;
  border: 1px solid rgba(148, 163, 184, 0.16) !important;
}

.apex-product-orb span {
  width: 74px !important;
  height: 74px !important;
  display: grid !important;
  place-items: center !important;
  font-size: 1.3rem !important;
}

.apex-product-orb strong {
  font-size: 2rem !important;
  text-align: left !important;
}

.apex-product-orb,
.nexora-phone-icon,
.nexora-mini-products i,
.nova-product-card .product-image span,
.media-main span {
  border-radius: 10px !important;
  background: linear-gradient(135deg, #67e8f9, #8b5cf6 58%, #f43f8b) !important;
  box-shadow: none !important;
}

.support-widget {
  border-radius: 10px !important;
  background: rgba(8, 9, 24, 0.96) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42) !important;
}

.support-top,
.support-hero {
  background: rgba(18, 13, 45, 0.92) !important;
}

.cursor-core {
  clip-path: none !important;
  border-radius: 50% !important;
}

.cursor-trail,
.cursor-particles i {
  clip-path: none !important;
  border-radius: 999px !important;
}

@media (prefers-reduced-motion: no-preference) {
  .nova-product-card:hover,
  .nexora-catalog-card:hover,
  .info-card:hover,
  .support-card:hover {
    transform: translateY(-3px) !important;
  }
}

.nova-hero-copy,
.nova-signal-strip,
.nova-signal-strip.compact,
.trust-row,
.nexora-hero-checks,
.stats-band,
.nexora-card-ribbon {
  clip-path: none !important;
  border-radius: 10px !important;
}

.nova-signal-strip,
.nova-signal-strip.compact {
  max-width: 920px !important;
  margin-top: 22px !important;
  padding: 16px 22px !important;
}

.nova-store-hero .nova-hero-copy {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Store polish pass: practical, human-made sales surface */
.nova-store-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px) !important;
  align-items: center !important;
  gap: clamp(28px, 5vw, 58px) !important;
}

.store-spotlight-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(9, 14, 31, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.store-spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(103, 232, 249, 0.18), transparent 38%),
    radial-gradient(circle at 80% 12%, rgba(244, 63, 139, 0.18), transparent 14rem);
}

.store-spotlight-card > * {
  position: relative;
  z-index: 1;
}

.store-spotlight-media {
  display: block;
  min-height: 180px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(4, 8, 18, 0.9);
}

.store-spotlight-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.store-spotlight-info {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.store-spotlight-info strong {
  display: block;
  color: #f8fafc;
  font-size: 1.08rem;
}

.store-spotlight-info span,
.store-spotlight-card p {
  color: #aebbd1;
}

.store-spotlight-info em {
  font-style: normal;
  color: #67e8f9;
  font-weight: 900;
  white-space: nowrap;
}

.store-spotlight-card p {
  margin: 0;
  line-height: 1.55;
}

.store-spotlight-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.store-spotlight-actions .primary-btn,
.store-spotlight-actions .secondary-btn {
  width: 100%;
  min-height: 42px;
  justify-content: center;
}

.nexora-catalog-card .product-image {
  min-height: 184px;
  background: rgba(4, 8, 18, 0.9) !important;
}

.nexora-catalog-card .product-image img {
  width: 100%;
  height: 100%;
  min-height: 184px;
  display: block;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  transform: scale(1.01);
}

.nexora-catalog-card .product-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(3, 7, 18, 0.72));
}

.nexora-catalog-card .badge-row,
.nexora-catalog-card .nova-card-code,
.nexora-catalog-card .nexora-orbit-line {
  z-index: 2;
}

.nexora-catalog-card .nova-card-code {
  opacity: 0.72;
  letter-spacing: 0.06em !important;
}

.nexora-catalog-card .product-body p {
  min-height: 3.2em;
}

.tebex-headless-note {
  margin-top: 8px !important;
  color: #67e8f9 !important;
  font-size: 0.82rem !important;
}

@media (max-width: 900px) {
  .nova-store-hero {
    grid-template-columns: 1fr !important;
  }

  .store-spotlight-card {
    max-width: 520px;
  }
}

@media (max-width: 720px) {
  .hero-copy h1,
  .nova-hero-copy h1,
  .page-hero h1,
  .nova-faq-console h1 {
    font-size: clamp(2rem, 10.5vw, 3.1rem) !important;
    line-height: 1 !important;
  }

  .nova-store-hero {
    padding: 28px !important;
  }

  .store-spotlight-card {
    padding: 14px;
  }

  .store-spotlight-media,
  .nexora-catalog-card .product-image,
  .nexora-catalog-card .product-image img {
    min-height: 150px;
  }

  .store-spotlight-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nova-store-hero {
    display: grid !important;
    width: calc(100% - 20px) !important;
    max-width: calc(100% - 20px) !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    background:
      radial-gradient(circle at 76% 12%, rgba(139, 92, 246, 0.34), transparent 16rem),
      radial-gradient(circle at 10% 4%, rgba(103, 232, 249, 0.2), transparent 14rem),
      linear-gradient(145deg, rgba(14, 22, 45, 0.99), rgba(20, 20, 57, 0.96) 58%, rgba(35, 17, 70, 0.92)) !important;
  }

  .nova-store-hero .nova-hero-copy,
  .store-spotlight-card,
  .nova-store-hero .nova-signal-strip {
    opacity: 1 !important;
    filter: none !important;
  }

  .nova-store-hero .nova-hero-copy h1,
  .nova-store-hero .nova-hero-copy p,
  .nova-store-hero .eyebrow {
    opacity: 1 !important;
    filter: none !important;
  }

  .nova-store-hero .nova-hero-copy h1 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 2px 18px rgba(103, 232, 249, 0.16) !important;
  }

  .nova-store-hero .nova-hero-copy p {
    color: #eef4ff !important;
  }

  .nova-quick-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .nexora-hero-checks {
    grid-template-columns: 1fr !important;
  }
}

.nova-store-hero::before,
.nova-store-hero::after {
  content: none !important;
  display: none !important;
}

.nova-store-hero > * {
  position: relative;
  z-index: 1;
}

/* BuiltByBit submission pass: simpler, quieter, easier to review */
body.cursor-disabled,
body.cursor-disabled * {
  cursor: default !important;
}

body.cursor-disabled button,
body.cursor-disabled a,
body.cursor-disabled select,
body.cursor-disabled label,
body.cursor-disabled [data-add],
body.cursor-disabled [data-wishlist],
body.cursor-disabled [data-category-filter],
body.cursor-disabled [data-open-chat],
body.cursor-disabled [data-open-login],
body.cursor-disabled .cart-button,
body.cursor-disabled .menu-button,
body.cursor-disabled .icon-btn,
body.cursor-disabled .primary-btn,
body.cursor-disabled .secondary-btn {
  cursor: pointer !important;
}

body.cursor-disabled input,
body.cursor-disabled textarea {
  cursor: text !important;
}

body.cursor-disabled .cursor-core,
body.cursor-disabled .cursor-trail,
body.cursor-disabled .cursor-particles {
  display: none !important;
}

body {
  background:
    radial-gradient(circle at 72% 0%, rgba(139, 92, 246, 0.12), transparent 28rem),
    linear-gradient(180deg, #070914 0%, #080b16 55%, #060711 100%) !important;
}

#bgCanvas {
  opacity: 0.045 !important;
}

.promo-strip {
  min-height: 28px !important;
  background: #080c18 !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12) !important;
}

.site-nav {
  background: rgba(7, 10, 20, 0.96) !important;
  border-color: rgba(148, 163, 184, 0.14) !important;
  box-shadow: none !important;
}

.hero-section,
.nova-store-hero,
.page-hero,
.nexora-about-hero,
.nova-faq-console,
.nova-community-hero,
.category-hero,
.nexora-support-hero {
  background:
    linear-gradient(135deg, rgba(13, 19, 38, 0.98), rgba(17, 16, 42, 0.94)) !important;
  border: 1px solid rgba(148, 163, 184, 0.16) !important;
  box-shadow: none !important;
}

.glass-card,
.info-card,
.support-card,
.faq-group,
.faq-item,
.news-card,
.policy-card,
.dashboard-panel,
.store-results,
.filter-panel,
.nova-product-card,
.nexora-catalog-card,
.nexora-featured-package,
.nexora-live-column > div,
.nexora-template-band,
.store-spotlight-card,
.stat-card,
.leader-row,
.testimonial-grid article {
  background: rgba(11, 16, 31, 0.92) !important;
  border: 1px solid rgba(148, 163, 184, 0.14) !important;
  box-shadow: none !important;
}

.primary-btn,
.add-btn,
.discord-link,
.support-form button,
.floating-cart button,
#checkoutBtn {
  background: #8b5cf6 !important;
  box-shadow: none !important;
}

.secondary-btn,
.text-btn,
.category-pill,
.nova-chip,
.select-input,
.search-input,
input,
select,
textarea {
  background: rgba(8, 12, 24, 0.92) !important;
  box-shadow: none !important;
}

.store-spotlight-card::before,
.nexora-catalog-card .product-image::after,
.nexora-template-band::after,
.nexora-store-wall::after {
  display: none !important;
}

.nexora-feature-row,
.nexora-store-wall,
.nexora-template-band,
.nova-gateway.compact,
.activity-section,
.testimonial-grid {
  margin-block: 22px !important;
}

.hero-copy h1,
.nova-hero-copy h1,
.page-hero h1,
.nova-faq-console h1 {
  font-size: clamp(2rem, 4.4vw, 4rem) !important;
}

@media (max-width: 760px) {
  .nova-store-hero,
  .hero-section,
  .page-hero,
  .nexora-about-hero,
  .nova-community-hero {
    background: linear-gradient(145deg, rgba(13, 19, 38, 0.98), rgba(18, 16, 42, 0.96)) !important;
  }
}

.nova-store-hero {
  min-height: 0 !important;
  padding: clamp(34px, 5vw, 58px) !important;
  align-items: center !important;
}

.nova-store-hero .nova-signal-strip {
  grid-column: 1 / -1 !important;
  margin-top: 18px !important;
  align-self: start !important;
}

.nexora-about-hero {
  min-height: 0 !important;
  padding: clamp(34px, 5vw, 62px) !important;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px) !important;
  align-items: center !important;
  overflow: hidden !important;
}

.nexora-about-hero::before,
.nexora-about-hero::after {
  display: none !important;
  content: none !important;
}

.nexora-about-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem) !important;
}

.nexora-about-card {
  transform: none !important;
  border-radius: 10px !important;
}

.nexora-studio-ribbon {
  border-radius: 0 !important;
  background: rgba(9, 14, 28, 0.92) !important;
}

.reveal-item,
.reveal-item.revealed {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.support-launcher {
  width: 54px !important;
  height: 54px !important;
  border-radius: 10px !important;
  clip-path: none !important;
  background: #111827 !important;
  border: 1px solid rgba(148, 163, 184, 0.22) !important;
  box-shadow: none !important;
  color: transparent !important;
}

.support-launcher::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #8b5cf6;
  border-radius: 4px;
  display: block;
}

/* Quiet liquid glass layer: subtle transparency without heavy visual noise */
:root {
  --liquid-panel: rgba(13, 18, 35, 0.66);
  --liquid-panel-strong: rgba(11, 16, 31, 0.78);
  --liquid-line: rgba(226, 232, 240, 0.13);
  --liquid-line-bright: rgba(255, 255, 255, 0.2);
  --liquid-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  --liquid-blur: 18px;
}

.promo-strip,
.site-nav,
.mobile-drawer,
.cart-panel,
.login-modal,
.support-widget,
.floating-cart {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--liquid-panel-strong) !important;
  border-color: var(--liquid-line) !important;
  box-shadow: var(--liquid-shadow) !important;
  backdrop-filter: blur(var(--liquid-blur)) saturate(1.15) !important;
  -webkit-backdrop-filter: blur(var(--liquid-blur)) saturate(1.15) !important;
}

.hero-section,
.nova-store-hero,
.page-hero,
.nexora-about-hero,
.nova-faq-console,
.nova-community-hero,
.category-hero,
.nexora-support-hero,
.glass-card,
.info-card,
.support-card,
.faq-group,
.faq-item,
.news-card,
.policy-card,
.dashboard-panel,
.store-results,
.filter-panel,
.nova-product-card,
.nexora-catalog-card,
.nexora-featured-package,
.nexora-live-column > div,
.nexora-template-band,
.store-spotlight-card,
.stat-card,
.leader-row,
.testimonial-grid article,
.nova-gateway-card,
.nexora-about-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018)),
    var(--liquid-panel) !important;
  border-color: var(--liquid-line) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.055) inset, var(--liquid-shadow) !important;
  backdrop-filter: blur(14px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.08) !important;
}

.site-nav::after,
.hero-section::after,
.nova-store-hero::after,
.store-spotlight-card::after,
.nexora-about-hero::after,
.store-results::after,
.filter-panel::after,
.cart-panel::after,
.support-widget::after {
  content: "";
  display: block !important;
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.11), transparent 32%),
    radial-gradient(circle at 14% 0%, rgba(103, 232, 249, 0.08), transparent 20rem);
  opacity: 0.45;
}

.site-nav,
.hero-section,
.nova-store-hero,
.store-spotlight-card,
.nexora-about-hero,
.store-results,
.filter-panel,
.cart-panel,
.support-widget {
  position: relative;
  overflow: hidden;
}

.site-nav > *,
.hero-section > *,
.nova-store-hero > *,
.store-spotlight-card > *,
.nexora-about-hero > *,
.store-results > *,
.filter-panel > *,
.cart-panel > *,
.support-widget > * {
  position: relative;
  z-index: 1;
}

.primary-btn,
.add-btn,
.discord-link,
.support-form button,
.floating-cart button,
#checkoutBtn {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    #8b5cf6 !important;
  border: 1px solid rgba(255, 255, 255, 0.13) !important;
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.16) !important;
}

.secondary-btn,
.text-btn,
.category-pill,
.nova-chip,
.select-input,
.search-input,
input,
select,
textarea {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    rgba(8, 12, 24, 0.68) !important;
  border-color: rgba(226, 232, 240, 0.12) !important;
  backdrop-filter: blur(10px) saturate(1.05) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.05) !important;
}

.product-image,
.store-spotlight-media,
.media-main {
  background: rgba(4, 8, 18, 0.52) !important;
  border-color: rgba(226, 232, 240, 0.12) !important;
}

@media (max-width: 760px), (prefers-reduced-transparency: reduce) {
  .promo-strip,
  .site-nav,
  .mobile-drawer,
  .cart-panel,
  .login-modal,
  .support-widget,
  .floating-cart,
  .hero-section,
  .nova-store-hero,
  .page-hero,
  .nexora-about-hero,
  .nova-faq-console,
  .nova-community-hero,
  .category-hero,
  .nexora-support-hero,
  .glass-card,
  .info-card,
  .support-card,
  .faq-group,
  .faq-item,
  .news-card,
  .policy-card,
  .dashboard-panel,
  .store-results,
  .filter-panel,
  .nova-product-card,
  .nexora-catalog-card,
  .store-spotlight-card {
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }
}

/* Support widget must stay viewport-fixed; keep after glass positioning rules. */
.support-launcher {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  z-index: 240 !important;
}

.support-widget {
  position: fixed !important;
  right: 22px !important;
  bottom: 92px !important;
  left: auto !important;
  top: auto !important;
  z-index: 250 !important;
  width: min(398px, calc(100vw - 24px)) !important;
  height: min(650px, calc(100vh - 126px)) !important;
}

.support-widget.open {
  display: flex !important;
}

@media (max-width: 720px) {
  .support-launcher {
    right: 14px !important;
    bottom: 14px !important;
  }

  .support-widget {
    left: 8px !important;
    right: 8px !important;
    bottom: 8px !important;
    top: auto !important;
    width: auto !important;
    height: min(680px, calc(100vh - 42px)) !important;
  }
}
