:root {
  --bg: #080808;
  --panel: #121212;
  --panel-2: #1a1714;
  --line: rgba(255, 255, 255, 0.09);
  --text: #f7f3ed;
  --muted: #a9a29a;
  --purple: #ffffff;
  --purple-2: #d7d7d7;
  --cyan: #2dd4bf;
  --pink: #cfcfcf;
  --gold: #ffffff;
  --radius: 12px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
button,
input,
select {
  font: inherit;
}
.site-header {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 5vw, 78px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 7, 15, 0.84);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  text-decoration: none;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.desktop-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s;
}
.desktop-nav a:hover,
.desktop-nav .active {
  color: var(--text);
}
.desktop-nav .active:after {
  content: "";
  display: block;
  height: 2px;
  background: var(--purple);
  margin-top: 8px;
  border-radius: 2px;
}
.header-actions {
  display: flex;
  gap: 9px;
}
.icon-button,
.cart-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  height: 42px;
  border-radius: 13px;
  cursor: pointer;
}
.icon-button {
  width: 42px;
  font-size: 23px;
}
.cart-button {
  padding: 0 8px 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 7px;
  border-radius: 9px;
  background: var(--purple);
  font-size: 12px;
}
.hero {
  min-height: 690px;
  padding: 92px clamp(24px, 7vw, 110px) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 70px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}
.hero-glow-one {
  width: 530px;
  height: 530px;
  right: -140px;
  top: -250px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.22),
    transparent 68%
  );
}
.hero-glow-two {
  width: 440px;
  height: 440px;
  left: -250px;
  bottom: -250px;
  background: radial-gradient(
    circle,
    rgba(45, 212, 191, 0.12),
    transparent 68%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.eyebrow,
.section-kicker {
  font-size: 11px;
  letter-spacing: 2.4px;
  font-weight: 800;
  color: #b8a6f7;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 26px;
  height: 1px;
  background: var(--purple);
}
h1 {
  font-size: clamp(48px, 6vw, 83px);
  line-height: 0.98;
  letter-spacing: -4.6px;
  margin: 24px 0 28px;
  max-width: 820px;
}
h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #a78bfa 4%, #7c3aed 48%, #2dd4bf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content > p {
  color: var(--muted);
  font-size: 17px;
  max-width: 610px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin: 34px 0 48px;
}
.primary-button,
.secondary-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 14px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.primary-button {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.25);
}
.secondary-button {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}
@keyframes scan {
  0%,
  100% {
    transform: translateY(-105px);
    opacity: 0;
  }
  15%,
  85% {
    opacity: 0.8;
  }
  50% {
    transform: translateY(105px);
  }
}
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px clamp(24px, 6vw, 95px);
  background: rgba(255, 255, 255, 0.018);
}
.trust-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-right: 1px solid var(--line);
}
.trust-strip > div:last-child {
  border: 0;
}
.trust-strip > div > span {
  color: var(--purple);
  font-size: 20px;
}
.trust-strip p {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.trust-strip strong {
  font-size: 13px;
}
.trust-strip small {
  color: var(--muted);
  font-size: 10px;
  margin-top: 3px;
}
.catalog {
  padding: 110px clamp(20px, 6vw, 94px);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-end;
  margin-bottom: 42px;
}
.section-heading h2,
.why-copy h2,
.payments h2,
.discord-cta h2 {
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -2.7px;
  line-height: 1.05;
  margin: 10px 0 0;
}
.section-heading > p {
  max-width: 470px;
  color: var(--muted);
  margin: 0;
}
.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr 205px;
  gap: 12px;
}
.search-field {
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: var(--panel);
  gap: 12px;
}
.search-field > span {
  font-size: 22px;
  color: var(--muted);
}
.search-field input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--text);
}
.search-field kbd {
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 3px 7px;
  color: var(--muted);
  font-size: 10px;
}
select {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  color: var(--text);
  padding: 0 16px;
  outline: 0;
}
.category-tabs {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 22px 0 30px;
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar {
  display: none;
}
.category-tab {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: 0.2s;
}
.category-tab:hover,
.category-tab.active {
  background: var(--text);
  color: #0b0810;
  border-color: var(--text);
}
.catalog-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 34px;
}
.filter-panel {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.subcategory-filters {
  display: flex;
  flex-direction: column;
  margin: 18px 0 30px;
  max-height: 455px;
  overflow: auto;
  padding-right: 6px;
}
.subcategory-filters label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  padding: 7px 0;
  cursor: pointer;
}
.subcategory-filters input {
  accent-color: var(--purple);
}
.filter-card {
  border-radius: 18px;
  padding: 22px;
  background: linear-gradient(
    150deg,
    rgba(124, 58, 237, 0.18),
    rgba(45, 212, 191, 0.07)
  );
  border: 1px solid rgba(139, 92, 246, 0.22);
}
.filter-card span {
  font-size: 9px;
  color: #b8a6f7;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.filter-card strong {
  display: block;
  font-size: 19px;
  margin: 5px 0;
}
.filter-card p {
  color: var(--muted);
  font-size: 11px;
}
.filter-card a {
  font-size: 11px;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 800;
}
.results-line {
  height: 32px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}
.live-dot {
  color: var(--cyan);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.25s;
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}
.product-art {
  height: 170px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(140deg, var(--card-a), var(--card-b));
}
.product-art:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 32px rgba(255, 255, 255, 0.018),
    0 0 0 64px rgba(255, 255, 255, 0.014);
}
.product-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0.1),
    transparent 35%,
    rgba(0, 0, 0, 0.2)
  );
}
.product-initial {
  font-weight: 900;
  font-size: 58px;
  letter-spacing: -5px;
  z-index: 1;
  text-shadow: 0 12px 35px rgba(0, 0, 0, 0.38);
}
.quick-add {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #0b0810;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px);
  transition: 0.2s;
}
.product-card:hover .quick-add {
  opacity: 1;
  transform: none;
}
.product-copy {
  padding: 17px;
}
.product-category {
  font-size: 9px;
  color: #a78bfa;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 800;
}
.product-copy h3 {
  font-size: 14px;
  line-height: 1.35;
  margin: 8px 0;
  min-height: 38px;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-footer strong {
  font-size: 18px;
}
.product-footer span {
  color: var(--muted);
  font-size: 9px;
}
.load-more {
  display: block;
  margin: 32px auto 0;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  height: 46px;
  padding: 0 22px;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 700;
  font-size: 12px;
}
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}
.empty-state span {
  font-size: 38px;
}
.empty-state h3 {
  color: var(--text);
  margin-bottom: 4px;
}
.why-us {
  padding: 105px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  background: linear-gradient(
    140deg,
    rgba(124, 58, 237, 0.08),
    transparent 45%
  );
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-copy p {
  color: var(--muted);
  max-width: 510px;
  line-height: 1.8;
}
.text-link {
  display: inline-flex;
  gap: 18px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  margin-top: 15px;
}
.text-link span {
  color: var(--cyan);
}
.payments {
  padding: 100px clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: center;
}
.payments p {
  color: var(--muted);
  max-width: 470px;
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.payment-grid span {
  height: 76px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  font-size: 13px;
}
.discord-cta {
  margin: 40px clamp(20px, 6vw, 94px) 100px;
  min-height: 390px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 50px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.26);
  background:
    radial-gradient(
      circle at 50% 110%,
      rgba(45, 212, 191, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at 50% -15%,
      rgba(124, 58, 237, 0.35),
      transparent 46%
    ),
    #11101a;
}
.discord-cta > span {
  font-size: 10px;
  letter-spacing: 2.4px;
  color: #b8a6f7;
  font-weight: 800;
}
.discord-cta h2 {
  margin: 14px 0;
}
.discord-cta p {
  max-width: 590px;
  color: var(--muted);
  margin: 0 0 28px;
}
.cta-ring {
  position: absolute;
  width: 590px;
  height: 590px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.012),
    0 0 0 140px rgba(255, 255, 255, 0.009);
}
footer {
  border-top: 1px solid var(--line);
  padding: 65px clamp(24px, 7vw, 110px) 30px;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.footer-brand {
  display: flex;
  gap: 15px;
}
.footer-brand strong {
  font-size: 18px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 11px;
  max-width: 270px;
}
.footer-brand ~ div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-brand ~ div strong {
  font-size: 12px;
  margin-bottom: 5px;
}
.footer-brand ~ div a {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
}
footer > small {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  color: #6d6878;
  font-size: 9px;
  margin-top: 20px;
}
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 3, 8, 0.72);
  backdrop-filter: blur(5px);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.cart-drawer {
  position: fixed;
  right: 0;
  top: 0;
  width: min(430px, 100%);
  height: 100vh;
  background: #0f0d16;
  border-left: 1px solid var(--line);
  z-index: 80;
  transform: translateX(105%);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open {
  transform: none;
}
.drawer-head {
  height: 94px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.drawer-head span {
  font-size: 9px;
  color: var(--purple);
  letter-spacing: 1.8px;
}
.drawer-head h2 {
  margin: 3px 0 0;
  font-size: 20px;
}
.drawer-head button,
.modal-close {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  border-radius: 10px;
  width: 38px;
  height: 38px;
  font-size: 25px;
  cursor: pointer;
}
.cart-items {
  padding: 18px 24px;
  overflow: auto;
}
.cart-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-art {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(135deg, #31205b, #10353a);
}
.cart-item h4 {
  font-size: 11px;
  margin: 0 0 4px;
}
.cart-item small {
  color: var(--muted);
}
.cart-item button {
  background: none;
  border: 0;
  color: #e08097;
  cursor: pointer;
}
.cart-item-actions {
  display: grid;
  justify-items: end;
  gap: 7px;
}
.cart-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
}
.cart-quantity button {
  width: 30px;
  height: 30px;
  color: #ddd6fe;
  font-size: 15px;
}
.cart-quantity span {
  min-width: 24px;
  text-align: center;
  font-size: 9px;
  font-weight: 800;
}
.cart-remove {
  min-height: 24px;
  padding: 0 2px;
  font-size: 8px;
}
.cart-empty {
  margin: auto;
  text-align: center;
  color: var(--muted);
  padding: 30px;
}
.cart-empty > span {
  font-size: 42px;
}
.cart-empty h3 {
  color: var(--text);
  margin-bottom: 4px;
}
.cart-summary {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 23px;
}
.cart-summary > div {
  display: flex;
  justify-content: space-between;
}
.cart-summary > div strong {
  font-size: 22px;
}
.cart-summary p {
  font-size: 10px;
  color: var(--muted);
}
.checkout-button {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(79, 70, 229, 0.22);
}
.checkout-button span {
  font-size: 17px;
  transition: transform 0.18s;
}
.checkout-button:hover span {
  transform: translateX(3px);
}
.checkout-modal {
  position: fixed;
  z-index: 95;
  left: 50%;
  top: 50%;
  width: min(1080px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 88% 4%,
      rgba(124, 58, 237, 0.14),
      transparent 28%
    ),
    #0e0c15;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.64);
  transform: translate(-50%, -46%) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: 0.24s ease;
}
.checkout-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.checkout-close {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}
.checkout-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  padding: 0 54px 28px 0;
  border-bottom: 1px solid var(--line);
}
.checkout-head h2 {
  margin: 7px 0 8px;
  font-size: clamp(27px, 4vw, 42px);
  letter-spacing: -1.6px;
}
.checkout-head p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}
.checkout-steps {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}
.checkout-steps span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #6f697e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.checkout-steps b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 8px;
}
.checkout-steps .active {
  color: #c4b5fd;
}
.checkout-steps .active b {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(124, 58, 237, 0.14);
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 4vw, 50px);
  padding-top: 30px;
}
.checkout-payment {
  padding-left: clamp(24px, 4vw, 46px);
  border-left: 1px solid var(--line);
}
.checkout-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.checkout-section-title span,
.checkout-reference > span {
  color: var(--purple);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.7px;
}
.checkout-section-title h3 {
  margin: 5px 0 0;
  font-size: 17px;
}
.checkout-section-title button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: #c4b5fd;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
}
.checkout-items {
  display: grid;
  gap: 10px;
}
.checkout-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.018);
}
.checkout-item-art {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1850, #102d38);
}
.checkout-item-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.checkout-item h4 {
  margin: 0 0 4px;
  font-size: 11px;
}
.checkout-item small {
  color: var(--muted);
  font-size: 9px;
}
.checkout-item > strong {
  font-size: 11px;
}
.checkout-totals {
  display: grid;
  gap: 11px;
  margin-top: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.checkout-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
}
.checkout-totals strong {
  color: var(--text);
  text-align: right;
}
.checkout-totals .checkout-total {
  padding-top: 9px;
  color: var(--text);
  font-weight: 800;
}
.checkout-totals .checkout-total strong {
  font-size: 20px;
}
.checkout-reference {
  margin-top: 18px;
  padding: 16px;
  border: 1px dashed rgba(139, 92, 246, 0.32);
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.055);
}
.checkout-reference strong,
.checkout-reference small {
  display: block;
}
.checkout-reference strong {
  margin: 7px 0 5px;
  color: #ddd6fe;
  font-size: 12px;
  letter-spacing: 0.6px;
  word-break: break-all;
}
.checkout-reference small {
  color: var(--muted);
  font-size: 9px;
}
.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.payment-option {
  position: relative;
  min-height: 88px;
  display: grid;
  grid-template-columns: 38px 1fr 16px;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.018);
  cursor: pointer;
  transition: 0.18s;
}
.payment-option:hover,
.payment-option:has(input:focus-visible) {
  border-color: rgba(139, 92, 246, 0.44);
  background: rgba(124, 58, 237, 0.055);
}
.payment-option:has(input:checked) {
  border-color: #8b5cf6;
  background: rgba(124, 58, 237, 0.1);
  box-shadow: inset 0 0 0 1px rgba(139, 92, 246, 0.12);
}
.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.payment-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #1f1b2b;
  color: #9f8cff;
  font-size: 16px;
  font-weight: 900;
}
.payment-icon.bitcoin {
  color: #f59e0b;
}
.payment-icon.solana {
  color: #5eead4;
}
.payment-option strong,
.payment-option small {
  display: block;
}
.payment-option strong {
  margin-bottom: 4px;
  font-size: 10px;
}
.payment-option small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}
.payment-option i {
  width: 15px;
  height: 15px;
  border: 1px solid #5f596c;
  border-radius: 50%;
}
.payment-option:has(input:checked) i {
  border: 4px solid #8b5cf6;
  background: white;
}
.checkout-protection {
  display: flex;
  gap: 11px;
  margin: 14px 0;
  padding: 13px;
  border: 1px solid rgba(45, 212, 191, 0.18);
  border-radius: 13px;
  background: rgba(20, 184, 166, 0.05);
}
.checkout-protection > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.13);
  color: #5eead4;
}
.checkout-protection strong,
.checkout-protection small {
  display: block;
}
.checkout-protection strong {
  margin-bottom: 3px;
  font-size: 9px;
}
.checkout-protection small {
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}
.checkout-consent {
  padding: 13px 0;
}
.checkout-consent label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ded9e8;
  font-size: 9px;
  cursor: pointer;
}
.checkout-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: #8b5cf6;
}
.checkout-consent p {
  margin: 5px 0 0 28px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
}
.checkout-consent a {
  color: #c4b5fd;
}
.place-order-button {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #8b5cf6, #4f46e5);
  color: white;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(79, 70, 229, 0.24);
}
.place-order-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
  filter: grayscale(0.5);
  box-shadow: none;
}
.place-order-button span {
  margin-left: 7px;
  font-size: 15px;
}
.checkout-validation,
.checkout-disclaimer {
  display: block;
  text-align: center;
}
.checkout-validation {
  min-height: 14px;
  margin: 8px 0 2px;
  color: #a9a3b4;
  font-size: 8px;
}
.checkout-disclaimer {
  color: #6f697e;
  font-size: 8px;
  line-height: 1.5;
}
.product-modal {
  position: fixed;
  z-index: 90;
  left: 50%;
  top: 50%;
  width: min(900px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  overflow: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: #11101a;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  transform: translate(-50%, -46%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.product-modal.open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.modal-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.22);
}
.modal-art {
  min-height: 510px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #28144d, #0b3033);
}
.modal-art:before {
  content: "";
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 55px rgba(255, 255, 255, 0.018),
    0 0 0 110px rgba(255, 255, 255, 0.012);
}
.modal-art span {
  position: absolute;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: -12px;
}
.modal-art i {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 20px var(--cyan);
  animation: scan 4s ease-in-out infinite;
}
.modal-copy {
  padding: 65px 48px 42px;
}
.product-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  color: #a78bfa;
  letter-spacing: 1.3px;
  font-weight: 800;
}
.status-pill {
  border: 1px solid rgba(45, 212, 191, 0.25);
  color: var(--cyan);
  padding: 5px 8px;
  border-radius: 999px;
  letter-spacing: 0.4px;
}
.modal-copy h2 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin: 18px 0;
}
.modal-copy > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 28px 0;
}
.detail-grid div {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
}
.detail-grid div + div {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.detail-grid span {
  font-size: 9px;
  color: var(--muted);
}
.detail-grid strong {
  font-size: 11px;
  margin-top: 4px;
}
.modal-buy {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-buy > strong {
  font-size: 28px;
}
.modal-buy button {
  border: 0;
  border-radius: 13px;
  background: var(--purple);
  color: white;
  height: 48px;
  padding: 0 25px;
  font-weight: 800;
  cursor: pointer;
}
.modal-copy > small {
  display: block;
  color: #777182;
  font-size: 9px;
  margin-top: 18px;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 25px;
  z-index: 100;
  background: #f7f5fb;
  color: #0b0810;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 11px;
  font-weight: 800;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }
  .hero-content {
    text-align: center;
    margin: auto;
  }
  .eyebrow,
  .hero-actions {
    justify-content: center;
  }
  .hero-content > p {
    margin-inline: auto;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us,
  .payments {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .trust-strip > div {
    border: 0;
  }
  .catalog-layout {
    grid-template-columns: 190px 1fr;
  }
}
@media (max-width: 720px) {
  .site-header {
    height: 68px;
    padding: 0 16px;
  }
  .icon-button {
    display: none;
  }
  .hero {
    padding: 70px 18px 45px;
    gap: 20px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 48px;
    letter-spacing: -3px;
  }
  .hero-content > p {
    font-size: 14px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .trust-strip {
    grid-template-columns: 1fr 1fr;
    padding: 24px 14px;
  }
  .trust-strip > div {
    justify-content: flex-start;
  }
  .trust-strip small {
    display: none;
  }
  .catalog {
    padding: 75px 15px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 15px;
  }
  .catalog-toolbar {
    grid-template-columns: 1fr;
  }
  .catalog-toolbar select {
    height: 50px;
  }
  .catalog-layout {
    display: block;
  }
  .filter-panel {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .product-art {
    height: 125px;
  }
  .product-copy {
    padding: 12px;
  }
  .product-copy h3 {
    font-size: 11px;
    min-height: 44px;
  }
  .product-footer strong {
    font-size: 15px;
  }
  .quick-add {
    opacity: 1;
    transform: none;
  }
  .why-us,
  .payments {
    padding: 75px 20px;
  }
  .payment-grid {
    grid-template-columns: 1fr 1fr;
  }
  .discord-cta {
    margin: 20px 14px 70px;
    padding: 50px 20px;
  }
  .discord-cta h2 {
    font-size: 38px;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    padding: 50px 20px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .product-modal {
    grid-template-columns: 1fr;
  }
  .modal-art {
    min-height: 230px;
  }
  .modal-art span {
    font-size: 80px;
  }
  .modal-copy {
    padding: 34px 23px;
  }
  .modal-copy h2 {
    font-size: 25px;
  }
}

/* Reference storefront pass based on the supplied shop. */
body {
  background:
    radial-gradient(
      circle at 78% 10%,
      rgba(255, 122, 26, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #080808 0%, #0d0c0b 44%, #090909 100%);
}

.site-header {
  height: 72px;
  border-bottom-color: rgba(255, 255, 255, 0.07);
  background: rgba(8, 8, 8, 0.9);
}

.brand-logo,
.footer-logo {
  max-height: 42px;
}

.desktop-nav {
  gap: 28px;
}

.desktop-nav a {
  color: #b8b0a7;
  font-size: 13px;
}

.desktop-nav .active:after {
  background: linear-gradient(90deg, #ff7a1a, #ffb35b);
}

.icon-button,
.cart-button,
.account-button,
.admin-button {
  border-radius: 10px;
  background: #151515;
}

.cart-button strong {
  background: #ff7a1a;
  color: #130902;
}

.hero-reference {
  min-height: 585px;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.82fr);
  gap: clamp(34px, 6vw, 86px);
  padding: clamp(72px, 8vw, 118px) clamp(20px, 7vw, 104px) 58px;
  background:
    linear-gradient(90deg, rgba(255, 122, 26, 0.1), transparent 50%),
    radial-gradient(
      circle at 84% 50%,
      rgba(255, 122, 26, 0.18),
      transparent 36%
    );
}

.hero-reference:before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-reference .hero-content {
  max-width: 650px;
}

.hero-reference .eyebrow,
.section-kicker {
  color: #ff9b45;
  letter-spacing: 1.8px;
}

.hero-reference .eyebrow span {
  background: #ff7a1a;
}

.hero-reference h1 {
  margin: 18px 0 12px;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -2.2px;
}

.hero-reference h1 em {
  color: #ff8c24;
  font-style: normal;
}

.hero-reference h2 {
  margin: 0 0 18px;
  color: #fff4e7;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.8px;
}

.hero-reference .hero-content > p {
  max-width: 590px;
  color: #c3b9ad;
  font-size: 17px;
}

.hero-reference .hero-actions {
  margin-top: 30px;
}

.primary-button {
  border-radius: 10px;
  background: linear-gradient(135deg, #ff7a1a, #ffb15a);
  color: #130a03;
  box-shadow: 0 18px 44px rgba(255, 122, 26, 0.28);
}

.secondary-button {
  border-radius: 10px;
  border-color: rgba(255, 122, 26, 0.34);
  background: #141210;
  color: #fff0df;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
}

.hero-character-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 122, 26, 0.22), transparent 45%), #12100e;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.hero-character-card:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
}

.character-stack {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 26px);
  padding: 50px 24px 76px;
}

.character-stack img {
  width: clamp(92px, 11vw, 145px);
  height: clamp(92px, 11vw, 145px);
  object-fit: contain;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.45));
}

.character-stack img:nth-child(2) {
  width: clamp(122px, 14vw, 190px);
  height: clamp(122px, 14vw, 190px);
  margin-top: -44px;
  background: rgba(255, 122, 26, 0.14);
}

.hero-live-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 12px;
  align-items: end;
  padding: 18px;
  border-radius: 14px;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(12px);
}

.hero-live-card strong {
  color: #ff8c24;
  font-size: 42px;
  line-height: 1;
}

.hero-live-card span {
  color: #fff4e7;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-live-card small {
  grid-column: 2;
  color: #b9afa4;
}

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

.hero-category-row button {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #131313;
  color: #fff5ea;
  cursor: pointer;
}

.hero-category-row img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.hero-category-row span {
  font-size: 12px;
  font-weight: 800;
}

.hero-stock-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b9afa4;
  font-size: 13px;
}

.hero-stock-line i {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.55);
}

.trust-strip {
  display: none;
}

.catalog {
  padding-top: 52px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -1.4px;
}

.catalog-toolbar,
.filter-panel,
.product-card,
.feature-card,
.checkout-form-card,
.checkout-review,
.auth-card,
.admin-shell {
  border-radius: 12px;
}

.catalog-toolbar {
  background: #111;
  border-color: rgba(255, 255, 255, 0.07);
}

.search-field,
.catalog-toolbar select {
  border-radius: 10px;
  background: #080808;
}

.catalog-layout {
  grid-template-columns: minmax(210px, 255px) minmax(0, 1fr);
}

.filter-panel {
  background: #101010;
  border-color: rgba(255, 255, 255, 0.075);
}

.sidebar-section,
.subcategory-filters label {
  border-radius: 10px;
}

.sidebar-section.active,
.subcategory-filters label:has(input:checked) {
  border-color: rgba(255, 122, 26, 0.55);
  background: rgba(255, 122, 26, 0.11);
}

.filter-card {
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(255, 122, 26, 0.16),
    rgba(255, 255, 255, 0.035)
  );
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

.product-card {
  background: #111;
}

.product-art {
  border-radius: 12px 12px 0 0;
}

.quick-add,
.load-more,
.place-order-button,
.checkout-button {
  border-radius: 10px;
  background: linear-gradient(135deg, #ff7a1a, #ffb15a);
  color: #160b03;
}

.product-category,
.product-footer small,
.filter-label {
  color: #ff9b45;
}

.why-us,
.payments {
  background: #0b0b0b;
}

.discord-cta {
  border-radius: 16px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 122, 26, 0.18),
      rgba(255, 255, 255, 0.04)
    ),
    #101010;
}

.checkout-modal {
  border-radius: 18px;
  background: #080808;
}

.checkout-review {
  background: #f6f2ec;
}

@media (max-width: 1050px) {
  .hero-reference {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .hero-reference .hero-content {
    text-align: left;
    margin: 0;
  }

  .hero-reference .eyebrow,
  .hero-reference .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .hero-reference h1 {
    font-size: 42px;
    letter-spacing: -1.4px;
  }

  .hero-category-row {
    grid-template-columns: 1fr;
  }

  .character-stack {
    gap: 8px;
    padding-inline: 14px;
  }

  .character-stack img {
    padding: 14px;
  }
}

/* Checkout v3.3 — PRshop interpretation of the supplied two-column flow */
.checkout-modal {
  width: min(1380px, calc(100% - 34px));
  max-height: calc(100dvh - 34px);
  padding: clamp(30px, 4vw, 62px);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  background:
    radial-gradient(
      circle at 14% 4%,
      rgba(124, 58, 237, 0.13),
      transparent 27%
    ),
    #09080d;
}
.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: start;
}
.checkout-form-column {
  display: grid;
  gap: 24px;
  min-width: 0;
}
.checkout-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 17px;
  padding: 0 58px 5px 0;
  border: 0;
}
.checkout-head-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
  color: #a99fb6;
  font-size: 16px;
}
.checkout-head h2 {
  margin: 4px 0 2px;
  font-size: clamp(30px, 4vw, 45px);
  letter-spacing: -2px;
}
.checkout-head p {
  font-size: 11px;
}
.checkout-form-card {
  padding: clamp(22px, 3vw, 31px);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.032);
}
.checkout-card-label,
.payment-group-label {
  display: block;
  color: #777080;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.checkout-card-label {
  margin: 0 4px 19px;
  color: #aaa1b7;
}
.checkout-fields {
  display: grid;
  gap: 12px;
}
.checkout-fields label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.checkout-fields input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 17px;
  outline: 0;
  background: #050507;
  color: #fff;
  font: inherit;
  font-size: 13px;
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}
.checkout-fields input:focus {
  border-color: rgba(139, 92, 246, 0.75);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}
.checkout-field-note {
  display: block;
  margin: 13px 5px 0;
  color: #686171;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.55px;
  line-height: 1.55;
  text-transform: uppercase;
}
.checkout-form-card .payment-options {
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.payment-group-label {
  grid-column: 1 / -1;
  margin: 8px 4px 0;
  color: #5f5867;
}
.payment-option-wide {
  grid-column: 1 / -1;
}
.checkout-form-card .payment-option {
  min-height: 76px;
  padding: 14px 16px;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.038);
}
.checkout-form-card .payment-option:has(input:checked) {
  border-color: #7c6df4;
  background: rgba(99, 81, 220, 0.1);
  box-shadow: 0 0 28px rgba(99, 81, 220, 0.08);
}
.checkout-form-card .payment-icon {
  border-radius: 50%;
}
.payment-icon.standard {
  color: #34d399;
}
.checkout-form-column .checkout-protection {
  margin: 0;
  border-radius: 20px;
}
.checkout-review {
  position: sticky;
  top: 0;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 46px;
  background: #f5f4f2;
  color: #111014;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.36);
}
.checkout-summary-orb {
  position: absolute;
  z-index: 0;
  right: -85px;
  top: -105px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(30, 26, 36, 0.055);
}
.checkout-review > *:not(.checkout-summary-orb) {
  position: relative;
  z-index: 1;
}
.checkout-review .checkout-section-title {
  margin-bottom: 34px;
}
.checkout-review .checkout-section-title span,
.checkout-review .checkout-reference > span {
  color: #756c7e;
}
.checkout-review .checkout-section-title h3 {
  margin-top: 7px;
  font-size: 23px;
  letter-spacing: -0.6px;
  text-transform: none;
}
.checkout-review .checkout-section-title button {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.045);
  color: #18151d;
}
.checkout-review .checkout-items {
  gap: 15px;
}
.checkout-review .checkout-item {
  grid-template-columns: 58px 1fr auto;
  padding: 0;
  border: 0;
  background: transparent;
}
.checkout-review .checkout-item-art {
  width: 58px;
  height: 58px;
  border-radius: 17px;
}
.checkout-review .checkout-item h4 {
  color: #17141b;
  font-size: 11px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}
.checkout-review .checkout-item small {
  color: #7d7584;
}
.checkout-review .checkout-item > strong {
  color: #17141b;
  font-size: 13px;
}
.checkout-review .checkout-totals {
  gap: 14px;
  margin-top: 28px;
  padding: 24px 0;
  border-color: rgba(0, 0, 0, 0.11);
}
.checkout-review .checkout-totals > div {
  color: #756e7b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.checkout-review .checkout-totals strong {
  color: #151219;
}
.checkout-review .checkout-totals .checkout-total {
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  color: #151219;
  font-size: 13px;
}
.checkout-review .checkout-totals .checkout-total strong {
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -1.7px;
}
.checkout-review .checkout-reference {
  margin-top: 0;
  border-color: rgba(57, 45, 72, 0.21);
  background: rgba(37, 29, 47, 0.045);
}
.checkout-review .checkout-reference strong {
  color: #292230;
}
.checkout-review .checkout-reference small {
  color: #756e7b;
}
.checkout-review .checkout-consent {
  color: #28232e;
}
.checkout-review .checkout-consent label {
  color: #28232e;
}
.checkout-review .checkout-consent p {
  color: #7a7280;
}
.checkout-review .checkout-consent a {
  color: #5b36b8;
}
.checkout-review .place-order-button {
  min-height: 70px;
  border-radius: 23px;
  background: #111014;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
  font-size: 10px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
.checkout-review .checkout-validation {
  color: #625b68;
}
.checkout-review .checkout-disclaimer {
  color: #817985;
}
.checkout-payment-marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 18px;
  color: #1c1920;
  font-size: 10px;
  font-weight: 900;
  opacity: 0.35;
}
@media (max-width: 1050px) {
  .checkout-shell {
    grid-template-columns: 1fr;
  }
  .checkout-review {
    position: relative;
  }
}
@media (max-width: 720px) {
  .checkout-modal {
    width: 100%;
    max-height: 100dvh;
    padding: 70px 16px 24px;
    border-radius: 0;
  }
  .checkout-shell {
    gap: 24px;
  }
  .checkout-form-card {
    padding: 20px 15px;
    border-radius: 24px;
  }
  .checkout-form-card .payment-options {
    grid-template-columns: 1fr;
  }
  .payment-group-label,
  .payment-option-wide {
    grid-column: 1;
  }
  .checkout-review {
    padding: 27px 19px;
    border-radius: 31px;
  }
  .checkout-review .checkout-item {
    grid-template-columns: 50px 1fr auto;
  }
  .checkout-review .checkout-item-art {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 420px) {
  .cart-button > span {
    display: none;
  }
  .hero h1 {
    font-size: 42px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .product-art {
    height: 112px;
  }
  .product-category {
    font-size: 7px;
  }
  .product-footer span {
    display: none;
  }
  .payment-grid {
    grid-template-columns: 1fr;
  }
  .section-heading h2,
  .why-copy h2,
  .payments h2 {
    font-size: 38px;
  }
}
.product-card.out-of-stock {
  opacity: 0.62;
}
.product-card.out-of-stock:hover {
  transform: none;
}

/* Priority 5 — trust, support and customer guidance */
.faq {
  padding: clamp(78px, 9vw, 132px) clamp(20px, 7vw, 110px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(255, 122, 26, 0.09),
      transparent 30%
    ),
    #0a0a0a;
}
.faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 56px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 48px;
}
.faq-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  letter-spacing: -2.6px;
}
.faq-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}
.faq-list details {
  align-self: start;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.028);
  transition:
    border-color 0.18s,
    background 0.18s;
}
.faq-list details[open] {
  border-color: rgba(255, 122, 26, 0.42);
  background: rgba(255, 122, 26, 0.055);
}
.faq-list summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  color: #ff9b45;
  transition: transform 0.18s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: 0;
  padding: 0 22px 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}
.faq-list details a {
  color: #ffae63;
}
.support-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.discord-cta > small {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: #8e8780;
  font-size: 10px;
}
.footer-brand ~ div a:hover,
.footer-brand ~ div a:focus-visible {
  color: var(--text);
}
@media (max-width: 760px) {
  .faq-heading,
  .faq-list {
    grid-template-columns: 1fr;
  }
  .faq-heading {
    gap: 20px;
    margin-bottom: 30px;
  }
  .faq-heading h2 {
    letter-spacing: -1.8px;
  }
  .faq-list summary {
    min-height: 64px;
    padding: 17px 18px;
  }
  .faq-list details p {
    padding: 0 18px 20px;
  }
  .support-actions {
    width: 100%;
    flex-direction: column;
  }
  .support-actions a {
    width: 100%;
  }
}
.copy-order {
  width: 100%;
  height: 46px;
  margin: 14px 0 9px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}
.modal-buy button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  background: #4b4655;
}
.status-pill {
  white-space: nowrap;
}
.catalog-layout {
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}
.filter-panel {
  position: sticky;
  top: 98px;
  padding: 20px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 25px;
  background: linear-gradient(
    165deg,
    rgba(24, 20, 34, 0.88),
    rgba(13, 11, 20, 0.94)
  );
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.22);
  max-height: calc(100vh - 118px);
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 92, 246, 0.35) transparent;
}
.filter-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2px 4px 17px;
}
.filter-panel-head span,
.filter-label {
  display: block;
  color: #8d839d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.filter-panel-head h3 {
  margin: 4px 0 0;
  font-size: 18px;
  letter-spacing: -0.4px;
}
.filter-panel-head button {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(139, 92, 246, 0.1);
  color: #b9a6ff;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}
.filter-group {
  padding: 2px;
}
.filter-label {
  margin: 0 5px 10px;
}
.filter-divider {
  height: 1px;
  margin: 16px 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.11),
    transparent
  );
}
.sidebar-sections {
  display: grid;
  gap: 5px;
}
.sidebar-section {
  width: 100%;
  min-height: 41px;
  border: 0;
  border-radius: 13px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  text-align: left;
  background: transparent;
  color: #9d98aa;
  cursor: pointer;
  transition: 0.18s;
}
.sidebar-section:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #f7f5fb;
}
.sidebar-section.active {
  background: linear-gradient(
    100deg,
    rgba(139, 92, 246, 0.18),
    rgba(45, 212, 191, 0.055)
  );
  color: #fff;
  box-shadow: inset 2px 0#8b5cf6;
}
.sidebar-section > span {
  font-size: 13px;
}
.sidebar-section b {
  font-size: 11px;
  font-weight: 680;
}
.sidebar-section small {
  min-width: 24px;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #7f788b;
  font-size: 8px;
  text-align: center;
}
.sidebar-section.active small {
  background: rgba(139, 92, 246, 0.18);
  color: #c9bcff;
}
.subcategory-filters {
  display: grid;
  gap: 4px;
  margin: 0;
  max-height: 300px;
  overflow: auto;
  padding: 0 3px 0 0;
}
.filter-option {
  min-height: 38px;
  padding: 0 8px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 8px;
  border-radius: 11px;
  color: #aaa4b5;
  cursor: pointer;
  transition: 0.18s;
}
.filter-option:hover {
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
}
.filter-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.filter-check {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
  color: transparent;
  font-size: 9px;
  font-weight: 900;
  transition: 0.18s;
}
.filter-option input:checked + .filter-check {
  border-color: #8b5cf6;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: #fff;
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.28);
}
.filter-name {
  font-size: 10.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filter-option > small {
  color: #716b7d;
  font-size: 8px;
}
.quick-filters {
  display: grid;
  gap: 6px;
}
.switch-row {
  min-height: 54px;
  padding: 8px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}
.switch-row > span {
  display: flex;
  flex-direction: column;
}
.switch-row b {
  font-size: 10px;
}
.switch-row small {
  color: #746e7e;
  font-size: 8px;
  margin-top: 2px;
}
.switch-row input {
  position: absolute;
  opacity: 0;
}
.switch-row i {
  width: 31px;
  height: 18px;
  padding: 2px;
  border-radius: 999px;
  background: #302b39;
  transition: 0.2s;
}
.switch-row i:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #81798b;
  transition: 0.2s;
}
.switch-row input:checked + i {
  background: linear-gradient(90deg, #7c3aed, #8b5cf6);
}
.switch-row input:checked + i:after {
  transform: translateX(13px);
  background: #fff;
}
.filter-card {
  margin-top: 18px;
  border-radius: 17px;
  padding: 18px;
  background: linear-gradient(
    145deg,
    rgba(124, 58, 237, 0.14),
    rgba(45, 212, 191, 0.045)
  );
  border-color: rgba(139, 92, 246, 0.18);
}
.product-grid {
  gap: 19px;
}
.product-card {
  border-color: rgba(255, 255, 255, 0.075);
  border-radius: 24px;
  background: linear-gradient(
    165deg,
    rgba(24, 21, 33, 0.96),
    rgba(15, 13, 22, 0.98)
  );
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
  isolation: isolate;
}
.product-card:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.13),
    transparent 38%,
    rgba(139, 92, 246, 0.15)
  );
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  z-index: 4;
}
.product-art {
  height: 184px;
  margin: 7px 7px 0;
  border-radius: 18px;
}
.product-art:after {
  background:
    radial-gradient(
      circle at 78% 15%,
      rgba(255, 255, 255, 0.13),
      transparent 25%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.07),
      transparent 42%,
      rgba(0, 0, 0, 0.24)
    );
}
.product-copy {
  padding: 17px 18px 19px;
}
.product-copy h3 {
  font-size: 13.5px;
  letter-spacing: -0.15px;
}
.product-footer {
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}
.quick-add {
  opacity: 1;
  transform: none;
  background: rgba(12, 10, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  backdrop-filter: blur(8px);
}
@media (max-width: 1050px) and (min-width: 721px) {
  .catalog-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }
  .filter-panel {
    padding-inline: 11px;
  }
  .product-grid {
    gap: 13px;
  }
}
.mobile-filter-button,
.filter-close {
  display: none;
}
.filter-head-actions {
  display: flex;
  gap: 5px;
}
@media (max-width: 720px) {
  .catalog-toolbar {
    grid-template-columns: 1fr 1fr;
  }
  .search-field {
    grid-column: 1/-1;
  }
  .catalog-toolbar select {
    min-width: 0;
    width: 100%;
  }
  .mobile-filter-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--panel);
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
  }
  .catalog-layout {
    display: block;
  }
  .filter-panel {
    display: block;
    position: fixed;
    z-index: 90;
    left: 0;
    top: 0;
    width: min(335px, 88vw);
    height: 100vh;
    max-height: none;
    border-radius: 0 24px 24px 0;
    padding: 21px 15px;
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    box-shadow: 35px 0 90px rgba(0, 0, 0, 0.48);
  }
  .filter-panel.mobile-open {
    transform: none;
  }
  .filter-close {
    display: grid !important;
    place-items: center;
    width: 30px;
    height: 30px !important;
    padding: 0 !important;
    font-size: 19px !important;
  }
  .product-grid {
    gap: 10px;
  }
  .product-art {
    height: 130px;
    margin: 5px 5px 0;
    border-radius: 15px;
  }
  .product-card,
  .product-card:before {
    border-radius: 19px;
  }
  .product-copy {
    padding: 12px;
  }
  .product-footer {
    padding-top: 8px;
    margin-top: 5px;
  }
}
.product-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 25px rgba(0, 0, 0, 0.28));
  transform: scale(0.96);
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}
.product-card:hover .product-image {
  transform: scale(1.015);
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.38));
}
.product-initial[hidden],
.product-image[hidden],
.cart-product-image[hidden],
.modal-product-image[hidden] {
  display: none;
}
.product-art .product-initial {
  position: relative;
  z-index: 1;
}
.product-art:after {
  pointer-events: none;
}
.cart-item-art {
  overflow: hidden;
  background: linear-gradient(135deg, var(--card-a), var(--card-b));
}
.cart-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.3));
}
.cart-item-art .product-initial {
  font-size: 18px;
  letter-spacing: -1px;
}
.modal-product-image {
  position: absolute;
  z-index: 1;
  width: 94%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 26px 45px rgba(0, 0, 0, 0.38));
}
.modal-art .product-initial {
  z-index: 1;
}
.modal-art i {
  z-index: 2;
  opacity: 0.38;
}
.modal-art:before {
  position: absolute;
}
@media (max-width: 720px) {
  .product-image {
    transform: scale(1.02);
  }
  .product-card:hover .product-image {
    transform: scale(1.04);
  }
  .modal-product-image {
    width: 88%;
    height: 94%;
  }
  .cart-product-image {
    transform: scale(1.18);
  }
}
.why-us {
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
}
.why-copy {
  position: relative;
  z-index: 2;
}
.why-copy h2 {
  max-width: 560px;
}
.why-copy p {
  font-size: 14px;
}
.feature-slider {
  min-width: 0;
  position: relative;
}
.feature-slider-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 15px;
  color: #8f879c;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.feature-slider-topline > span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-slider-topline i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(45, 212, 191, 0.72);
}
.feature-slider-topline strong {
  color: #c8bdd7;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.feature-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  outline: 0;
  padding: 4px 68px 20px 2px;
}
.feature-viewport::-webkit-scrollbar {
  display: none;
}
.feature-viewport:focus-visible {
  border-radius: 28px;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.7);
}
.feature-track {
  display: flex;
  gap: 16px;
}
.feature-slide {
  flex: 0 0 calc(100% - 44px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.feature-card {
  --feature-a: #8b5cf6;
  --feature-b: #2dd4bf;
  min-height: 420px;
  border-radius: 30px;
  padding: 28px 30px 25px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 15%,
      color-mix(in srgb, var(--feature-b) 18%, transparent),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--feature-a) 13%, #181421),
      #0f0d16 72%
    );
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 24px 65px rgba(0, 0, 0, 0.27),
    inset 0 1px rgba(255, 255, 255, 0.05);
}
.feature-card:before {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  right: -145px;
  top: -145px;
  border: 1px solid color-mix(in srgb, var(--feature-b) 26%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px color-mix(in srgb, var(--feature-a) 3%, transparent),
    0 0 0 84px color-mix(in srgb, var(--feature-b) 2%, transparent);
}
.feature-card:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(120deg, black, transparent 72%);
}
.feature-card-live {
  --feature-a: #7c3aed;
  --feature-b: #2dd4bf;
}
.feature-card-ticket {
  --feature-a: #6366f1;
  --feature-b: #60a5fa;
}
.feature-card-speed {
  --feature-a: #ec4899;
  --feature-b: #f59e0b;
}
.feature-card-payments {
  --feature-a: #2563eb;
  --feature-b: #8b5cf6;
}
.feature-card-community {
  --feature-a: #14b8a6;
  --feature-b: #a78bfa;
}
.feature-card-head,
.feature-card-copy,
.feature-card-foot {
  position: relative;
  z-index: 2;
}
.feature-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 25px;
  font-weight: 700;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--feature-a) 78%, white 8%),
    color-mix(in srgb, var(--feature-b) 60%, #101018)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--feature-a) 24%, transparent);
}
.feature-number {
  color: rgba(255, 255, 255, 0.1);
  font-size: 68px;
  font-weight: 900;
  letter-spacing: -5px;
  line-height: 1;
}
.feature-card-copy {
  margin: auto 0 34px;
  max-width: 570px;
}
.feature-eyebrow {
  display: block;
  margin-bottom: 13px;
  color: color-mix(in srgb, var(--feature-b) 76%, white);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 2px;
}
.feature-card h3 {
  margin: 0 0 15px;
  max-width: 520px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -1.7px;
}
.feature-card p {
  margin: 0;
  max-width: 560px;
  color: #aaa3b5;
  font-size: 12.5px;
  line-height: 1.75;
}
.feature-card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
}
.feature-card-foot span,
.feature-card-foot b {
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  color: #928b9d;
  background: rgba(255, 255, 255, 0.025);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.4px;
}
.feature-card-foot b {
  margin-left: auto;
  border-color: color-mix(in srgb, var(--feature-b) 25%, transparent);
  color: color-mix(in srgb, var(--feature-b) 70%, white);
  background: color-mix(in srgb, var(--feature-b) 8%, transparent);
}
.feature-slider-controls {
  height: 42px;
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 0 4px;
}
.feature-dots {
  display: flex;
  gap: 6px;
}
.feature-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #3a3443;
  cursor: pointer;
  transition: 0.25s;
}
.feature-dots button.active {
  width: 25px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.35);
}
.feature-progress {
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}
.feature-progress i {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}
.feature-slider.is-playing .feature-progress i {
  animation: feature-progress 6.5s linear forwards;
}
.feature-slider.is-paused .feature-progress i {
  animation-play-state: paused;
}
@keyframes feature-progress {
  to {
    transform: scaleX(1);
  }
}
.feature-arrows {
  display: flex;
  gap: 7px;
}
.feature-arrows button {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: #eeeaf5;
  cursor: pointer;
  transition: 0.18s;
}
.feature-arrows button:hover {
  border-color: rgba(139, 92, 246, 0.45);
  background: rgba(139, 92, 246, 0.12);
  transform: translateY(-1px);
}
@media (max-width: 1050px) {
  .why-us {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-copy {
    text-align: center;
  }
  .why-copy h2,
  .why-copy p {
    margin-inline: auto;
  }
  .feature-slider {
    width: min(820px, 100%);
    margin: auto;
  }
  .feature-card {
    min-height: 390px;
  }
}
@media (max-width: 720px) {
  .feature-viewport {
    padding-right: 28px;
  }
  .feature-slide {
    flex-basis: calc(100% - 12px);
  }
  .feature-card {
    min-height: 370px;
    padding: 23px 21px 21px;
    border-radius: 24px;
  }
  .feature-number {
    font-size: 53px;
  }
  .feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    font-size: 21px;
  }
  .feature-card h3 {
    font-size: 29px;
  }
  .feature-card-copy {
    margin-bottom: 25px;
  }
  .feature-card-foot {
    flex-wrap: wrap;
  }
  .feature-card-foot b {
    margin-left: 0;
  }
  .feature-slider-controls {
    grid-template-columns: auto 1fr auto;
    gap: 11px;
  }
  .feature-progress {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .feature-viewport {
    scroll-behavior: auto;
  }
  .feature-progress i {
    animation: none !important;
  }
  .feature-arrows button {
    transition: none;
  }
}

.product-open {
  text-decoration: none;
}
.vouches {
  padding: 108px clamp(20px, 6vw, 94px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 5%, rgba(139, 92, 246, 0.1), transparent 30%),
    #0b0911;
}
.vouches-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}
.vouches-heading h2 {
  margin: 10px 0 0;
  max-width: 720px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -2.7px;
}
.vouches-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}
.vouch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.vouch-card,
.vouch-empty {
  min-height: 245px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(
    160deg,
    rgba(25, 21, 35, 0.96),
    rgba(14, 12, 20, 0.98)
  );
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}
.vouch-card {
  display: flex;
  flex-direction: column;
}
.vouch-card-head,
.vouch-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.vouch-card-head > div {
  display: flex;
  flex-direction: column;
}
.vouch-card-head strong {
  font-size: 14px;
}
.vouch-card-head div span,
.vouch-card-foot {
  color: #8e8798;
  font-size: 10px;
}
.vouch-stars {
  color: #fbbf24;
  font-size: 13px;
  letter-spacing: 2px;
}
.vouch-card blockquote {
  margin: 28px 0;
  color: #ddd8e5;
  font-size: 14px;
  line-height: 1.75;
}
.vouch-card-foot {
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.vouch-card-foot a,
.vouch-discord-link {
  color: #bda9ff;
  font-weight: 750;
  text-decoration: none;
}
.vouch-empty {
  grid-column: 1/-1;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}
.vouch-empty > span {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.13);
  color: #bda9ff;
}
.vouch-empty strong {
  font-size: 17px;
}
.vouch-empty p {
  max-width: 590px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.vouch-discord-link {
  min-height: 44px;
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
}
.order-reference {
  padding: 13px 14px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.07);
}
.order-reference span {
  color: #9991a4;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.order-reference strong {
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
@media (max-width: 900px) {
  .vouches-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .vouch-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .vouches {
    padding-block: 78px;
  }
  .vouch-grid {
    grid-template-columns: 1fr;
  }
  .vouch-card-head,
  .vouch-card-foot {
    align-items: flex-start;
    flex-direction: column;
  }
}
.brand {
  min-width: 166px;
}
.brand-logo {
  display: block;
  width: 162px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}
.footer-logo {
  display: block;
  width: 176px;
  height: auto;
}
.footer-brand {
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand p {
  margin: 0;
}
.hero-v2 {
  min-height: 760px;
  padding: 88px clamp(24px, 6.2vw, 100px) 92px;
  grid-template-columns: minmax(470px, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(48px, 6vw, 100px);
  background:
    radial-gradient(circle at 8% 8%, rgba(124, 58, 237, 0.12), transparent 26%),
    radial-gradient(
      circle at 93% 74%,
      rgba(45, 212, 191, 0.08),
      transparent 27%
    );
}
.hero-v2:before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(
    105deg,
    black,
    rgba(0, 0, 0, 0.28) 60%,
    transparent 95%
  );
}
.hero-v2:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 92, 246, 0.55),
    rgba(45, 212, 191, 0.38),
    transparent
  );
}
.hero-v2 .hero-content {
  max-width: 760px;
}
.hero-v2 .eyebrow {
  color: #aaa2b8;
  font-size: 9px;
  letter-spacing: 2.1px;
}
.hero-v2 .eyebrow span {
  width: 32px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}
.hero-v2 .eyebrow b {
  margin-left: 8px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #746e80;
  font-size: 7px;
  letter-spacing: 1.1px;
}
.hero-v2 h1 {
  max-width: 800px;
  margin: 24px 0 25px;
  font-size: clamp(56px, 6.1vw, 88px);
  line-height: 0.96;
  letter-spacing: -5.4px;
}
.hero-v2 h1 em {
  background: linear-gradient(
    100deg,
    #f0ebff 0%,
    #a78bfa 40%,
    #6d5dfc 70%,
    #2dd4bf 115%
  );
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-v2 .hero-content > p {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.75;
}
.hero-v2 .hero-actions {
  margin: 32px 0 43px;
}
.hero-v2 .primary-button {
  min-height: 54px;
  padding-inline: 25px;
  border-radius: 15px;
  background: linear-gradient(130deg, #8b5cf6, #6d28d9 74%);
  box-shadow: 0 16px 42px rgba(109, 40, 217, 0.28);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.hero-v2 .primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(109, 40, 217, 0.36);
}
.hero-v2 .secondary-button {
  min-height: 54px;
  padding-inline: 22px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.hero-v2 .secondary-button:hover {
  border-color: rgba(45, 212, 191, 0.28);
  background: rgba(45, 212, 191, 0.05);
}
.discord-button-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 13px rgba(45, 212, 191, 0.8);
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  padding-top: 21px;
}
.hero-proof > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  padding: 0 17px;
  border-left: 1px solid rgba(255, 255, 255, 0.075);
}
.hero-proof > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.hero-proof > div > span {
  color: #6d6677;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-top: 3px;
}
.hero-proof p {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.hero-proof strong {
  font-size: 11px;
  line-height: 1.3;
}
.hero-proof small {
  margin-top: 4px;
  color: #716b7b;
  font-size: 8.5px;
}
.hero-showcase {
  height: 585px;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 0;
}
.showcase-shell {
  width: min(590px, 100%);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(25, 21, 36, 0.97),
    rgba(12, 10, 18, 0.98)
  );
  box-shadow:
    0 48px 110px rgba(0, 0, 0, 0.48),
    inset 0 1px rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}
.showcase-shell:before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -200px;
  top: -210px;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.17);
  box-shadow:
    0 0 0 50px rgba(139, 92, 246, 0.025),
    0 0 0 100px rgba(45, 212, 191, 0.018);
}
.showcase-topbar {
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5px 0 8px;
  color: #756e80;
  font-size: 7.5px;
  font-weight: 800;
  letter-spacing: 1.25px;
}
.showcase-topbar > span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.showcase-topbar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.8);
}
.showcase-topbar b {
  color: #c3b8d4;
  font-size: 9px;
}
.showcase-featured {
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 21px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1.13fr 0.87fr;
  align-items: center;
  gap: 15px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.16),
    rgba(255, 255, 255, 0.018) 48%,
    rgba(45, 212, 191, 0.05)
  );
}
.showcase-featured:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #8b5cf6,
    #2dd4bf,
    transparent
  );
}
.showcase-featured-copy {
  position: relative;
  z-index: 2;
}
.showcase-featured-copy > span {
  font-size: 7.5px;
  font-weight: 850;
  letter-spacing: 1.7px;
  color: #a78bfa;
}
.showcase-featured-copy h2 {
  margin: 12px 0;
  font-size: clamp(27px, 2.4vw, 37px);
  line-height: 1.02;
  letter-spacing: -1.7px;
}
.showcase-featured-copy p {
  max-width: 280px;
  margin: 0;
  color: #8f8999;
  font-size: 10.5px;
  line-height: 1.65;
}
.showcase-featured-copy a {
  display: inline-flex;
  gap: 15px;
  margin-top: 27px;
  color: #e8e3ef;
  text-decoration: none;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 1.05px;
}
.showcase-featured-copy a b {
  color: var(--cyan);
}
.showcase-featured-art {
  height: 240px;
  display: grid;
  place-items: center;
  position: relative;
}
.showcase-featured-art img {
  width: 92%;
  height: 90%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 23px 28px rgba(0, 0, 0, 0.36));
}
.showcase-featured-art > span {
  position: absolute;
  z-index: 3;
  bottom: 5px;
  right: 2px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(10, 8, 15, 0.7);
  color: #9d96a8;
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.showcase-rings {
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid rgba(167, 139, 250, 0.22);
  box-shadow:
    0 0 0 30px rgba(139, 92, 246, 0.035),
    0 0 0 60px rgba(45, 212, 191, 0.018);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.showcase-grid article {
  min-width: 0;
  height: 104px;
  padding: 11px 13px 11px 11px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.018);
  display: grid;
  grid-template-columns: 75px 1fr auto;
  align-items: center;
  gap: 12px;
}
.showcase-mini-art {
  width: 75px;
  height: 80px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.showcase-mini-art:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08),
    transparent 45%,
    rgba(0, 0, 0, 0.15)
  );
}
.showcase-mini-art img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 12px 15px rgba(0, 0, 0, 0.28));
}
.showcase-mini-art.art-netflix {
  background: linear-gradient(145deg, #3e111f, #160d17);
}
.showcase-mini-art.art-nordvpn {
  background: linear-gradient(145deg, #172d58, #0d1528);
}
.showcase-grid p {
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0;
}
.showcase-grid small {
  color: #716a7a;
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 1px;
}
.showcase-grid strong {
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
  font-size: 11px;
  white-space: nowrap;
}
.showcase-grid article > span {
  color: #777080;
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 0.7px;
}
.showcase-float {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.095);
  background: rgba(15, 13, 22, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.36);
}
.showcase-float-stock {
  left: -31px;
  bottom: 87px;
  min-width: 174px;
  padding: 12px 14px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.showcase-float-stock > i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0 5px rgba(45, 212, 191, 0.09),
    0 0 16px rgba(45, 212, 191, 0.6);
}
.showcase-float-stock span {
  display: flex;
  flex-direction: column;
}
.showcase-float-stock b {
  font-size: 9px;
}
.showcase-float-stock small {
  margin-top: 2px;
  color: #756e80;
  font-size: 7px;
}
.showcase-float-rating {
  right: -27px;
  top: 64px;
  padding: 13px 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.showcase-float-rating strong {
  font-size: 21px;
  letter-spacing: -1px;
}
.showcase-float-rating span {
  color: #7e7789;
  font-size: 6px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.8px;
}
.trust-strip-v2 {
  grid-template-columns: 0.55fr repeat(4, 1fr);
  padding-block: 19px;
}
.trust-strip-v2 .trust-label {
  align-self: center;
  color: #625c6c;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 1.6px;
}
.trust-strip-v2 > div {
  justify-content: flex-start;
  padding-left: 23px;
}
.trust-strip-v2 > div > span {
  color: #716a7d;
  font-size: 7px;
  font-weight: 900;
}
.trust-strip-v2 strong {
  font-size: 11px;
}
.trust-strip-v2 small {
  font-size: 8px;
}
@media (max-width: 1160px) {
  .hero-v2 {
    grid-template-columns: minmax(410px, 0.95fr) minmax(440px, 1.05fr);
    gap: 45px;
  }
  .showcase-float-stock {
    left: -10px;
  }
  .showcase-float-rating {
    right: -9px;
  }
  .trust-strip-v2 {
    grid-template-columns: repeat(4, 1fr);
  }
  .trust-strip-v2 .trust-label {
    display: none;
  }
}
@media (max-width: 1050px) {
  .hero-v2 {
    grid-template-columns: 1fr;
    padding-top: 75px;
    gap: 55px;
  }
  .hero-v2 .hero-content {
    text-align: left;
    margin: 0 auto;
    width: min(780px, 100%);
  }
  .hero-v2 .eyebrow,
  .hero-v2 .hero-actions {
    justify-content: flex-start;
  }
  .hero-showcase {
    width: min(690px, 100%);
    margin: auto;
  }
  .showcase-shell {
    width: 100%;
  }
  .trust-strip-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .brand {
    min-width: 0;
  }
  .brand-logo {
    width: 146px;
    height: 38px;
  }
  .hero-v2 {
    padding: 64px 17px 52px;
    gap: 43px;
  }
  .hero-v2 h1 {
    font-size: clamp(45px, 13vw, 59px);
    letter-spacing: -3.5px;
  }
  .hero-v2 .eyebrow b {
    display: none;
  }
  .hero-v2 .hero-content > p {
    font-size: 14px;
  }
  .hero-v2 .hero-actions {
    margin-bottom: 35px;
  }
  .hero-proof {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .hero-proof > div {
    padding: 0 0 0 12px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.075) !important;
  }
  .hero-showcase {
    height: auto;
    display: block;
  }
  .showcase-shell {
    padding: 10px;
    border-radius: 23px;
  }
  .showcase-topbar {
    height: 35px;
  }
  .showcase-featured {
    min-height: 310px;
    padding: 23px 19px;
    grid-template-columns: 1.08fr 0.92fr;
  }
  .showcase-featured-copy h2 {
    font-size: 25px;
  }
  .showcase-featured-copy p {
    font-size: 9px;
  }
  .showcase-featured-copy a {
    margin-top: 20px;
  }
  .showcase-featured-art {
    height: 205px;
  }
  .showcase-grid article {
    height: 88px;
    padding: 8px;
    grid-template-columns: 60px 1fr;
  }
  .showcase-mini-art {
    width: 60px;
    height: 68px;
  }
  .showcase-grid article > span {
    display: none;
  }
  .showcase-float {
    display: none;
  }
  .trust-strip-v2 {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip-v2 > div {
    padding-left: 8px;
  }
  .footer-brand {
    align-items: flex-start;
  }
}
@media (max-width: 460px) {
  .brand-logo {
    width: 139px;
  }
  .hero-v2 h1 {
    font-size: 44px;
  }
  .showcase-featured {
    grid-template-columns: 1fr;
    min-height: 410px;
  }
  .showcase-featured-copy {
    text-align: center;
  }
  .showcase-featured-copy p {
    margin-inline: auto;
  }
  .showcase-featured-art {
    height: 150px;
  }
  .showcase-rings {
    width: 145px;
    height: 145px;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-grid article {
    height: 82px;
  }
  .trust-strip-v2 {
    grid-template-columns: 1fr;
  }
  .trust-strip-v2 > div {
    justify-content: flex-start;
    padding: 8px 10px;
  }
  .trust-strip-v2 small {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-v2 .primary-button {
    transition: none;
  }
}
body {
  background: #09070f;
}
.hero-v2 {
  background: linear-gradient(180deg, #0d0a14 0%, #0a0810 100%);
}
.hero-v2:before {
  display: none;
}
.hero-v2 .hero-glow {
  display: none;
}
.showcase-shell {
  background: #11101a;
}
.showcase-featured {
  background: linear-gradient(135deg, #1d152c, #13121c 55%, #101b1d);
}
.trust-strip-v2 {
  background: #0d0a13;
}
.product-stock i,
.cart-line-stock i {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}
.product-stock {
  min-height: 35px;
  margin: 13px 0 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}
.product-stock span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #716b7a;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 1px;
}
.product-stock strong {
  font-size: 8px;
  letter-spacing: 0.5px;
  text-align: right;
}
.product-stock.stock-live span,
.product-stock.stock-live strong,
.status-pill.stock-live,
.cart-line-stock.stock-live {
  color: #65e8d3;
}
.product-stock.stock-low span,
.product-stock.stock-low strong,
.status-pill.stock-low,
.cart-line-stock.stock-low {
  color: #fbbf5d;
}
.product-stock.stock-empty span,
.product-stock.stock-empty strong,
.status-pill.stock-empty,
.cart-line-stock.stock-empty {
  color: #fb8498;
}
.product-stock.stock-unknown span,
.product-stock.stock-unknown strong,
.status-pill.stock-unknown,
.cart-line-stock.stock-unknown {
  color: #918a99;
}
.product-card.out-of-stock {
  opacity: 1;
}
.product-card.out-of-stock .product-image {
  filter: saturate(0.55);
  opacity: 0.72;
}
.product-footer {
  margin-top: 0;
}
.cart-line-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.status-pill.stock-low {
  border-color: rgba(245, 158, 11, 0.28);
}
.status-pill.stock-empty {
  border-color: rgba(251, 113, 133, 0.28);
}
.status-pill.stock-unknown {
  border-color: rgba(160, 153, 170, 0.2);
}
.detail-grid {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 720px) {
  .product-stock {
    margin: 10px 0;
    padding: 7px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
  .product-stock strong {
    text-align: left;
    font-size: 7.5px;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .detail-grid div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }
  .detail-grid div {
    padding: 12px 0;
  }
  .detail-grid div + div {
    padding-top: 12px;
  }
}
.showcase-grid article {
  cursor: pointer;
  transition:
    border-color 0.18s,
    transform 0.18s,
    background 0.18s;
}
.showcase-grid article:hover,
.showcase-grid article:focus-visible {
  border-color: rgba(139, 92, 246, 0.4);
  background: rgba(139, 92, 246, 0.055);
  transform: translateY(-1px);
  outline: 0;
}
.product-card:focus-visible {
  outline: 2px solid #a78bfa;
  outline-offset: 3px;
}
.checkout-button.disabled {
  pointer-events: auto;
  cursor: not-allowed;
  opacity: 0.42;
  filter: saturate(0.3);
}
.modal-buy button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  filter: saturate(0.35);
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(167, 139, 250, 0.9);
  outline-offset: 3px;
}
body.overlay-open {
  overflow: hidden;
}
.modal-art {
  background: linear-gradient(
    140deg,
    var(--card-a, #28144d),
    var(--card-b, #0b3033)
  );
}
.cart-catalog-offline {
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.06);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cart-catalog-offline strong {
  font-size: 13px;
  color: #fbbf5d;
}
.cart-catalog-offline span {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
}
body {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.hero-v2 {
  min-height: 720px;
}
.hero-v2 h1 {
  font-size: clamp(52px, 5.6vw, 82px);
  line-height: 0.99;
  letter-spacing: -4.8px;
}
.hero-v2 .hero-content > p {
  color: #b2adbb;
  font-size: 17px;
  max-width: 680px;
}
.hero-v2 .eyebrow {
  font-size: 11px;
  color: #bcb6c7;
}
.hero-v2 .eyebrow b {
  font-size: 9px;
  color: #aaa3b5;
}
.hero-proof strong {
  font-size: 13px;
}
.hero-proof small {
  font-size: 11px;
  color: #918a9b;
}
.showcase-topbar {
  font-size: 10px;
}
.showcase-topbar b {
  font-size: 11px;
}
.showcase-featured-copy > span {
  font-size: 10px;
}
.showcase-featured-copy p {
  font-size: 13px;
  color: #aaa4b2;
}
.showcase-featured-copy a {
  font-size: 11px;
}
.showcase-featured-art > span,
.showcase-grid small,
.showcase-grid article > span {
  font-size: 9px;
}
.showcase-grid strong {
  font-size: 13px;
}
.showcase-float-stock b {
  font-size: 11px;
}
.showcase-float-stock small {
  font-size: 9px;
}
.showcase-float-rating {
  min-width: 132px;
}
.showcase-float-rating strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.12);
  color: var(--cyan);
  font-size: 16px;
}
.showcase-float-rating span {
  font-size: 8px;
}
.trust-strip-v2 .trust-label,
.trust-strip-v2 > div > span {
  font-size: 9px;
}
.trust-strip-v2 strong {
  font-size: 13px;
}
.trust-strip-v2 small {
  font-size: 10px;
  color: #918a9b;
}
.product-grid {
  gap: 20px;
}
.product-card {
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, #14111d, #100e17);
}
.product-art {
  height: 190px;
}
.quick-add {
  width: auto;
  min-width: 54px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
}
.product-copy {
  padding: 19px;
}
.product-category {
  font-size: 10px;
  color: #b19afa;
}
.product-copy h3 {
  font-size: 16px;
  line-height: 1.4;
  min-height: 45px;
  margin: 9px 0 11px;
}
.product-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 13px;
}
.product-facts span {
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #a9a3b2;
  font-size: 10px;
  line-height: 1;
}
.product-stock {
  min-height: 42px;
  margin: 0 0 14px;
  padding: 10px 0;
}
.product-stock span {
  font-size: 10px;
  color: #9891a2;
}
.product-stock strong {
  font-size: 11px;
}
.product-footer p {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.product-footer small {
  color: #817a8a;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.product-footer strong {
  font-size: 21px;
  line-height: 1.25;
}
.product-footer > span {
  font-size: 10px;
  color: #b9b2c2;
  font-weight: 750;
}
.results-line {
  font-size: 13px;
  height: 38px;
}
.filter-option,
.sidebar-section {
  font-size: 13px;
}
.modal-copy > p {
  font-size: 14px;
}
.detail-grid span {
  font-size: 10px;
}
.detail-grid strong {
  font-size: 12px;
}
@media (max-width: 720px) {
  .hero-v2 .eyebrow {
    font-size: 9px;
  }
  .hero-v2 h1 {
    font-size: clamp(42px, 12vw, 56px);
    letter-spacing: -3.2px;
  }
  .hero-v2 .hero-content > p {
    font-size: 15px;
  }
  .showcase-featured-copy p {
    font-size: 12px;
  }
  .product-art {
    height: 145px;
  }
  .product-copy h3 {
    font-size: 13px;
    min-height: 38px;
  }
  .product-facts span {
    font-size: 9px;
  }
  .product-stock span,
  .product-stock strong {
    font-size: 9px;
  }
  .product-footer strong {
    font-size: 18px;
  }
}
.skip-link {
  position: fixed;
  z-index: 200;
  left: 18px;
  top: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff;
  color: #15101d;
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 0.18s;
}
.skip-link:focus {
  transform: none;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-nav {
  display: none;
}
.showcase-item {
  min-width: 0;
  height: 104px;
  padding: 11px 13px 11px 11px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.018);
  color: inherit;
  text-align: left;
  display: grid;
  grid-template-columns: 75px 1fr auto;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition:
    border-color 0.18s,
    transform 0.18s,
    background 0.18s;
}
.showcase-item > span {
  color: #777080;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
}
.showcase-item:hover,
.showcase-item:focus-visible {
  border-color: rgba(139, 92, 246, 0.45);
  background: rgba(139, 92, 246, 0.07);
  transform: translateY(-1px);
}
.product-card {
  position: relative;
}
.product-open {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  cursor: pointer;
}
.product-card:has(.product-open:focus-visible) {
  outline: 3px solid #a78bfa;
  outline-offset: 4px;
}
.product-open:focus-visible {
  outline: 0;
}
.quick-add {
  z-index: 6;
  min-height: 44px;
  min-width: 58px;
}
.drawer-head button,
.modal-close,
.filter-close {
  min-width: 44px;
  min-height: 44px;
}
.category-tab,
.sidebar-section,
.load-more,
.copy-order,
.modal-buy button,
.checkout-button {
  min-height: 44px;
}
.filter-option {
  min-height: 44px;
}
.feature-dots button {
  min-width: 24px;
  min-height: 44px;
  background-clip: content-box;
  padding: 18px 8px;
}
.feature-dots button.active {
  width: 40px;
}
.feature-arrows button {
  width: 44px;
  height: 44px;
}
@media (max-width: 1050px) {
  .checkout-head {
    display: block;
  }
  .checkout-steps {
    margin-top: 20px;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-payment {
    padding: 28px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .menu-button {
    display: block;
  }
  .mobile-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(16px, 5vw, 54px);
    width: min(320px, calc(100vw - 32px));
    padding: 10px;
    display: grid;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(17, 14, 25, 0.98);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    pointer-events: none;
    transition:
      opacity 0.18s,
      transform 0.18s,
      visibility 0.18s;
  }
  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
  .mobile-nav a {
    min-height: 48px;
    padding: 0 14px;
    border-radius: 12px;
    color: #d7d1df;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 750;
  }
  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: rgba(139, 92, 246, 0.13);
    color: #fff;
  }
  .showcase-item {
    height: 104px;
  }
}
@media (max-width: 720px) {
  .checkout-modal {
    width: 100%;
    max-height: 100dvh;
    padding: 72px 18px 24px;
    border-radius: 0;
  }
  .checkout-head {
    padding-right: 0;
  }
  .checkout-close {
    right: 16px;
    top: 14px;
  }
  .checkout-steps {
    gap: 8px;
    overflow-x: auto;
  }
  .checkout-steps span {
    white-space: nowrap;
  }
  .payment-options {
    grid-template-columns: 1fr;
  }
  .checkout-item {
    grid-template-columns: 48px 1fr auto;
  }
  .checkout-item-art {
    width: 48px;
    height: 48px;
  }
  .site-header {
    gap: 10px;
  }
  .header-actions {
    gap: 6px;
  }
  .cart-button {
    padding-left: 12px;
  }
  .cart-button > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }
  .mobile-nav {
    right: 16px;
  }
  .showcase-item {
    height: 88px;
    padding: 8px;
    grid-template-columns: 60px 1fr;
  }
  .showcase-item > span {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-open {
    border-radius: 19px;
  }
}
@media (max-width: 460px) {
  .icon-button {
    display: none;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-art {
    height: 190px;
  }
  .product-copy h3 {
    font-size: 16px;
    min-height: auto;
  }
  .product-facts span,
  .product-stock span,
  .product-stock strong {
    font-size: 10px;
  }
  .showcase-item {
    height: 82px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.account-button,
.admin-button {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.admin-button {
  border-color: rgba(249, 115, 22, 0.26);
  color: #fed7aa;
}
.auth-modal,
.admin-modal {
  position: fixed;
  z-index: 90;
  inset: 50% auto auto 50%;
  width: min(94vw, 560px);
  max-height: 88vh;
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: #100d17;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.56);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.97);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.admin-modal {
  width: min(96vw, 1060px);
}
.auth-modal.open,
.admin-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.auth-card,
.admin-shell {
  display: grid;
  gap: 18px;
}
.auth-card h2,
.admin-shell h2 {
  margin: 4px 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -1.2px;
}
.auth-card p,
.admin-shell p {
  color: #a99fb6;
}

.mfa-setup,
.mfa-recovery {
  display: grid;
  gap: 0.8rem;
}

.mfa-setup[hidden],
.mfa-recovery[hidden] {
  display: none;
}

.mfa-setup img {
  width: min(240px, 100%);
  height: auto;
  padding: 0.75rem;
  border-radius: 1rem;
  background: #fff;
}

.mfa-setup code {
  overflow-wrap: anywhere;
}

.mfa-recovery pre {
  margin: 0;
  padding: 1rem;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.8rem;
  background: rgba(0, 0, 0, 0.28);
  color: inherit;
}
.customer-auth-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.customer-auth-actions [hidden] {
  display: none;
}
.auth-link-button {
  width: max-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: #c4b5fd;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.account-email-status,
.password-reset-panel,
.session-manager {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.08);
}
.account-email-status[hidden],
.password-reset-panel[hidden] {
  display: none;
}
.account-email-status span,
.session-card span,
.session-card time {
  color: #aaa1b7;
  font-size: 11px;
}
.password-reset-panel label {
  display: grid;
  gap: 6px;
  color: #aaa1b7;
  font-size: 11px;
}
.password-reset-panel input {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #050507;
  color: #fff;
  font: inherit;
}
.account-security[hidden] {
  display: none;
}
.account-security,
.ticket-activity,
.ticket-conversation {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}
.account-security summary,
.ticket-activity summary {
  cursor: pointer;
  font-weight: 800;
}
.account-security-fields {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.session-manager summary {
  cursor: pointer;
  font-weight: 800;
}
.session-list {
  display: grid;
  gap: 8px;
}
.session-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 10px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
}
.session-card strong,
.session-card span {
  overflow-wrap: anywhere;
}
.session-card button {
  grid-row: 1 / span 3;
  grid-column: 2;
  align-self: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(251, 113, 133, 0.3);
  border-radius: 8px;
  background: rgba(251, 113, 133, 0.1);
  color: #fecdd3;
  cursor: pointer;
}
.account-security-fields label,
.ticket-conversation label,
.ticket-selector {
  display: grid;
  gap: 6px;
  color: #aaa1b7;
  font-size: 11px;
}
.account-security-fields input,
.ticket-conversation textarea,
.ticket-selector select,
.admin-list-head select,
.admin-ticket-tools input,
.admin-ticket-tools select,
.ticket-refund-form textarea {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #050507;
  color: #fff;
  font: inherit;
}
.ticket-conversation textarea {
  min-height: 90px;
  resize: vertical;
}
.danger-button {
  min-height: 46px;
  border: 1px solid rgba(251, 113, 133, 0.35);
  border-radius: 12px;
  background: rgba(251, 113, 133, 0.12);
  color: #fecdd3;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.admin-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}
.admin-list-head h3 {
  margin: 0;
}
.admin-notifications {
  margin: 16px 0;
  padding: 14px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 16px;
  background: rgba(249, 115, 22, 0.07);
}
.admin-notifications > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.admin-notifications button {
  border: 0;
  background: transparent;
  color: #fed7aa;
  font: inherit;
  cursor: pointer;
}
.admin-notifications ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.admin-notifications li button {
  display: grid;
  gap: 3px;
  width: 100%;
  padding: 9px 0;
  color: #fff;
  text-align: left;
}
.admin-notifications li span {
  color: #b9b1c2;
  font-size: 11px;
}
.admin-export-button {
  min-height: 40px;
  padding: 0 12px;
  font-size: 10px;
}
.admin-ticket-tools {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}
.admin-ticket-tools label,
.ticket-refund-form label {
  display: grid;
  gap: 6px;
  color: #aaa1b7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-ticket-tools input,
.admin-ticket-tools select {
  width: 100%;
}
.admin-pagination {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.admin-pagination span {
  color: #a99fb6;
  font-size: 10px;
  text-align: center;
}
.admin-pagination button {
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
}
.admin-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}
.ticket-history,
.ticket-messages {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.ticket-history li,
.ticket-message {
  padding: 10px 12px;
  border-left: 2px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.025);
}
.ticket-history span,
.ticket-message time {
  display: block;
  margin-top: 3px;
  color: #8f8997;
  font-size: 10px;
}
.ticket-history p,
.ticket-message p,
.ticket-empty-copy {
  margin: 6px 0 0;
  color: #c9c4ce;
  white-space: pre-wrap;
}
.ticket-conversation {
  display: grid;
  gap: 12px;
}
.ticket-conversation h4 {
  margin: 0;
}
.auth-secondary-button {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: #f4f4f4;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.admin-layout {
  display: grid;
  grid-template-columns: minmax(240px, 330px) 1fr;
  gap: 18px;
}
.admin-layout h3 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.admin-orders {
  display: grid;
  gap: 10px;
}
.admin-order {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.admin-order.active {
  border-color: rgba(249, 115, 22, 0.42);
  background: rgba(249, 115, 22, 0.08);
}
.admin-order strong {
  font-size: 12px;
}
.admin-order span,
.admin-order small,
.admin-empty,
.admin-detail > span {
  color: #a99fb6;
  font-size: 11px;
}
.admin-detail {
  min-height: 360px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}
.admin-ticket-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}
.admin-ticket-head span {
  color: #fed7aa;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.admin-ticket-head h3 {
  margin: 6px 0 0;
  font-size: 20px;
  letter-spacing: -0.4px;
}
.admin-ticket-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}
.admin-ticket-meta div {
  padding: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}
.admin-ticket-meta dt {
  color: #777080;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.admin-ticket-meta dd {
  margin: 5px 0 0;
  color: #fff;
  font-size: 12px;
  overflow-wrap: anywhere;
}
.admin-ticket-items {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.admin-ticket-items li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #d8d2e0;
  font-size: 12px;
}
.admin-note {
  display: grid;
  gap: 8px;
  color: #aaa1b7;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.admin-note + .admin-note {
  margin-top: 12px;
}
.admin-note textarea {
  min-height: 110px;
  resize: vertical;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: #050507;
  color: #fff;
  font: inherit;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.admin-actions button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: #f97316;
  color: #130c06;
  font: inherit;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.admin-actions button:nth-child(3) {
  background: rgba(251, 113, 133, 0.16);
  color: #fecdd3;
}
.admin-actions button:nth-child(4) {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.ticket-refund,
.ticket-refund-form {
  display: grid;
  gap: 10px;
  margin: 14px 0;
  padding: 14px;
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 14px;
  background: rgba(249, 115, 22, 0.055);
}
.ticket-refund p {
  margin: 0;
  color: #c9c4ce;
  white-space: pre-wrap;
}
.ticket-refund-form textarea {
  min-height: 90px;
  resize: vertical;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 720px) {
  .account-button,
  .admin-button {
    padding: 0 10px;
    font-size: 9px;
  }
  .auth-modal,
  .admin-modal {
    width: 100%;
    max-height: 100dvh;
    padding: 72px 18px 24px;
    border-radius: 0;
  }
  .admin-layout,
  .admin-ticket-meta {
    grid-template-columns: 1fr;
  }
}

/* Final monochrome storefront pass. */
:root {
  --purple: #ffffff;
  --purple-2: #d7d7d7;
  --cyan: #f4f4f4;
  --pink: #cfcfcf;
  --gold: #ffffff;
  --bg: #030303;
  --bg-2: #0a0a0a;
  --panel: #111111;
  --panel-2: #171717;
  --line: rgba(255, 255, 255, 0.14);
  --text: #ffffff;
  --muted: #a8a8a8;
}

html {
  color-scheme: dark;
}

body,
.site-shell,
.hero,
.hero-reference,
.hero-v2 {
  background:
    radial-gradient(
      circle at 78% 12%,
      rgba(255, 255, 255, 0.08),
      transparent 27%
    ),
    radial-gradient(
      circle at 8% 18%,
      rgba(255, 255, 255, 0.055),
      transparent 24%
    ),
    linear-gradient(180deg, #050505 0%, #000 54%, #070707 100%) !important;
  color: #fff;
}

.hero-reference:after,
.hero-v2:after {
  content: "";
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 0 42%,
      rgba(255, 255, 255, 0.1) 48%,
      transparent 54% 100%
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 34px,
      rgba(255, 255, 255, 0.028) 34px 35px
    );
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: monochromeLoop 12s linear infinite;
}

@keyframes monochromeLoop {
  0% {
    transform: translate3d(-8%, 0, 0) rotate(0.001deg);
  }
  50% {
    transform: translate3d(8%, 2%, 0) rotate(0.001deg);
  }
  100% {
    transform: translate3d(-8%, 0, 0) rotate(0.001deg);
  }
}

.hero-reference,
.hero-v2,
.catalog-layout,
.catalog-sidebar,
.product-grid-shell,
.site-header,
.cart-panel,
.auth-modal,
.admin-modal,
.modal-card,
.checkout-shell,
.support-card,
.vouch-card,
.feature-card,
.product-card,
.admin-detail,
.admin-order {
  border-color: rgba(255, 255, 255, 0.14) !important;
  background: #090909 !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48) !important;
}

.hero-reference:before,
.hero-v2:before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px) !important;
}

.brand-mark,
.eyebrow span,
.hero-reference .eyebrow span,
.hero-v2 .eyebrow span,
.stock-dot,
.hero-stock-line i,
.product-stock i,
.cart-line-stock i,
.primary-button,
.checkout-submit,
.admin-actions button,
.modal-add,
.cart-checkout,
.account-button,
.admin-button,
.category-tab.active,
.sidebar-section.active > span,
.filter-check,
.nav-link:after {
  background: #fff !important;
  color: #050505 !important;
  box-shadow: none !important;
}

.primary-button,
.checkout-submit,
.admin-actions button,
.modal-add,
.cart-checkout {
  border: 1px solid #fff !important;
}

.secondary-button,
.nav-link,
.cart-toggle,
.category-tab,
.sidebar-section,
.subcategory-filters label,
.search-box,
.filter-sort,
.quantity-btn,
.cart-remove,
.modal-close,
.auth-toggle,
.admin-actions button:nth-child(4) {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.045) !important;
  color: #f4f4f4 !important;
}

.category-tab:hover,
.sidebar-section:hover,
.subcategory-filters label:hover,
.subcategory-filters label:has(input:checked),
.sidebar-section.active,
.admin-order.active {
  border-color: rgba(255, 255, 255, 0.62) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
}

/* Sidebar symbols stay monochrome and never receive an emoji tile/background. */
.sidebar-section > span,
.sidebar-section:hover > span,
.sidebar-section.active > span,
.category-tab > span,
.category-tab:hover > span,
.category-tab.active > span {
  display: inline-grid !important;
  place-items: center !important;
  width: 25px !important;
  min-width: 25px !important;
  height: 25px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 7px !important;
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 11px !important;
  font-style: normal !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-shadow: none !important;
}

.sidebar-section.active > span,
.sidebar-section:hover > span {
  border-color: rgba(255, 255, 255, 0.7) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

.sidebar-section.active {
  box-shadow: inset 2px 0 #fff !important;
}

/* Remove the remaining legacy accent colors from secondary UI states. */
.quick-add,
.load-more,
.feature-nav button,
.slider-dot.active,
.checkout-step.active,
.payment-option:has(input:checked),
.auth-submit,
.admin-order.active,
.toast,
.cart-count,
.filter-check {
  border-color: rgba(255, 255, 255, 0.7) !important;
  background: #fff !important;
  color: #050505 !important;
  box-shadow: none !important;
}

a,
button,
[role="button"],
.product-card,
.feature-card,
.payment-option,
.checkout-step,
.status-pill,
.product-stock,
.cart-line-stock {
  --feature-a: #f5f5f5 !important;
  --feature-b: #6f6f6f !important;
  accent-color: #fff !important;
}

.hero-reference .eyebrow,
.hero-v2 .eyebrow,
.hero-reference h1 em,
.hero-live-card strong,
.product-category,
.modal-category,
.admin-ticket-head span,
.catalog-kicker,
.section-eyebrow,
.product-stock.stock-live span,
.product-stock.stock-live strong,
.status-pill.stock-live,
.cart-line-stock.stock-live,
.product-stock.stock-low span,
.product-stock.stock-low strong,
.status-pill.stock-low,
.cart-line-stock.stock-low,
.showcase-float-stock b {
  color: #fff !important;
}

.hero-reference h2,
.hero-live-card span,
.hero-category-row button,
.hero-category-row span,
.product-title,
.product-card h3,
.admin-ticket-meta dd,
.modal-title,
.cart-panel h3,
.checkout-shell h3 {
  color: #fff !important;
}

.hero-reference .hero-content > p,
.hero-v2 .hero-content > p,
.hero-live-card small,
.hero-stock-line,
.product-card p,
.catalog-intro p,
.sidebar-section small,
.subcategory-filters small,
.auth-card p,
.admin-shell p,
.admin-order span,
.admin-order small,
.admin-empty,
.admin-detail > span,
.admin-ticket-meta dt,
.admin-note,
.checkout-note,
.muted {
  color: #aaa !important;
}

.hero-character-card,
.hero-showcase,
.product-art,
.product-image,
.modal-art,
.cart-item-art,
.checkout-item-art {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background:
    radial-gradient(
      circle at 50% 34%,
      rgba(255, 255, 255, 0.17),
      transparent 29%
    ),
    linear-gradient(145deg, var(--card-a), var(--card-b)) !important;
}

.hero-live-card,
.showcase-float-stock {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(5, 5, 5, 0.86) !important;
  color: #fff !important;
  backdrop-filter: blur(16px);
}

.product-stock,
.cart-line-stock,
.status-pill {
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: rgba(255, 255, 255, 0.055) !important;
}

.product-stock.stock-empty span,
.product-stock.stock-empty strong,
.status-pill.stock-empty,
.cart-line-stock.stock-empty,
.admin-actions button:nth-child(3) {
  color: #d8d8d8 !important;
}

.admin-actions button:nth-child(3) {
  background: rgba(255, 255, 255, 0.08) !important;
}

input,
textarea,
select {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: #050505 !important;
  color: #fff !important;
}

/* Product color and payment-review workflow. */
.product-card {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--card-a) 18%, #090909),
    #090909 48%
  ) !important;
}

.product-card:hover {
  border-color: color-mix(in srgb, var(--card-a) 70%, white) !important;
  box-shadow: 0 24px 60px color-mix(in srgb, var(--card-a) 18%, transparent) !important;
}

.product-category {
  color: color-mix(in srgb, var(--card-a) 65%, white) !important;
}

.verification-options {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  border: 0;
}

.verification-options legend {
  margin-bottom: 10px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verification-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.verification-option:has(input:checked) {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.verification-option span {
  display: grid;
  gap: 3px;
}
.verification-option small {
  color: #aaa;
}

#adminNotificationCount {
  display: inline-grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  margin-left: 5px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
}

#adminNotificationCount[hidden] {
  display: none;
}
.admin-actions button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

/* Neutral shell with colorful product identity. */
.product-card {
  background:
    radial-gradient(
      circle at 82% 12%,
      color-mix(in srgb, var(--card-a) 38%, transparent),
      transparent 42%
    ),
    linear-gradient(
      155deg,
      color-mix(in srgb, var(--card-a) 28%, #0a0a0c),
      color-mix(in srgb, var(--card-b) 22%, #08090c)
    ) !important;
}
.product-art,
.product-image,
.modal-art,
.cart-item-art,
.checkout-item-art {
  background: linear-gradient(145deg, var(--card-a), var(--card-b)) !important;
}
.product-card:hover {
  border-color: color-mix(in srgb, var(--card-a) 72%, white) !important;
  box-shadow: 0 24px 64px color-mix(in srgb, var(--card-a) 24%, transparent) !important;
}
.product-category {
  color: color-mix(in srgb, var(--card-a) 72%, white) !important;
}

.ticket-button {
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.ticket-modal {
  position: fixed;
  z-index: 90;
  inset: 50% auto auto 50%;
  width: min(94vw, 720px);
  max-height: 88vh;
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: #090909;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.62);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.97);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.ticket-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.ticket-shell {
  display: grid;
  gap: 18px;
}
.ticket-shell h2 {
  margin: 4px 0;
  font-size: clamp(28px, 4vw, 42px);
}
.customer-ticket-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}
.customer-ticket-head h3 {
  margin: 5px 0 0;
}
.customer-ticket-head span {
  color: #bbb;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.ticket-flow-note,
.ticket-delivery {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: #ccc;
}

.manual-payment-destination {
  display: grid;
  gap: 10px;
  margin: 14px 0;
  padding: 16px;
  border: 1px solid rgba(129, 140, 248, 0.3);
  border-radius: 16px;
  background: rgba(79, 70, 229, 0.08);
}

.manual-payment-destination > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.manual-payment-destination span,
.manual-payment-destination small {
  color: var(--muted);
}

.manual-payment-destination code {
  overflow-wrap: anywhere;
  padding: 12px;
  border-radius: 10px;
  background: rgba(2, 6, 23, 0.5);
  color: #e0e7ff;
  font: 700 0.86rem/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas,
    monospace;
}

.manual-payment-destination .auth-secondary-button {
  width: fit-content;
}
.ticket-delivery p {
  margin: 8px 0 0;
  white-space: pre-wrap;
}

/* Final catalog refinement: one filter system and clearer product priority. */
.admin-button[hidden] {
  display: none !important;
}

.catalog-layout {
  grid-template-columns: 286px minmax(0, 1fr);
}

.filter-panel {
  max-height: none;
  overflow: visible;
}

.subcategory-filters {
  max-height: none;
  overflow: visible;
}

.product-grid {
  gap: 16px;
}

.product-art {
  height: 162px;
}

.product-copy {
  padding: 16px 17px 17px;
}

.product-copy h3 {
  min-height: 42px;
  margin-block: 7px 9px;
}

.product-facts {
  margin-bottom: 10px;
}

.product-stock {
  margin-bottom: 10px;
}

.feature-viewport {
  padding: 4px 2px 20px;
}

.feature-track {
  gap: 0;
}

.feature-slide {
  flex-basis: 100%;
}

.vouch-empty {
  min-height: 118px;
  padding: 18px 22px;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  place-items: center start;
  text-align: left;
}

.vouch-empty > span {
  grid-row: 1 / 3;
  margin: 0;
}

.vouch-empty p {
  max-width: none;
  margin-top: 3px;
}

.section-heading > p,
.filter-panel-head span,
.filter-label,
.sidebar-section,
.filter-option,
.switch-row small,
.results-line,
.feature-slider-topline,
.feature-card p,
.feature-card-foot span,
.feature-card-foot b,
.vouches-heading > p,
.vouch-empty p {
  color: #c2bdc9;
}

@media (max-width: 1050px) and (min-width: 721px) {
  .catalog-layout {
    grid-template-columns: 250px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .filter-panel {
    max-height: 100dvh;
    overflow: auto;
  }

  .product-art {
    height: 150px;
  }

  .feature-viewport {
    padding-right: 2px;
  }

  .feature-slide {
    flex-basis: 100%;
  }

  .vouch-empty {
    grid-template-columns: 1fr;
    place-items: center;
    text-align: center;
  }

  .vouch-empty > span {
    grid-row: auto;
  }
}
