:root {
  --bg: #050505;
  --bg-2: #0b0f12;
  --panel: #111418;
  --panel-2: #171b20;
  --ink: #f4f7fb;
  --muted: #b8c0c9;
  --soft: #eef2f6;
  --gold: #f2c94c;
  --teal: #14f1c7;
  --red: #ff4d4d;
  --line: rgba(255, 255, 255, 0.12);
  --gold-line: rgba(242, 201, 76, 0.42);
  --teal-line: rgba(20, 241, 199, 0.34);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.44);
  --radius: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
  line-height: 1.6;
}

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

code {
  color: var(--teal);
  background: rgba(20, 241, 199, 0.08);
  border: 1px solid var(--teal-line);
  padding: 2px 7px;
  border-radius: 5px;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 215px;
}

.logo-image {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--gold-line);
  background: #050505;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.brand-lockup strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-lockup span {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  color: #e1e5ea;
  font-size: 0.92rem;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.menu-toggle {
  display: none;
  min-height: 42px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 6px;
  padding: 9px 12px;
  font-weight: 900;
}

.section,
.hero {
  padding: 86px 0;
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(242,201,76,0.11), transparent 30%),
    linear-gradient(315deg, rgba(20,241,199,0.08), transparent 34%),
    #07090b;
  border-bottom: 1px solid var(--line);
}

.section-muted {
  background: #0a0d10;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-grid,
.exchange-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.hero-copy h1,
.exchange-copy h1,
.hero h1 {
  font-size: 4.8rem;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  margin: 10px 0 20px;
}

.hero-subtitle {
  font-size: 1.45rem;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 14px;
  max-width: 780px;
}

.hero-text,
.section-heading p,
.card p,
.brand-card p,
.product-card p,
.coupon-card p,
.post-card p,
.social-card p {
  color: var(--muted);
}

.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border-radius: 6px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #050505; }
.btn-secondary { background: var(--teal); color: #03110e; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--teal); }

.btn-small {
  min-height: 40px;
  padding: 10px 12px;
  font-size: 0.88rem;
}

.hero-panel {
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.logo-panel { text-align: center; }

.home-hero-logo,
.brand-logo-hero {
  width: min(430px, 82vw);
  border-radius: var(--radius);
  margin: 0 auto 18px;
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
  background: #050505;
}

.signal-strip,
.exchange-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.signal-strip span,
.exchange-ticker span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  padding: 8px 11px;
  color: #dfe5ec;
  font-weight: 800;
  font-size: 0.9rem;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: 3.15rem;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 12px;
  max-width: 820px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.three-grid,
.product-grid,
.coupon-grid,
.post-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card,
.brand-card,
.product-card,
.coupon-card,
.post-card,
.social-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)), var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 184px;
}

.card h3,
.brand-card h3,
.product-card h3,
.coupon-card h3,
.post-card h3,
.social-card h3 {
  color: var(--ink);
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.card-kicker {
  display: inline-block;
  color: #050505 !important;
  background: var(--teal);
  border-radius: 4px;
  padding: 3px 8px;
  font-weight: 900;
  margin-bottom: 14px;
}

.shop-band {
  background:
    linear-gradient(90deg, rgba(242,201,76,0.08), transparent 24%),
    linear-gradient(270deg, rgba(20,241,199,0.08), transparent 26%),
    #07090b;
}

.stock-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.stock-tile {
  min-height: 92px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 16px;
}

.stock-tile strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--gold);
}

.stock-tile span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
  font-size: 0.9rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(242,201,76,0.18), transparent 34%),
    linear-gradient(315deg, rgba(20,241,199,0.11), transparent 40%);
  opacity: 0.95;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pill,
.stock-pill,
.coupon-code {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 4px;
  padding: 7px 9px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.pill {
  color: var(--teal) !important;
  border: 1px solid var(--teal-line);
  background: rgba(20, 241, 199, 0.08);
}

.stock-pill {
  color: #050505;
  background: var(--gold);
  white-space: nowrap;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stock-pill.low { background: var(--red); color: white; }
.stock-pill.out { background: #5b6169; color: white; }

.product-visual {
  display: grid;
  place-items: center;
  min-height: 120px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    rgba(0,0,0,0.2);
  background-size: 18px 18px;
  border-radius: var(--radius);
  text-align: center;
  padding: 14px;
}

.product-visual strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.product-visual span {
  color: var(--teal);
  font-weight: 900;
  font-size: 0.78rem;
  margin-top: 6px;
}

.price-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0;
}

.price-row span,
.shop-meta {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
}

.shop-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.shop-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}

.muted-small {
  color: var(--muted) !important;
  font-size: 0.9rem;
}

.coupon-card {
  border-color: rgba(242, 201, 76, 0.28);
}

.coupon-code {
  color: #050505 !important;
  background: var(--gold);
  margin-bottom: 12px;
}

.social-card {
  min-height: 152px;
}

.social-card .platform {
  color: var(--teal);
  font-weight: 900;
  margin-bottom: 8px;
}

.social-card a,
.post-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 900;
}

.social-posts {
  margin-top: 18px;
}

.exchange-hero {
  padding: 72px 0 28px;
  background:
    linear-gradient(120deg, rgba(242,201,76,0.13), transparent 32%),
    linear-gradient(300deg, rgba(20,241,199,0.11), transparent 36%),
    #07090b;
  border-bottom: 1px solid var(--line);
}

.exchange-command {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255,255,255,0.045);
  box-shadow: var(--shadow);
}

.command-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.command-line strong {
  color: var(--gold);
}

.command-line span {
  color: var(--muted);
  text-align: right;
}

.process-section {
  background: #080a0c;
}

.contact-band {
  border-top: 1px solid var(--gold-line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #050505;
  color: #aeb6c0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

  .product-grid,
  .coupon-grid,
  .post-grid,
  .social-grid,
  .three-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stock-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    width: min(100% - 24px, 1180px);
    min-height: 68px;
  }

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

  .site-nav {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 72px;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(5,5,5,0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 8px;
  }

  .site-nav a {
    padding: 10px 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
  }

  .brand-lockup {
    min-width: 0;
  }

  .brand-lockup strong {
    font-size: 0.8rem;
  }

  .brand-lockup span {
    font-size: 0.72rem;
  }

  .logo-image {
    width: 46px;
    height: 46px;
  }

  .section,
  .hero,
  .exchange-hero {
    padding: 56px 0;
  }

  .hero-copy h1,
  .exchange-copy h1,
  .hero h1 {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.12rem;
  }

  .hero-panel,
  .exchange-command {
    padding: 20px;
  }

  .section-heading h2 {
    font-size: 2.25rem;
  }

  .split-heading {
    display: block;
  }

  .split-heading .btn {
    margin-top: 18px;
  }

  .product-grid,
  .coupon-grid,
  .post-grid,
  .social-grid,
  .three-grid,
  .two-grid,
  .stock-board {
    grid-template-columns: 1fr;
  }

  .card,
  .brand-card,
  .product-card,
  .coupon-card,
  .post-card,
  .social-card {
    padding: 20px;
    min-height: auto;
  }

  .price-row,
  .shop-actions {
    grid-template-columns: 1fr;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .footer-grid {
    display: grid;
    gap: 8px;
  }
}

/* HE Exchange product alignment-only fix */
.product-grid {
  align-items: stretch !important;
}

.product-card {
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.product-card .product-top {
  min-height: 34px;
}

.product-card h3 {
  min-height: 3.2em;
  display: flex;
  align-items: flex-start;
}

.product-card > p:not(.meta) {
  min-height: 4.8em;
}

.product-card .price-row {
  margin-top: auto !important;
}

.product-card .meta {
  min-height: 3.2em;
}

.product-card .actions {
  margin-top: 10px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch !important;
}

.product-card .actions .btn {
  min-height: 44px !important;
  height: 100%;
  text-align: center;
}

.product-image-button,
.product-image-wrap {
  min-height: 210px;
}

.product-image-button .product-image,
.product-image-wrap .product-image {
  object-fit: contain !important;
}

@media (max-width: 720px) {
  .product-card h3,
  .product-card > p:not(.meta),
  .product-card .meta,
  .product-card .product-top {
    min-height: 0;
  }

  .product-card .actions {
    grid-template-columns: 1fr;
  }

  .product-image-button,
  .product-image-wrap {
    min-height: 190px;
  }
}

/* Mobile menu fix */
@media (max-width: 720px) {
  .menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .site-nav {
    display: none !important;
    position: absolute;
    left: 12px;
    right: 12px;
    top: 72px;
    z-index: 1000;
    padding: 12px;
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid !important;
    gap: 8px;
  }

  .site-nav a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
  }
}

/* Support checklist cleanup */
.support-checklist {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.support-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.support-item strong {
  display: block;
  color: var(--gold);
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.support-item span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Contact official links cleanup */
.contact-link-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.contact-link-card {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.contact-link-card strong {
  display: block;
  color: var(--gold);
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-link-card span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

/* HE Exchange Stripe cart */
.nav-cart,
.he-nav-cart {
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 6px;
  border: 1px solid var(--gold-line);
  background: rgba(242, 201, 76, 0.12);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.nav-cart span,
.he-nav-cart span {
  display: inline-grid;
  min-width: 24px;
  min-height: 24px;
  margin-left: 6px;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: #050505;
  font-size: 0.78rem;
}

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

.he-cart-drawer.active {
  display: block;
}

.he-cart-panel {
  width: min(440px, 100%);
  height: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg, rgba(242, 201, 76, 0.10), transparent 38%),
    #080a0d;
  border-left: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
}

.he-cart-header,
.he-cart-summary {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.he-cart-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.he-cart-header h2 {
  margin: 0;
  font-size: 1.55rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

.he-cart-items {
  flex: 1;
  overflow: auto;
  padding: 14px;
}

.he-cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  margin-bottom: 12px;
}

.he-cart-line h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.he-cart-line p,
.he-cart-line small {
  color: var(--muted);
}

.he-cart-line small {
  display: block;
  margin-top: 5px;
  line-height: 1.35;
}

.he-cart-controls {
  display: grid;
  grid-template-columns: repeat(3, 34px);
  gap: 7px;
  align-items: center;
  justify-items: center;
}

.he-cart-controls button {
  min-height: 34px;
  width: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  cursor: pointer;
}

.he-cart-controls button[data-cart-remove] {
  grid-column: 1 / -1;
  width: 100%;
  color: #fca5a5;
}

.he-cart-summary {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.he-cart-summary div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.12rem;
}

.he-cart-summary small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.he-cart-status {
  min-height: 24px;
  padding: 0 20px;
  color: var(--muted);
}

.he-cart-status.error {
  color: #fca5a5;
}

.he-cart-panel > .btn,
.he-cart-panel > .text-btn {
  margin: 0 20px 14px;
}

.full {
  width: calc(100% - 40px);
}

.text-btn {
  min-height: 38px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.text-btn:hover {
  color: var(--gold);
}

.empty-state {
  color: var(--muted);
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
}

@media (max-width: 720px) {
  .nav-wrap {
    position: relative;
  }

  .he-nav-cart {
    order: 3;
  }

  .he-cart-panel {
    width: 100%;
  }

  .he-cart-line {
    grid-template-columns: 1fr;
  }

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

  .he-cart-controls button {
    width: 100%;
  }
}

/* Empire Gateway / SHE bridge */
.gateway-hero {
  padding: 78px 0 64px;
  overflow: hidden;
}

.gateway-intro {
  margin-bottom: 34px;
}

.gateway-intro h1,
.she-bridge-hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.9;
  text-transform: uppercase;
  max-width: 980px;
  margin: 10px 0 18px;
}

.gateway-intro .hero-text {
  max-width: 780px;
}

.gateway-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.gateway-shell {
  width: min(1320px, calc(100% - 24px));
  margin: 0 auto;
  position: relative;
}

.gateway-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82vw, 980px);
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  padding: 8px 4px 24px;
  scrollbar-color: var(--gold) rgba(255,255,255,0.08);
  scrollbar-width: thin;
  cursor: grab;
}


.gateway-track:active {
  cursor: grabbing;
}

.gateway-track.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.gateway-panel.is-active {
  border-color: var(--gold-line);
  box-shadow: 0 24px 70px rgba(0,0,0,0.5);
}

.gateway-track::-webkit-scrollbar { height: 10px; }
.gateway-track::-webkit-scrollbar-track { background: rgba(255,255,255,0.08); border-radius: 99px; }
.gateway-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

.gateway-panel {
  position: relative;
  min-height: 610px;
  scroll-snap-align: center;
  scroll-snap-stop: normal;
  border: 1px solid var(--line);
  transform: translateZ(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.gateway-panel-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(242,201,76,0.28), transparent 30%),
    radial-gradient(circle at 82% 20%, rgba(20,241,199,0.16), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    #07090b;
}

.gateway-panel-she .gateway-panel-bg {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 99, 178, 0.34), transparent 31%),
    radial-gradient(circle at 86% 16%, rgba(242,201,76,0.22), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02)),
    #090507;
}

.gateway-panel-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.gateway-panel-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 62px);
  max-width: 720px;
}

.gateway-panel h2 {
  font-size: clamp(3.8rem, 9vw, 8rem);
  line-height: 0.86;
  text-transform: uppercase;
  margin: 20px 0 20px;
}

.gateway-panel p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 650px;
}

.gateway-logo-card {
  width: min(310px, 70vw);
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--gold-line);
  background: rgba(0,0,0,0.42);
  box-shadow: 0 18px 52px rgba(0,0,0,0.45);
}

.gateway-logo-card img {
  width: 100%;
  border-radius: 12px;
}

.gateway-tags {
  margin: 22px 0 8px;
}

.she-tags span {
  border-color: rgba(255, 99, 178, 0.34);
}

.she-mark {
  width: min(340px, 78vw);
  aspect-ratio: 1 / 0.72;
  display: grid;
  place-items: center;
  gap: 0;
  padding: 22px;
  border: 1px solid rgba(255, 99, 178, 0.42);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 99, 178, 0.22), transparent 40%),
    linear-gradient(315deg, rgba(242,201,76,0.18), transparent 46%),
    rgba(0,0,0,0.48);
  box-shadow: 0 18px 52px rgba(0,0,0,0.45);
}

.she-mark span {
  color: #ffd7ed;
  font-size: clamp(4rem, 10vw, 7.4rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.07em;
  text-shadow: 0 0 34px rgba(255, 99, 178, 0.32);
}

.she-mark small {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: -12px;
}

.she-mark.large {
  width: 100%;
  aspect-ratio: 1 / 0.62;
  margin-bottom: 20px;
}

.she-btn {
  background: linear-gradient(135deg, #ffd1e8, #f2c94c);
  color: #070507;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold);
  font-weight: 900;
}

.text-link:hover {
  color: var(--teal);
}

.she-bridge-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.she-transfer-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 99, 178, 0.14), transparent 36%),
    linear-gradient(315deg, rgba(242,201,76,0.11), transparent 40%),
    var(--panel);
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .she-bridge-grid {
    grid-template-columns: 1fr;
  }

  .gateway-track {
    grid-auto-columns: minmax(88vw, 1fr);
  }
}

@media (max-width: 720px) {
  .gateway-hero {
    padding: 48px 0 42px;
  }

  .gateway-controls {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gateway-panel {
    min-height: 560px;
  }

  .gateway-panel-content {
    padding: 24px;
  }

  .gateway-logo-card,
  .she-mark {
    width: 100%;
  }
}

/* =========================================================
   HQ Empire Palace Visual Revamp
   Inspired by the black / gold / pink Hustlers Empire family lockup.
   ========================================================= */
:root {
  --bg: #020202;
  --bg-2: #080706;
  --panel: rgba(14, 12, 10, 0.82);
  --panel-2: rgba(20, 16, 12, 0.88);
  --ink: #fff7e6;
  --muted: #c8b99c;
  --soft: #f7edda;
  --gold: #f3c556;
  --gold-2: #9f6b18;
  --pink: #ff2f93;
  --pink-2: #9d0e54;
  --teal: #f3c556;
  --red: #ff4d6d;
  --line: rgba(243, 197, 86, 0.16);
  --gold-line: rgba(243, 197, 86, 0.48);
  --pink-line: rgba(255, 47, 147, 0.38);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.68);
  --radius: 18px;
}

html {
  background: #020202;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% -8%, rgba(243,197,86,0.18), transparent 34%),
    radial-gradient(circle at 92% 4%, rgba(255,47,147,0.14), transparent 32%),
    radial-gradient(circle at 50% 120%, rgba(243,197,86,0.10), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(45deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    #020202;
  background-size: auto, auto, auto, 46px 46px, 46px 46px, auto;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(243,197,86,0.07), transparent 10%, transparent 90%, rgba(255,47,147,0.05)),
    radial-gradient(circle at 50% 35%, transparent 0 22%, rgba(0,0,0,0.42) 78%);
  opacity: 0.85;
}

.site-header {
  background: rgba(2, 2, 2, 0.78);
  border-bottom: 1px solid rgba(243,197,86,0.22);
  box-shadow: 0 12px 46px rgba(0,0,0,0.54);
}

.nav-wrap {
  min-height: 86px;
}

.brand-lockup {
  gap: 14px;
}

.logo-image {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 1px solid rgba(243,197,86,0.52);
  box-shadow: 0 0 0 6px rgba(243,197,86,0.04), 0 18px 44px rgba(0,0,0,0.45);
}

.brand-lockup strong {
  color: #ffe7a5;
  letter-spacing: 0.08em;
}

.brand-lockup span {
  color: #ffb6d9;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(243,197,86,0.14);
  border-radius: 999px;
  background: rgba(0,0,0,0.36);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #f4e5c3;
  border-bottom: 0;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: #050505;
  background: linear-gradient(135deg, #f9d778, #d99b32);
  border-color: transparent;
  transform: translateY(-1px);
}

.menu-toggle,
.nav-cart,
.he-nav-cart {
  border-radius: 999px;
  border-color: rgba(243,197,86,0.38);
  background: rgba(243,197,86,0.10);
}

.section,
.hero,
.exchange-hero {
  padding: 98px 0;
}

.section-dark,
.section-muted,
.shop-band,
.exchange-hero,
.process-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(243,197,86,0.13), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(255,47,147,0.11), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    rgba(3,3,3,0.96);
  border-color: rgba(243,197,86,0.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #ffd978;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  display: inline-block;
  background: linear-gradient(90deg, var(--pink), var(--gold));
}

.hero-copy h1,
.exchange-copy h1,
.hero h1,
.section-heading h2,
.gateway-intro h1,
.gateway-intro h2,
.she-bridge-hero h1 {
  color: #fff4da;
  letter-spacing: -0.055em;
  text-shadow: 0 18px 42px rgba(0,0,0,0.5), 0 0 48px rgba(243,197,86,0.08);
}

.hero-subtitle {
  color: #ffe2a0;
}

.hero-text,
.section-heading p,
.card p,
.brand-card p,
.product-card p,
.coupon-card p,
.post-card p,
.social-card p,
.command-line span,
.support-item span,
.contact-link-card span {
  color: #cbbda2;
}

.btn {
  position: relative;
  isolation: isolate;
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 22px;
  letter-spacing: 0.02em;
  box-shadow: 0 16px 34px rgba(0,0,0,0.24);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.10);
  pointer-events: none;
  z-index: -1;
}

.btn-primary {
  color: #120b02;
  background: linear-gradient(135deg, #fff0ae 0%, #f3c556 42%, #9f6b18 100%);
}

.btn-secondary {
  color: #140806;
  background: linear-gradient(135deg, #ffd1e8 0%, #ff2f93 52%, #f3c556 130%);
}

.btn-pink,
.she-btn {
  color: #100006;
  background: linear-gradient(135deg, #ffe1f0 0%, #ff2f93 52%, #f3c556 120%);
}

.btn-outline {
  color: #ffe9b4;
  border-color: rgba(243,197,86,0.32);
  background: rgba(0,0,0,0.32);
}

.btn-outline:hover {
  border-color: rgba(255,47,147,0.52);
  background: rgba(255,47,147,0.09);
}

.card,
.brand-card,
.product-card,
.coupon-card,
.post-card,
.social-card,
.hero-panel,
.exchange-command,
.she-transfer-card,
.support-item,
.contact-link-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(243,197,86,0.19);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.018)),
    rgba(7, 6, 5, 0.86);
  box-shadow: 0 26px 72px rgba(0,0,0,0.48);
}

.card::before,
.brand-card::before,
.product-card::before,
.coupon-card::before,
.post-card::before,
.social-card::before,
.exchange-command::before,
.she-transfer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(243,197,86,0.18), transparent 34%),
    radial-gradient(circle at 98% 18%, rgba(255,47,147,0.10), transparent 30%);
  opacity: 0.85;
}

.card > *,
.brand-card > *,
.product-card > *,
.coupon-card > *,
.post-card > *,
.social-card > *,
.exchange-command > *,
.she-transfer-card > * {
  position: relative;
  z-index: 1;
}

.card h3,
.brand-card h3,
.product-card h3,
.coupon-card h3,
.post-card h3,
.social-card h3 {
  color: #fff2d3;
}

.card-kicker,
.coupon-code,
.stock-pill {
  color: #120b02 !important;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff0ae, #f3c556 55%, #b8791c);
}

.she-kicker {
  background: linear-gradient(135deg, #ffd8ed, #ff2f93 62%, #f3c556) !important;
}

.signal-strip span,
.exchange-ticker span,
.pill,
.stock,
.product-card .meta,
.shop-meta,
.price-row span,
.stock-tile {
  border: 1px solid rgba(243,197,86,0.18);
  background: rgba(0,0,0,0.34);
  color: #e9d9b5;
  border-radius: 999px;
}

.pill,
.stock {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stock {
  color: #110706 !important;
  background: linear-gradient(135deg, #ffd978, #c88924);
}

.stock.preorder {
  background: linear-gradient(135deg, #ffe7a5, #f3c556);
}

.stock.coming {
  color: #ffe3f1 !important;
  background: linear-gradient(135deg, rgba(255,47,147,0.36), rgba(243,197,86,0.24));
  border-color: rgba(255,47,147,0.32);
}

.text-link,
.social-card a,
.post-card a {
  color: #ffd978;
}

.text-link:hover,
.social-card a:hover,
.post-card a:hover {
  color: #ff82bf;
}

/* New homepage command hero */
.empire-command-hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: clamp(72px, 8vw, 132px) 0 58px;
  overflow: hidden;
  border-bottom: 1px solid rgba(243,197,86,0.20);
}

.empire-command-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 65% 43%, rgba(243,197,86,0.13), transparent 25%),
    radial-gradient(circle at 78% 22%, rgba(255,47,147,0.13), transparent 29%),
    linear-gradient(90deg, rgba(0,0,0,0.18), rgba(0,0,0,0.66));
}

.empire-ambient {
  position: absolute;
  inset: 8% -10% auto auto;
  width: min(720px, 76vw);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    conic-gradient(from 180deg, rgba(243,197,86,0.0), rgba(243,197,86,0.18), rgba(255,47,147,0.18), rgba(243,197,86,0.0));
  filter: blur(18px);
  opacity: 0.9;
}

.command-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.command-copy h1 {
  max-width: 740px;
  margin: 12px 0 22px;
  font-size: clamp(4.2rem, 9.4vw, 9.8rem);
  line-height: 0.78;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  color: #fff2d1;
  text-shadow: 0 30px 80px rgba(0,0,0,0.68), 0 0 68px rgba(243,197,86,0.14);
}

.command-copy .hero-text {
  max-width: 640px;
  font-size: 1.06rem;
}

.command-actions {
  margin-top: 32px;
}

.command-visual {
  position: relative;
  min-height: 420px;
}

.lockup-frame {
  position: relative;
  padding: clamp(10px, 2vw, 18px);
  border: 1px solid rgba(243,197,86,0.22);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(243,197,86,0.14), rgba(255,47,147,0.08)),
    rgba(0,0,0,0.42);
  box-shadow: 0 36px 120px rgba(0,0,0,0.62);
}

.lockup-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  pointer-events: none;
}

.empire-family-lockup {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(243,197,86,0.24);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
}

.command-status-card {
  position: absolute;
  right: clamp(12px, 3vw, 32px);
  bottom: clamp(-18px, -2vw, -10px);
  width: min(280px, 78%);
  padding: 18px 20px;
  border: 1px solid rgba(255,47,147,0.28);
  border-radius: 22px;
  background: rgba(5, 4, 4, 0.76);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 70px rgba(0,0,0,0.46);
}

.command-status-card span {
  display: block;
  color: #ff86c0;
  font-size: 0.76rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.command-status-card strong {
  display: block;
  margin-top: 3px;
  color: #ffe4a2;
  font-size: 1.2rem;
}

.empire-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: clamp(42px, 6vw, 72px);
}

.empire-stats article {
  min-height: 124px;
  padding: 18px;
  border: 1px solid rgba(243,197,86,0.16);
  border-radius: 22px;
  background: rgba(0,0,0,0.34);
  backdrop-filter: blur(12px);
}

.empire-stats span {
  display: block;
  color: #ff4fa4;
  font-weight: 900;
  margin-bottom: 10px;
}

.empire-stats strong {
  display: block;
  color: #ffe5a7;
  font-size: 1.05rem;
}

.empire-stats small {
  display: block;
  color: #bfae90;
  margin-top: 5px;
  line-height: 1.45;
}

.centered-intro {
  text-align: center;
}

.centered-intro .eyebrow,
.centered-intro .hero-text,
.centered-intro .gateway-controls {
  margin-left: auto;
  margin-right: auto;
}

.gateway-intro h2 {
  font-size: clamp(3.1rem, 7vw, 6.6rem);
  line-height: 0.86;
  text-transform: uppercase;
  margin: 12px 0 18px;
}

.gateway-reimagined {
  padding-top: 102px;
}

.gateway-shell {
  width: min(1460px, calc(100% - 24px));
}

.gateway-track {
  gap: 26px;
  grid-auto-columns: minmax(84vw, 1080px);
  padding-bottom: 32px;
}

.gateway-panel {
  min-height: 650px;
  border-radius: 34px;
  border-color: rgba(243,197,86,0.22);
  background: #050403;
}

.gateway-panel.is-active {
  border-color: rgba(243,197,86,0.60);
  box-shadow: 0 36px 110px rgba(0,0,0,0.64), 0 0 80px rgba(243,197,86,0.08);
}

.gateway-panel-bg {
  background:
    radial-gradient(circle at 24% 12%, rgba(243,197,86,0.32), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(255,47,147,0.12), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.014)),
    #070604;
}

.gateway-panel-she .gateway-panel-bg {
  background:
    radial-gradient(circle at 24% 18%, rgba(255,47,147,0.38), transparent 31%),
    radial-gradient(circle at 86% 16%, rgba(243,197,86,0.24), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.014)),
    #090305;
}

.gateway-panel-bg::after {
  background:
    linear-gradient(rgba(243,197,86,0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,47,147,0.035) 1px, transparent 1px);
  background-size: 50px 50px;
}

.gateway-panel-content {
  max-width: 790px;
  padding: clamp(28px, 5vw, 72px);
}

.gateway-panel h2 {
  color: #fff3d5;
  letter-spacing: -0.08em;
}

.premium-logo-card,
.premium-she-mark {
  border-radius: 28px;
  border-color: rgba(243,197,86,0.34);
  background:
    linear-gradient(145deg, rgba(243,197,86,0.10), rgba(255,47,147,0.06)),
    rgba(0,0,0,0.42);
}

.premium-she-mark {
  border-color: rgba(255,47,147,0.42);
}

.she-mark span {
  color: #ffd6eb;
  text-shadow: 0 0 40px rgba(255,47,147,0.36);
}

.she-mark small {
  color: #ffe095;
}

.empire-map-premium {
  background:
    radial-gradient(circle at 18% 12%, rgba(255,47,147,0.09), transparent 28%),
    radial-gradient(circle at 78% 0%, rgba(243,197,86,0.10), transparent 30%),
    #030303;
}

.empire-card-grid .empire-card {
  min-height: 245px;
}

/* HE Exchange premium shop polish */
.exchange-hero {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
}

.exchange-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 14%, rgba(243,197,86,0.16), transparent 30%),
    radial-gradient(circle at 18% 42%, rgba(255,47,147,0.07), transparent 32%);
}

.exchange-hero-grid {
  position: relative;
  z-index: 1;
}

.exchange-copy h1 {
  font-size: clamp(3.8rem, 8vw, 7.6rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.exchange-command .brand-logo-hero {
  width: min(430px, 100%);
  border-radius: 26px;
  border: 1px solid rgba(243,197,86,0.30);
}

.command-line {
  border-top-color: rgba(243,197,86,0.15);
}

.command-line strong {
  color: #ffe2a0;
}

.stock-board {
  gap: 14px;
}

.stock-tile {
  border-radius: 22px;
  padding: 19px;
}

.stock-tile strong {
  color: #ffe2a0;
}

.product-grid {
  gap: 20px;
}

.product-card {
  padding: 22px;
  border-radius: 26px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(243,197,86,0.42);
  box-shadow: 0 30px 90px rgba(0,0,0,0.58);
}

.product-card .product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-image-button,
.product-image-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(243,197,86,0.17);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 34%, rgba(243,197,86,0.15), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.12)),
    #050505;
  cursor: zoom-in;
}

.product-image-button {
  display: grid;
  place-items: center;
  padding: 12px;
}

.product-image-button .tap-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,0.58);
  border: 1px solid rgba(243,197,86,0.18);
  color: #ffe2a0;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-image {
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.52));
}

.price-row.single-price {
  grid-template-columns: 1fr;
}

.price-row span {
  border-radius: 18px;
  padding: 13px 14px;
  color: #fff0c7;
}

.product-card .meta {
  border-radius: 16px;
  padding: 11px 13px;
  color: #cbbda2;
}

.product-card .actions {
  gap: 11px;
}

/* Forms and support pages */
.contact-form,
.support-form,
.preorder-form {
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.support-form input,
.support-form textarea,
.preorder-form input,
.preorder-form select,
.preorder-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(243,197,86,0.20);
  border-radius: 16px;
  padding: 12px 14px;
  color: #fff2d4;
  background: rgba(0,0,0,0.34);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus,
.support-form input:focus,
.support-form textarea:focus,
.preorder-form input:focus,
.preorder-form select:focus,
.preorder-form textarea:focus {
  border-color: rgba(255,47,147,0.52);
  box-shadow: 0 0 0 4px rgba(255,47,147,0.09);
}

/* Cart and image viewer match the premium theme */
.he-cart-panel,
.image-viewer-panel {
  background:
    radial-gradient(circle at 20% 0%, rgba(243,197,86,0.14), transparent 30%),
    radial-gradient(circle at 94% 16%, rgba(255,47,147,0.11), transparent 34%),
    #050403;
  border-color: rgba(243,197,86,0.28);
}

.he-cart-line {
  border-radius: 18px;
  border-color: rgba(243,197,86,0.16);
  background: rgba(255,255,255,0.045);
}

.icon-btn,
.he-cart-controls button {
  border-color: rgba(243,197,86,0.18);
}

/* Footer */
.site-footer {
  background:
    linear-gradient(180deg, rgba(243,197,86,0.04), transparent),
    #020202;
  border-top: 1px solid rgba(243,197,86,0.20);
}

.footer-link-row a:hover {
  color: #ff86c0;
}

/* Desktop window focus */
@media (min-width: 1180px) {
  .container {
    width: min(1240px, calc(100% - 56px));
  }

  .command-visual {
    transform: translateX(2vw);
  }

  .gateway-panel-content {
    padding-left: 78px;
  }
}

/* Tablet and mobile focus */
@media (max-width: 980px) {
  .command-grid {
    grid-template-columns: 1fr;
  }

  .command-visual {
    order: -1;
    min-height: auto;
  }

  .lockup-frame {
    max-width: 720px;
    margin: 0 auto;
  }

  .command-copy {
    text-align: center;
  }

  .command-copy .eyebrow,
  .command-copy .hero-text,
  .command-actions {
    margin-left: auto;
    margin-right: auto;
  }

  .empire-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav {
    border-radius: 22px;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    min-height: 76px;
  }

  .site-nav {
    border-radius: 20px;
    background: rgba(2,2,2,0.98);
  }

  .site-nav a {
    border-radius: 14px;
  }

  .logo-image {
    width: 48px;
    height: 48px;
  }

  .empire-command-hero {
    min-height: auto;
    padding: 44px 0 34px;
  }

  .command-copy h1 {
    font-size: clamp(3.15rem, 18vw, 5.2rem);
    line-height: 0.82;
  }

  .command-copy .hero-subtitle {
    font-size: 1.08rem;
  }

  .command-status-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .empire-stats {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .empire-stats article {
    min-height: auto;
  }

  .gateway-reimagined {
    padding-top: 58px;
  }

  .gateway-intro h2 {
    font-size: clamp(2.55rem, 16vw, 4.1rem);
  }

  .gateway-track {
    grid-auto-columns: minmax(88vw, 1fr);
    gap: 16px;
  }

  .gateway-panel {
    min-height: 580px;
    border-radius: 28px;
  }

  .gateway-panel h2 {
    font-size: clamp(3.2rem, 17vw, 5.5rem);
  }

  .gateway-panel-content {
    padding: 22px;
  }

  .signal-strip span,
  .exchange-ticker span {
    border-radius: 14px;
  }

  .exchange-copy h1,
  .hero-copy h1,
  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .section,
  .hero,
  .exchange-hero {
    padding: 58px 0;
  }

  .product-card {
    border-radius: 24px;
  }

  .product-card .actions {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 420px) {
  .brand-lockup div {
    display: none;
  }

  .gateway-panel {
    min-height: 540px;
  }

  .btn {
    min-height: 48px;
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* HustleVanta site audio control */
.site-audio {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(233, 181, 78, 0.34);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(3, 3, 3, 0.86), rgba(28, 10, 21, 0.76));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.audio-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(233, 181, 78, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-strong, #f5c76b);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.audio-toggle:hover,
.audio-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 213, 112, 0.95);
  background: rgba(233, 181, 78, 0.12);
  outline: none;
}

.audio-toggle.is-on {
  color: #fff;
  background: linear-gradient(135deg, rgba(229, 39, 128, 0.32), rgba(233, 181, 78, 0.18));
  border-color: rgba(229, 39, 128, 0.78);
}

.audio-pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(233, 181, 78, 0.72);
  box-shadow: 0 0 0 0 rgba(233, 181, 78, 0.4);
}

.audio-toggle.is-on .audio-pulse {
  background: var(--pink, #e52780);
  animation: audioPulse 1.25s ease-in-out infinite;
}

.audio-brand {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes audioPulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 39, 128, 0.52); }
  70% { box-shadow: 0 0 0 10px rgba(229, 39, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 39, 128, 0); }
}

@media (max-width: 720px) {
  .site-audio {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: space-between;
    padding: 9px 10px;
  }

  .audio-toggle {
    min-height: 42px;
    padding: 9px 12px;
  }

  .audio-brand {
    font-size: 0.58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .audio-toggle.is-on .audio-pulse {
    animation: none;
  }
}

/* HustleVanta Studios branch + sound library */
.four-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.btn-pink {
  background: linear-gradient(135deg, #ff8bc8, #ff2f93 56%, #f3c556);
  color: #13020a;
  border-color: rgba(255, 47, 147, 0.28);
}

.vanta-kicker {
  background: linear-gradient(135deg, #fff0ae, #f3c556 45%, #ff2f93) !important;
}

.premium-vanta-mark,
.vanta-mark {
  width: min(210px, 100%);
  min-height: 132px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(243,197,86,0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 18%, rgba(243,197,86,0.18), transparent 44%),
    linear-gradient(145deg, rgba(243,197,86,0.12), rgba(255,47,147,0.12)),
    rgba(0,0,0,0.48);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 20px 70px rgba(0,0,0,0.36);
}

.vanta-mark span {
  display: block;
  color: #ffe3a4;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.8;
  font-weight: 950;
  letter-spacing: -0.12em;
  text-shadow: 0 0 48px rgba(243,197,86,0.28);
}

.vanta-mark small {
  display: block;
  margin-top: 10px;
  color: #ff82bf;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gateway-panel-vanta .gateway-panel-bg {
  background:
    radial-gradient(circle at 20% 18%, rgba(243,197,86,0.36), transparent 31%),
    radial-gradient(circle at 82% 13%, rgba(255,47,147,0.28), transparent 36%),
    radial-gradient(circle at 50% 90%, rgba(255,255,255,0.07), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.012)),
    #060404;
}

.branch-jump-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.gateway-track {
  scroll-padding-inline: 6vw;
}

.vanta-card-mini {
  border-color: rgba(255,47,147,0.22) !important;
}

.hustlevanta-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(243,197,86,0.10), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(255,47,147,0.12), transparent 31%),
    #030303;
}

.vanta-hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: clamp(82px, 8vw, 132px) 0 78px;
  overflow: hidden;
  border-bottom: 1px solid rgba(243,197,86,0.20);
}

.vanta-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(243,197,86,0.036) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,47,147,0.030) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.90), transparent 88%);
  pointer-events: none;
}

.vanta-orbit {
  position: absolute;
  width: min(820px, 80vw);
  aspect-ratio: 1;
  right: -12vw;
  top: 2vw;
  border-radius: 999px;
  background:
    conic-gradient(from 20deg, transparent, rgba(243,197,86,0.18), rgba(255,47,147,0.22), transparent 64%);
  filter: blur(18px);
  opacity: 0.92;
}

.vanta-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.vanta-copy h1 {
  margin: 12px 0 22px;
  max-width: 860px;
  font-size: clamp(4rem, 9vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  color: #fff2d3;
  text-shadow: 0 32px 90px rgba(0,0,0,0.7), 0 0 70px rgba(255,47,147,0.13);
}

.vanta-player-card {
  position: relative;
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(243,197,86,0.24);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(243,197,86,0.13), rgba(255,47,147,0.12)),
    rgba(0,0,0,0.52);
  box-shadow: 0 36px 120px rgba(0,0,0,0.58), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
}

.vanta-record {
  width: min(260px, 62vw);
  aspect-ratio: 1;
  margin: 0 auto 4px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, #090909 0 16%, rgba(243,197,86,0.85) 17% 18%, #050505 19% 30%, rgba(255,47,147,0.28) 31% 32%, #050505 33% 56%, rgba(243,197,86,0.58) 57% 58%, #050505 59% 100%);
  border: 1px solid rgba(243,197,86,0.34);
  box-shadow: inset 0 0 60px rgba(0,0,0,0.90), 0 24px 70px rgba(0,0,0,0.52);
}

.vanta-record span {
  color: #ffe19c;
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  text-shadow: 0 0 34px rgba(243,197,86,0.34);
}

.vanta-player-card h2 {
  color: #fff2d3;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.vanta-player-card audio {
  width: 100%;
  accent-color: #f3c556;
}

.player-note {
  color: #bfae90;
  font-size: 0.9rem;
}

.vanta-library-section {
  background:
    radial-gradient(circle at 14% 10%, rgba(255,47,147,0.10), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(243,197,86,0.10), transparent 30%),
    #040404;
}

.vanta-app-shell {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.vanta-sidebar,
.vanta-track-area {
  border: 1px solid rgba(243,197,86,0.18);
  border-radius: 28px;
  background: rgba(0,0,0,0.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.vanta-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
  position: sticky;
  top: 96px;
}

.vanta-sidebar strong {
  color: #ffe4a2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.vanta-sidebar a {
  display: block;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: #e8d6b6;
  background: rgba(255,255,255,0.035);
}

.vanta-sidebar a:hover {
  color: #ff9acc;
  border-color: rgba(255,47,147,0.36);
}

.vanta-track-area {
  overflow: hidden;
}

.vanta-track-head,
.vanta-track-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
}

.vanta-track-head {
  padding: 15px 18px;
  color: #a99a82;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(243,197,86,0.14);
}

.vanta-track-list {
  display: grid;
}

.vanta-track-row {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 15px 18px;
  background: transparent;
  color: #f8ead0;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.vanta-track-row:hover,
.vanta-track-row.is-playing {
  background: linear-gradient(90deg, rgba(243,197,86,0.12), rgba(255,47,147,0.08));
}

.vanta-track-row.is-playing {
  box-shadow: inset 4px 0 0 #ff2f93;
}

.vanta-track-row[disabled],
.vanta-track-row.is-disabled {
  cursor: not-allowed;
  opacity: 0.64;
}

.vanta-track-title {
  display: grid;
  gap: 4px;
}

.vanta-track-title strong {
  color: #fff2d3;
  font-size: 1rem;
}

.vanta-track-title small,
.vanta-track-row span {
  color: #bfae90;
  font-size: 0.9rem;
}

.vanta-status-live,
.vanta-status-soon {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.vanta-status-live {
  color: #110706;
  background: linear-gradient(135deg, #ffe7a5, #f3c556);
}

.vanta-status-soon {
  color: #ffd8ed;
  border: 1px solid rgba(255,47,147,0.32);
  background: rgba(255,47,147,0.13);
}

.placeholder-row {
  display: block;
  color: #bfae90;
  cursor: default;
}

.vanta-services {
  background:
    radial-gradient(circle at 50% 0%, rgba(243,197,86,0.12), transparent 32%),
    #050505;
}

.vanta-service-card {
  min-height: 270px;
}

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

  .vanta-hero-grid,
  .vanta-app-shell {
    grid-template-columns: 1fr;
  }

  .vanta-sidebar {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 10px;
  }

  .vanta-sidebar strong {
    min-width: max-content;
    align-self: center;
    margin-bottom: 0;
  }

  .vanta-sidebar a {
    min-width: max-content;
  }
}

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

  .vanta-hero {
    min-height: auto;
    padding: 64px 0 54px;
  }

  .vanta-copy h1 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
    letter-spacing: -0.09em;
  }

  .vanta-player-card {
    border-radius: 26px;
  }

  .vanta-track-head {
    display: none;
  }

  .vanta-track-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .vanta-track-row span:nth-child(n+2) {
    display: none;
  }

  .branch-jump-controls {
    display: grid;
    grid-template-columns: 1fr;
  }
}


/* HustleVanta full music catalog update */
.music-hero .hero-text {
  max-width: 740px;
}

.vanta-pack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 18px;
}

.vanta-pack-grid a {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid rgba(243,197,86,0.22);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(243,197,86,0.10), rgba(255,47,147,0.06)), rgba(0,0,0,0.38);
  color: #fff2d3;
  text-decoration: none;
}

.vanta-pack-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(255,47,147,0.42);
}

.vanta-pack-grid strong {
  font-size: 1.05rem;
  color: #ffe4a2;
}

.vanta-pack-grid span {
  color: #bfae90;
  line-height: 1.45;
}

.vanta-controls {
  display: grid;
  grid-template-columns: 1fr 220px 180px;
  gap: 12px;
  margin: 18px 0 12px;
}

.vanta-controls input,
.vanta-controls select {
  width: 100%;
  border: 1px solid rgba(243,197,86,0.20);
  border-radius: 16px;
  background: rgba(0,0,0,0.42);
  color: #f8ead0;
  padding: 14px 15px;
  outline: none;
}

.vanta-controls select option {
  background: #090909;
}

.vanta-result-count {
  color: #bfae90;
  font-weight: 800;
  margin: 8px 0 16px;
}

.vanta-track-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.vanta-track-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(243,197,86,0.18);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.vanta-track-card.is-playing {
  border-color: rgba(255,47,147,0.46);
  box-shadow: 0 18px 52px rgba(0,0,0,0.30), inset 4px 0 0 #ff2f93;
}

.vanta-track-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.vanta-track-card h3 {
  margin: 0;
  color: #fff2d3;
  font-size: 1.18rem;
  line-height: 1.14;
}

.vanta-track-meta,
.vanta-track-use {
  margin: 0;
  color: #bfae90;
  font-size: 0.92rem;
  line-height: 1.45;
}

.vanta-track-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.vanta-track-actions .btn {
  min-height: 42px;
  padding: 0 15px;
}

@media (max-width: 980px) {
  .vanta-pack-grid,
  .vanta-track-grid,
  .vanta-controls {
    grid-template-columns: 1fr;
  }
}

.hv-card.is-active {
  border-color: rgba(212, 175, 55, 0.85);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.22), 0 18px 45px rgba(0, 0, 0, 0.28);
}


/* HustleVanta no-download public catalog update */
.vanta-pack-grid.vanta-category-grid > div {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(243,197,86,0.16);
  border-radius: 22px;
  background: rgba(0,0,0,0.26);
  color: #fff2d3;
}

.vanta-pack-grid.vanta-category-grid > div strong {
  font-size: 1rem;
  color: #ffe4a2;
}

.vanta-pack-grid.vanta-category-grid > div span {
  color: #bfae90;
  line-height: 1.45;
}

.vanta-track-card .vanta-status-live {
  padding: 4px 8px;
  border: 1px solid rgba(243,197,86,0.22);
  background: rgba(243,197,86,0.07);
  color: #cdbb95;
  font-size: 0.68rem;
  font-weight: 650;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.vanta-track-card.is-playing {
  border-color: rgba(243,197,86,0.44);
  box-shadow: 0 0 0 1px rgba(243,197,86,0.12);
}

.vanta-track-actions .btn-outline,
.vanta-pack-grid a[href$=".zip"] {
  display: none !important;
}


/* HustleVanta logo + synced player update */
.vanta-logo-record {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.32);
}

.vanta-card-logo {
  width: min(82%, 220px);
  max-height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.45));
}

.brand-lockup .logo-image[src*="hustlevanta-logo"] {
  object-fit: contain;
  background: rgba(0, 0, 0, 0.22);
}

.vanta-track-card .vanta-status-live {
  padding: 4px 8px;
  border: 1px solid rgba(243,197,86,0.18);
  background: rgba(243,197,86,0.055);
  color: #cdbb95;
  font-size: 0.68rem;
  font-weight: 650;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.vanta-track-card.is-playing {
  border-color: rgba(243,197,86,0.52);
  box-shadow: 0 0 0 1px rgba(243,197,86,0.14), 0 16px 42px rgba(0,0,0,0.24);
}


/* HustleVanta Now Playing logo circle-fit patch */
.vanta-player-card .vanta-record.vanta-logo-record {
  width: min(238px, 58vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(9, 9, 11, 0.98) 0 55%, rgba(243, 197, 86, 0.18) 56% 68%, rgba(255, 47, 147, 0.16) 69% 100%);
  border: 1px solid rgba(243, 197, 86, 0.38);
  box-shadow:
    inset 0 0 34px rgba(0, 0, 0, 0.82),
    0 18px 56px rgba(0, 0, 0, 0.45);
}

.vanta-player-card .vanta-record.vanta-logo-record::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 47, 147, 0.20);
  pointer-events: none;
}

.vanta-player-card .vanta-card-logo {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.42));
}


/* HE Work gateway additions */
.empire-stats {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.gateway-panel-work .gateway-panel-bg {
  background:
    radial-gradient(circle at 28% 22%, rgba(20,241,199,0.13), transparent 34%),
    radial-gradient(circle at 78% 42%, rgba(243,197,86,0.16), transparent 30%),
    linear-gradient(145deg, rgba(5,5,5,0.86), rgba(20,16,8,0.76));
}
