:root {
  --color-bg: #0a0a0a;
  --color-card: #111111;
  --color-border: #1a1a1a;
  --color-border-2: #2a2a2a;
  --color-text: #f4f4f5;
  --color-muted: #9ca3af;
  --color-muted-2: #6b7280;
  --color-input: #18181b;
  --color-accent: #e53ee7;
  --color-accent-rgb: 229, 62, 231;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "DM Mono", ui-monospace, "SFMono-Regular", monospace;
  --font-price: var(--font-sans);
  --font-ui: var(--font-sans);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 140ms;
  --dur-med: 220ms;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 68px;
  background-color: #0a0a0a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 0 V40' fill='none' stroke='rgba(255%2C255%2C255%2C0.035)' stroke-width='0.5'/%3E%3Cpath d='M0 0 H40' fill='none' stroke='rgba(255%2C255%2C255%2C0.035)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  background-attachment: fixed;
  background-position: center center;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #d4d4d8;
}

h1 {
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #fafafa;
}

h2 {
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #fafafa;
}

h3 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: #fafafa;
}

p {
  font-size: 13px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--color-muted);
}

strong {
  font-weight: 500;
}

small {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-muted);
}

.card-price,
.card-price span,
.cart-controls strong,
.summary-row strong {
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.game-pill,
.game-tag {
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
}

.product-info h1,
.card-body h3,
.cart-item h3 {
  color: var(--color-text);
}

#imperiumLoader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 400ms ease, visibility 400ms ease;
}

#imperiumLoader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.loader-logo {
  width: 120px;
  height: auto;
  opacity: 0;
  transform: translateY(6px);
  animation: loaderLogoIn 500ms ease 100ms forwards;
}

@keyframes loaderLogoIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-bar-track {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  opacity: 0;
  animation: loaderTrackIn 300ms ease 400ms forwards;
}

@keyframes loaderTrackIn {
  to {
    opacity: 1;
  }
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--color-accent);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(var(--color-accent-rgb), 0.6);
  animation: loaderBarFill 1800ms cubic-bezier(0.4, 0, 0.2, 1) 500ms forwards;
}

@keyframes loaderBarFill {
  0% {
    width: 0%;
  }
  30% {
    width: 35%;
  }
  60% {
    width: 65%;
  }
  85% {
    width: 88%;
  }
  100% {
    width: 100%;
  }
}

body.search-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

input,
.navbar-search-wrap input {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.btn-primary,
.btn-outline,
.navbar-signin,
#buyNowProduct,
.card-buy {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ── Floating pill navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 12px 24px;
  pointer-events: none;
}

.navbar-inner {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: min(1180px, calc(100vw - 48px));
  min-width: 0;
  height: 44px;
  background: rgba(14, 14, 14, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0 12px 0 14px;
  box-sizing: border-box;
  transition: border-color 200ms ease, background 200ms ease;
  animation: nav-slide-in var(--dur-med) var(--ease-smooth);
}

.navbar.scrolled .navbar-inner {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(12, 12, 12, 0.95);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #f4f4f5;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 150ms ease;
}

.navbar-logo:hover {
  opacity: 0.75;
}

.navbar-logo-img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px 20px;
  flex-shrink: 1;
  min-width: 0;
  margin-left: 4px;
}

.navbar-links::-webkit-scrollbar {
  display: none;
}

.navbar-link {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 150ms ease, opacity 150ms ease;
}

.navbar-link:hover {
  color: #ffffff;
}

.navbar-search-wrap {
  flex: 0 1 320px;
  width: 280px;
  max-width: 320px;
  min-width: 160px;
  margin-left: auto;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1050;
}

/* Navbar currency selector */
.navbar-currency-wrap {
  position: relative;
  flex-shrink: 0;
  margin-left: 8px;
  z-index: 1060;
}

.navbar-currency-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 10px 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
}

.navbar-currency-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.navbar-currency-btn.open {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.navbar-currency-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.currency-btn-flag,
.currency-option-flag {
  font-family: "Noto Color Emoji", "Segoe UI Emoji", "Apple Color Emoji", emoji;
}

.currency-btn-flag {
  font-size: 14px;
  line-height: 1;
  margin-right: 2px;
}

.navbar-currency-chevron {
  flex-shrink: 0;
  opacity: 0.55;
  transition: transform 150ms ease, opacity 150ms ease;
}

.navbar-currency-btn:hover .navbar-currency-chevron,
.navbar-currency-btn.open .navbar-currency-chevron {
  opacity: 0.9;
}

.navbar-currency-btn.open .navbar-currency-chevron {
  transform: rotate(180deg);
}

@keyframes currency-panel-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-currency-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 240px;
  max-height: 320px;
  flex-direction: column;
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  box-sizing: border-box;
  display: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.navbar-currency-panel.open {
  display: flex;
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  animation: currency-panel-in 0.18s ease forwards;
}

.navbar-currency-search {
  padding: 10px 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.navbar-currency-search input {
  width: 100%;
  box-sizing: border-box;
  height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 12px;
  font-family: var(--font-sans);
  outline: none;
}

.navbar-currency-search input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-currency-search input:focus {
  border-color: rgba(74, 222, 128, 0.35);
}

.navbar-currency-list {
  max-height: 220px;
  overflow-y: auto;
  padding: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

.navbar-currency-list::-webkit-scrollbar {
  width: 4px;
}

.navbar-currency-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.navbar-currency-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 8px;
  margin: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: background 100ms ease;
}

.navbar-currency-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.navbar-currency-row.is-selected {
  background: rgba(var(--color-accent-rgb), 0.1);
}

.currency-option-flag {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.navbar-currency-row-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}

.navbar-currency-row-code {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.navbar-currency-row-name {
  font-size: 10px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.25;
}

.navbar-currency-row-check {
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.currency-row-check-icon {
  display: block;
  flex-shrink: 0;
}

.navbar-currency-empty {
  padding: 16px 12px;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
}

.search-icon {
  position: absolute;
  left: 10px;
  color: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.navbar-search-wrap input {
  width: 100%;
  height: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: #ffffff;
  padding: 0 12px 0 32px;
  outline: none;
  transition: border-color 150ms ease, background 150ms ease;
  box-sizing: border-box;
}

.navbar-search-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.navbar-search-wrap input:focus {
  border-color: rgba(74, 222, 128, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

#searchInput:focus,
#currencySearch:focus,
.navbar-search-wrap input:focus,
.currency-search-wrap input:focus {
  outline: none !important;
  box-shadow: none !important;
}

input:focus,
button:focus,
select:focus,
textarea:focus,
a:focus {
  outline: none !important;
}

.search-panel {
  position: fixed;
  /* left, top, transform controlled by JS */
  width: 560px;
  max-height: 480px;
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  z-index: 999;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

/* Author `display: flex` wins over UA `[hidden]` otherwise — panel never visually hides. */
.search-panel[hidden] {
  display: none !important;
}

.search-panel-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.search-panel-input-wrap svg {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.search-panel-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
}

.search-panel-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.search-panel-body {
  overflow-y: auto;
  flex: 1;
  padding: 8px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

.search-panel-body::-webkit-scrollbar {
  width: 4px;
}

.search-panel-body::-webkit-scrollbar-track {
  background: transparent;
}

.search-panel-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

@keyframes search-section-label-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.search-section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted-2);
  padding: 8px 16px 4px;
  user-select: none;
}

.search-result-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 120ms ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.search-result-row:hover,
.search-result-row.active {
  background: rgba(255, 255, 255, 0.05);
}

.search-result-thumb {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-mono);
}

.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.search-result-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.35;
}

.search-result-name {
  font-size: 13px;
  font-weight: 500;
  color: #f4f4f5;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-result-meta .meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.search-result-meta .meta-status-working {
  color: #4ade80;
}

.search-result-meta .meta-status-down {
  color: #f87171;
}

.search-result-meta .meta-status-uaor {
  color: #fb923c;
}

.search-result-meta .meta-status-updating {
  color: #fbbf24;
}

.search-result-arrow {
  color: rgba(255, 255, 255, 0.15);
  font-size: 13px;
  flex-shrink: 0;
  transition: color 120ms ease, transform 120ms ease;
}

.search-result-row:hover .search-result-arrow {
  color: rgba(255, 255, 255, 0.5);
  transform: translateX(3px);
}

.search-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 6px 0;
}

.search-empty {
  padding: 32px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-family: var(--font-sans);
}

.search-empty span {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
  opacity: 0.4;
}

.search-panel-footer {
  padding: 8px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.search-footer-hint {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 400;
  color: var(--color-muted-2);
  font-family: var(--font-mono);
}

.search-footer-hint kbd {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 9px;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.3);
}

.search-recent-row {
  cursor: default;
}

.search-recent-row .recent-open {
  border: 0;
  background: transparent;
  color: #f4f4f5;
  font: inherit;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  padding: 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.search-recent-row .recent-remove {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  flex-shrink: 0;
}

.search-recent-row .recent-remove:hover {
  color: #ffffff;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: 0;
}

.nav-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 4px;
  flex-shrink: 0;
}

.nav-icon-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
  flex-shrink: 0;
}

.nav-icon-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

#cartBtn:hover {
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.nav-icon-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  display: block;
}

button.nav-icon-btn {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  font: inherit;
}

.cart-nav-tooltip {
  position: fixed;
  z-index: 10050;
  max-width: 220px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  font-family: var(--font-sans);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  opacity: 1;
  transition: opacity 400ms ease;
}

.cart-nav-tooltip.is-hiding {
  opacity: 0;
}

.discord-btn:hover {
  background: rgba(88, 101, 242, 0.12);
  border-color: rgba(88, 101, 242, 0.25);
  color: #9da8f0;
}

.cart-badge[hidden] {
  display: none !important;
}

.cart-badge {
  position: absolute;
  top: 3px;
  right: 3px;
  min-width: 16px;
  height: 15px;
  background: #22c55e;
  color: #ffffff;
  font-size: 8px;
  font-weight: 600;
  font-family: var(--font-mono);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1.5px solid rgba(14, 14, 14, 0.9);
  animation: badgePop 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgePop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.navbar-signin {
  height: 30px;
  padding: 0 14px;
  margin: 0 0 0 4px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
  white-space: nowrap;
}

.navbar-signin:hover {
  background: rgba(var(--color-accent-rgb), 0.14);
  border-color: rgba(var(--color-accent-rgb), 0.5);
  color: #ffffff;
  box-shadow:
    0 4px 18px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(var(--color-accent-rgb), 0.22);
}

.navbar-signin:active {
  background: rgba(var(--color-accent-rgb), 0.1);
  border-color: rgba(var(--color-accent-rgb), 0.4);
}

.navbar-signin:focus-visible {
  outline: none;
  border-color: rgba(var(--color-accent-rgb), 0.45);
  box-shadow: 0 0 0 2px rgba(var(--color-accent-rgb), 0.18);
}

.icon-btn {
  height: 36px;
  min-width: 36px;
  border: 1px solid var(--color-border-2);
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  transition: background var(--dur-fast) var(--ease-smooth), border-color var(--dur-fast) var(--ease-smooth),
    transform var(--dur-fast) var(--ease-smooth);
}

.icon-btn i {
  font-size: 14px;
  transition: transform var(--dur-fast) var(--ease-smooth), color var(--dur-fast) var(--ease-smooth);
}

.icon-btn:hover i {
  transform: scale(1.08);
  color: #ffffff;
}

@keyframes nav-slide-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  height: 36px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 500;
  color: #ffffff;
  font-family: var(--font-sans);
  transition: background var(--dur-fast) var(--ease-smooth), border-color var(--dur-fast) var(--ease-smooth),
    color var(--dur-fast) var(--ease-smooth), transform var(--dur-fast) var(--ease-smooth);
}

.btn-lg {
  height: 44px;
  width: 100%;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  font-weight: 500;
  font-size: 12px;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
  padding: 0 20px;
  height: 38px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
  overflow: hidden;
  transition: background 150ms ease, transform 100ms ease, box-shadow 150ms ease;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 150ms ease;
  pointer-events: none;
}

.btn-primary:hover {
  background: #f4f4f5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-primary .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  transform: scale(0);
  animation: ripple 400ms ease-out;
  pointer-events: none;
  z-index: 1;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn.btn-primary {
  height: 38px;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  font-weight: 500;
  font-size: 12px;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
  padding: 0 20px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 150ms ease, border-color 150ms ease, transform 100ms ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-outline .btn-discord-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  display: block;
}

.product-card .card-buy {
  flex: 1 1 0;
  min-width: 0;
  height: 36px;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-sans);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 200ms ease, transform 100ms ease, box-shadow 200ms ease, color 200ms ease;
  position: relative;
  overflow: hidden;
  justify-content: center;
  gap: 6px;
}

.product-card .card-buy::before {
  content: "\f07a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 11px;
  line-height: 1;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

.product-card .card-buy::after {
  display: none;
}

.product-card .card-buy:hover {
  background: color-mix(in srgb, var(--color-accent) 78%, #ffffff);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: none;
}

.product-card .card-buy:active {
  transform: translateY(0);
}

.product-card .card-buy .ripple {
  background: rgba(255, 255, 255, 0.22);
}

.product-card .card-add-to-cart {
  flex: 1 1 0;
  min-width: 0;
  height: 36px;
  box-sizing: border-box;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, opacity 150ms ease;
}

.product-card .card-add-to-cart:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.product-card .card-add-to-cart:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-card .card-add-to-cart--added {
  border-color: rgba(74, 222, 128, 0.35);
  color: #4ade80;
  background: rgba(74, 222, 128, 0.06);
}

.product-card .card-add {
  flex: 0 0 40px;
  width: 40px;
  min-width: 40px;
  height: 36px;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0;
  font-weight: 500;
  font-family: var(--font-sans);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 100ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card .card-add::before {
  content: "\f217";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
  -webkit-font-smoothing: antialiased;
}

.product-card .card-add:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-1px);
}

.product-card .card-add:hover::before {
  color: #ffffff;
}

.product-card .card-add.card-add--success {
  border-color: rgba(74, 222, 128, 0.45);
  background: rgba(74, 222, 128, 0.08);
}

.product-card .card-add.card-add--success::before {
  content: "\f00c";
  color: #4ade80;
}

.product-card .card-add.added {
  border-color: rgba(74, 222, 128, 0.3);
  color: #4ade80;
  background: rgba(74, 222, 128, 0.05);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: #3f3f46;
}

.btn-ghost:hover {
  background: #18181b;
  transform: translateY(-1px);
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

main {
  padding-top: 0;
}

.page-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 48px;
}

.page-main.product-page {
  max-width: none;
  margin: 0;
  padding: 80px 0 64px;
  box-sizing: border-box;
}

/* hero: wrap centered panel with navbar clearance */
.hero {
  min-height: 0;
  height: auto;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  box-sizing: border-box;
}

/* THE ONE UNIFIED BOX — accent glow follows pointer (--hero-glow-*) via main.js */
.hero-container {
  --hero-glow-x: 28%;
  --hero-glow-y: 42%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1160px;
  width: 100%;
  height: 560px;
  background: #0c0f14;
  border: 1px solid color-mix(in srgb, var(--color-accent) 22%, transparent);
  border-radius: 0;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  isolation: isolate;
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--color-accent) 5%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--color-accent) 6%, transparent),
    0 12px 32px -18px rgba(var(--color-accent-rgb), 0.08);
  transition: box-shadow 0.55s var(--ease-smooth), border-color 0.45s ease;
}

.hero-container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    ellipse 85% 70% at var(--hero-glow-x) var(--hero-glow-y),
    rgba(var(--color-accent-rgb), 0.09) 0%,
    rgba(var(--color-accent-rgb), 0.03) 38%,
    transparent 58%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 1;
  transition: opacity 0.35s ease;
}

.hero-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 48px rgba(var(--color-accent-rgb), 0.02);
  pointer-events: none;
  z-index: 0;
}

.hero-container:hover {
  border-color: color-mix(in srgb, var(--color-accent) 38%, transparent);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--color-accent) 10%, transparent),
    inset 0 1px 0 color-mix(in srgb, var(--color-accent) 9%, transparent),
    0 16px 44px -16px rgba(var(--color-accent-rgb), 0.12),
    0 0 64px -28px rgba(var(--color-accent-rgb), 0.06);
}

.hero-container:hover::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-container {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
}

/* CRITICAL — without this grid children ignore their cell boundary */
.hero-container > * {
  min-width: 0;
  min-height: 0;
}

/* LEFT HALF of the box */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px 44px;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  background: linear-gradient(
    155deg,
    color-mix(in srgb, var(--color-accent) 5%, #0c0f14) 0%,
    #0c0f14 45%,
    #0a0d12 100%
  );
  transition: background 0.5s var(--ease-smooth);
}

.hero-container:hover .hero-left {
  background: linear-gradient(
    155deg,
    color-mix(in srgb, var(--color-accent) 9%, #0e1118) 0%,
    #0c0f14 48%,
    #090c11 100%
  );
}

/* RIGHT HALF of the box — clips the scrolling cards */
.hero-right {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0d12 0%, #080b10 50%, #070910 100%);
  border-left: 1px solid color-mix(in srgb, var(--color-accent) 14%, transparent);
  height: 560px;
  max-height: 560px;
  min-width: 0;
  box-sizing: border-box;
  transition: border-color 0.45s ease;
}

.hero-container:hover .hero-right {
  border-left-color: color-mix(in srgb, var(--color-accent) 22%, transparent);
}

/* ── LEFT CONTENT ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.62);
  margin: 0 0 14px 0;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: rgba(var(--color-accent-rgb), 0.08);
  border: 1px solid color-mix(in srgb, var(--color-accent) 22%, transparent);
  width: fit-content;
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.hero-container:hover .hero-eyebrow {
  border-color: color-mix(in srgb, var(--color-accent) 38%, transparent);
  background: rgba(var(--color-accent-rgb), 0.12);
  box-shadow: 0 0 16px -6px rgba(var(--color-accent-rgb), 0.18);
}

.hero-eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 6px rgba(var(--color-accent-rgb), 0.45);
  flex-shrink: 0;
  animation: heroEyebrowPulse 2.4s ease-in-out infinite;
}

@keyframes heroEyebrowPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 6px rgba(var(--color-accent-rgb), 0.4);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.15);
    box-shadow: 0 0 10px rgba(var(--color-accent-rgb), 0.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow__dot {
    animation: none;
  }
}

.hero-heading {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #fafafa;
  margin: 0 0 14px 0;
}

.hero-heading-line {
  display: block;
  animation: heroHeadingLineIn 0.75s var(--ease-smooth) backwards;
}

.hero-heading-line:nth-child(1) {
  animation-delay: 0.06s;
}

.hero-heading-line:nth-child(2) {
  animation-delay: 0.14s;
}

.hero-heading-line:nth-child(3) {
  animation-delay: 0.22s;
}

@keyframes heroHeadingLineIn {
  from {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-heading-line {
    animation: none;
  }
}

.hero-key {
  font-weight: 600;
  font-style: normal;
  color: var(--color-accent);
  text-shadow: 0 0 22px rgba(var(--color-accent-rgb), 0.2);
  transition: text-shadow 0.35s ease, color 0.35s ease;
}

.hero-container:hover .hero-key {
  text-shadow: 0 0 28px rgba(var(--color-accent-rgb), 0.26);
}

.hero-brand {
  font-weight: 600;
  font-style: normal;
  background: linear-gradient(
    110deg,
    #ffffff 0%,
    #fce8fc 18%,
    var(--color-accent) 52%,
    color-mix(in srgb, var(--color-accent) 72%, #c084fc) 100%
  );
  background-size: 160% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroBrandShimmer 7s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(var(--color-accent-rgb), 0.14));
}

@keyframes heroBrandShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-brand {
    animation: none;
    background-position: 0% 50%;
  }
}

.hero-sub {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--color-muted);
  margin: 0 0 18px 0;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

/* Bullets stay in the “from” state until the loader is gone (see main.js site:loader-done → body.site-loader-done). */
.hero-bullets li {
  position: relative;
  font-size: 12px;
  font-weight: 400;
  color: var(--color-muted);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1.45;
  opacity: 0;
  transform: translateX(-14px);
}

/* Solid dot matches product-card .status-dot; pulse ring on li::after reuses dotPulse */

.hero-bullets li::before {
  content: "";
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(var(--color-accent-rgb), 0.12);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hero-bullets li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  margin-top: -7px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent);
  opacity: 0;
  pointer-events: none;
  box-sizing: border-box;
  animation: none;
}

body.site-loader-done .hero-bullets li {
  animation: heroBulletIn 0.6s var(--ease-smooth) forwards;
}

body.site-loader-done .hero-bullets li:nth-child(1) {
  animation-delay: 0.06s;
}

body.site-loader-done .hero-bullets li:nth-child(2) {
  animation-delay: 0.14s;
}

body.site-loader-done .hero-bullets li:nth-child(3) {
  animation-delay: 0.22s;
}

body.site-loader-done .hero-bullets li:nth-child(4) {
  animation-delay: 0.3s;
}

body.site-loader-done .hero-bullets li:nth-child(n + 5) {
  animation-delay: 0.38s;
}

@keyframes heroBulletIn {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Same expanding ring as .status-dot::after (product cards); stagger delays so rows aren’t in sync */
body.site-loader-done .hero-bullets li::after {
  animation: dotPulse 2.4s ease-out infinite;
}

body.site-loader-done .hero-bullets li:nth-child(1)::after {
  animation-delay: 0.55s;
}

body.site-loader-done .hero-bullets li:nth-child(2)::after {
  animation-delay: 0.75s;
}

body.site-loader-done .hero-bullets li:nth-child(3)::after {
  animation-delay: 0.95s;
}

body.site-loader-done .hero-bullets li:nth-child(4)::after {
  animation-delay: 1.15s;
}

body.site-loader-done .hero-bullets li:nth-child(n + 5)::after {
  animation-delay: 1.35s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bullets li {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .hero-bullets li::after {
    animation: none !important;
    opacity: 0;
  }
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 28px;
}

/* Join Discord in hero — same shape / type / flat treatment as .hero-browse-btn; Discord blurple */
.hero-ctas .btn-outline {
  height: 38px;
  padding: 0 20px;
  gap: 7px;
  border-radius: 8px;
  background: #5865f2;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: -0.01em;
  text-transform: none;
  border: 1px solid color-mix(in srgb, #5865f2 70%, #ffffff 12%);
  box-shadow: none;
  transform: none;
  transition:
    background 0.22s var(--ease-smooth),
    border-color 0.22s ease,
    color 0.22s ease;
}

.hero-ctas .btn-outline:hover {
  background: color-mix(in srgb, #5865f2 82%, #000000);
  color: #ffffff;
  border-color: color-mix(in srgb, #5865f2 55%, #ffffff 25%);
  transform: none;
  box-shadow: none;
}

.hero-ctas .btn-outline:active {
  transform: none;
  box-shadow: none;
  color: #ffffff;
}

.hero-ctas .btn-outline .btn-discord-icon {
  margin-top: 1px;
  opacity: 0.92;
}

/* Primary CTA in hero — accent fill; typography aligned with .btn-outline (Discord) */
.hero-ctas .hero-browse-btn.btn-primary {
  height: 38px;
  padding: 0 20px;
  gap: 7px;
  border-radius: 8px;
  background: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: -0.01em;
  text-transform: none;
  border: 1px solid color-mix(in srgb, var(--color-accent) 70%, #ffffff 12%);
  box-shadow: none;
  transform: none;
  transition:
    background 0.22s var(--ease-smooth),
    border-color 0.22s ease,
    color 0.22s ease;
}

/* Disable global .btn-primary shine overlay on this control */
.hero-ctas .hero-browse-btn.btn-primary::after {
  display: none;
}

.hero-ctas .hero-browse-btn.btn-primary:hover {
  background: color-mix(in srgb, var(--color-accent) 82%, #000);
  color: #ffffff;
  border-color: color-mix(in srgb, var(--color-accent) 55%, #ffffff 25%);
  transform: none;
  box-shadow: none;
}

.hero-ctas .hero-browse-btn.btn-primary:active {
  transform: none;
  color: #ffffff;
  box-shadow: none;
}

.hero-ctas .hero-browse-btn.btn-primary .ripple {
  background: rgba(255, 255, 255, 0.12);
}

.hero-ctas .hero-browse-btn .hero-browse-btn__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  display: block;
  margin-top: 1px;
  color: inherit;
  opacity: 0.92;
}

/* ── RIGHT SIDE: fade masks ── */
.showcase-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(to bottom, #080b10 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.showcase-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(to top, #080b10 0%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

/* ── HERO SHOWCASE: two scrolling image lanes ── */
.showcase-lanes {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 8px;
  height: 100%;
  max-height: 560px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  align-items: flex-start;
  min-height: 0;
}

.scroll-lane {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  height: 100%;
}

.lane-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  will-change: transform;
}

.lane-inner--1 {
  animation: heroScrollUp 28s linear infinite;
}

.lane-inner--2 {
  animation: heroScrollUp 22s linear infinite;
  margin-top: -60px;
}

.hero-right:hover .lane-inner {
  animation-play-state: paused;
}

@keyframes heroScrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

.hero-showcase-scroll__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
  cursor: pointer;
  transition: filter 150ms ease;
}

.hero-showcase-scroll__img:hover {
  filter: brightness(1.15);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero-container {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    padding: 40px 32px;
  }
}

@media (max-width: 480px) {
  .hero-left {
    padding: 32px 24px;
  }

  .hero-heading {
    font-size: 26px;
  }
}

.btn-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-row {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  position: relative;
  height: 34px;
  padding: 0 12px;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  background: #121214;
  color: #f4f4f5;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: default;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
  animation: trust-float 2.6s ease-in-out infinite;
}

.trust-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1a1a1f;
  border: 1px solid #2f2f35;
}

.trust-badge::after {
  content: attr(data-note);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  pointer-events: none;
  min-width: 190px;
  max-width: 240px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #31313a;
  background: #131317;
  color: #d4d4d8;
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  transition: opacity 140ms ease, transform 140ms ease;
}

.trust-badge:hover,
.trust-badge:focus-visible {
  border-color: var(--color-accent);
  background: #18181d;
  transform: translateY(-2px);
}

.trust-badge:hover::after,
.trust-badge:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.icon-svg {
  width: 14px;
  height: 14px;
  display: block;
  filter: invert(1) brightness(1.1);
}

.icon-dark {
  filter: invert(0) brightness(0);
}

.trust-badge-1 {
  animation-delay: 0ms;
}

.trust-badge-2 {
  animation-delay: 220ms;
}

.trust-badge-3 {
  animation-delay: 420ms;
}

@keyframes trust-float {
  0%,
  100% {
    transform: translateY(0);
    border-color: #2a2a2a;
  }
  50% {
    transform: translateY(-1px);
    border-color: #3a3a42;
  }
}

.products-section {
  max-width: 1240px;
  margin: 0 auto 48px;
  padding: 0 24px;
  overflow: visible;
}

.filter-bar-sticky {
  margin-left: -24px;
  margin-right: -24px;
  padding: 12px 24px;
  background: var(--color-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-games {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 0;
  flex: 1;
  min-width: 0;
}

.pill {
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 400;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 150ms ease;
  white-space: nowrap;
}

.pill:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.04);
  transform: none;
}

.pill.active {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  font-weight: 500;
}

.filter-pill,
.pill.game-filter {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.pill.game-filter.active {
  font-weight: 500;
}

.filter-selects {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 8px;
  width: 100%;
}

.custom-select {
  position: relative;
}

.filter-select,
.select-trigger,
#promoInput {
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0f0f0f;
  color: rgba(255, 255, 255, 0.6);
  padding: 0 28px 0 12px;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-sans);
  letter-spacing: -0.02em;
}

.select-trigger {
  width: 100%;
  cursor: pointer;
  text-align: left;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.3)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.select-trigger:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  background-color: #0f0f0f;
}

.select-trigger::after {
  content: "";
  display: none;
}

.custom-select.open .select-trigger,
.select-trigger:focus-visible {
  border-color: rgba(255, 255, 255, 0.25);
  background-color: #141414;
  color: rgba(255, 255, 255, 0.95);
}

.select-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--color-card);
  border: 1px solid var(--color-border-2);
  border-radius: 8px;
  padding: 6px;
  z-index: 40;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.select-option {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--color-text);
  border-radius: 6px;
  height: 32px;
  padding: 0 8px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.02em;
  transition: background var(--dur-fast) var(--ease-smooth), color var(--dur-fast) var(--ease-smooth),
    transform var(--dur-fast) var(--ease-smooth);
}

.select-option:hover,
.select-option:focus-visible {
  background: #18181b;
  outline: none;
}

.select-option.active {
  background: var(--color-accent);
  color: #ffffff;
}

.product-grid {
  margin-top: 24px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.product-card {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: visible;
  cursor: pointer;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease,
    opacity var(--dur-fast) var(--ease-smooth);
  position: relative;
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #080808;
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.card-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 42%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 200ms ease;
}

.product-card:hover .card-media img {
  transform: scale(1.028);
}

/* Status: dot + tooltip */
.status-dot-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: default;
  width: fit-content;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot-color);
  box-shadow: 0 0 0 2px var(--dot-bg);
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.status-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--dot-color);
  opacity: 0;
  animation: dotPulse 2.4s ease-out infinite;
}

[data-status="down"] .status-dot::after {
  animation: none;
  opacity: 0;
}

@keyframes dotPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  60% {
    transform: scale(2.2);
    opacity: 0;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.status-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(26, 26, 26, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e4e4e7;
  font-size: 11px;
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 150ms ease, transform 150ms ease;
  z-index: 9999;
  max-width: none;
}

.status-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.1);
}

.status-tooltip::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 1px;
  border: 5px solid transparent;
  border-top-color: #1a1a1a;
  z-index: 1;
}

.status-dot-wrap:hover .status-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-card .status-dot-wrap {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 30;
}

.product-meta .status-dot-wrap,
.product-header-row .status-dot-wrap {
  margin-left: 4px;
}

.game-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 3px 7px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-game {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 2;
}

.product-card .card-media .game-pill.card-game {
  background: rgba(10, 10, 12, 0.48);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-body h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #f4f4f5;
  letter-spacing: -0.028em;
  line-height: 1.35;
}

.card-body p {
  margin: 0;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 0;
}

/* Price figures: soft green + very subtle glow (currency + amount; not struck-through) */
[data-price-display="true"]:not(.original):not(.product-plan-row__was) {
  font-family: var(--font-price);
  color: #4ade80;
  text-shadow: 0 0 12px rgba(74, 222, 128, 0.14), 0 0 24px rgba(34, 197, 94, 0.08);
}

.card-price {
  margin: 0;
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.card-price > span:first-of-type {
  font-size: 10px;
  font-weight: 400;
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.36);
  letter-spacing: 0.02em;
}

.card-price [data-price-display="true"] {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.card-price .original {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.28);
  text-decoration: line-through;
  margin-left: 0;
  font-weight: 400;
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
}

.plan-price small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  margin-left: 5px;
  font-weight: 400;
}

.card-actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 4px;
}

.empty-state {
  color: var(--color-muted);
}

.product-card.leaving {
  opacity: 0;
  transform: translateY(4px);
}

.product-card.entering {
  animation: enter-card 180ms ease both;
}

@keyframes enter-card {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Why Choose Imperium (bento) ── */
.why-imperium {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.why-imperium__intro {
  text-align: center;
  transition: opacity 500ms ease, transform 500ms ease;
}

.why-imperium__title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -0.03em;
  color: #ffffff;
  text-align: center;
  margin: 0 0 8px;
}

.why-brand {
  color: #ffffff;
  transition: color 400ms ease;
}

.why-brand.accent-flash {
  color: var(--color-accent);
}

.why-imperium__subtitle {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.why-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 52px;
  max-width: 560px;
  width: 100%;
  padding: 28px 32px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  box-sizing: border-box;
}

.why-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
  transition-delay: var(--stat-delay, 0ms);
}

.why-stat-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-stat-number {
  font-family: var(--font-mono);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.why-stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.01em;
  line-height: 1;
}

.why-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  margin: 0 8px;
}

@media (max-width: 480px) {
  .why-stats-row {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .why-stat-divider {
    width: 40px;
    height: 1px;
    margin: 0;
  }
}

.why-imperium__bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
}

.why-card {
  --delay: 0ms;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  padding: 28px;
  box-sizing: border-box;
  transition:
    opacity 500ms ease var(--delay, 0ms),
    transform 500ms ease var(--delay, 0ms),
    border-color 200ms ease;
  transition-delay: var(--delay, 0ms);
}

.why-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-imperium__intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--color-accent-rgb), 0.2);
  transition: transform 200ms ease, border-color 200ms ease;
}

.why-card--featured {
  position: relative;
  grid-row: span 2;
  min-height: 420px;
  padding: 0;
}

.why-card-featured__img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.why-card-featured__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    #0f0f0f 0%,
    #0f0f0f 28%,
    rgba(15, 15, 15, 0.5) 55%,
    transparent 100%
  );
  pointer-events: none;
  transition: opacity 500ms ease, background 500ms ease;
}

.why-card--featured:hover .why-card-featured__img {
  transform: scale(1.04);
}

.why-card--featured:hover .why-card-featured__gradient {
  background: linear-gradient(
    to top,
    #0f0f0f 0%,
    #0f0f0f 32%,
    rgba(15, 15, 15, 0.72) 58%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.why-card-featured__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 3;
}

@keyframes shimmer {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.why-badge {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.12);
  border: 1px solid rgba(var(--color-accent-rgb), 0.22);
}

.why-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease infinite;
  animation-delay: 1s;
  pointer-events: none;
}

.why-card-featured__name {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 6px;
}

.why-card-featured__desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.why-card-featured__btn {
  align-self: flex-start;
}

.why-imperium__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  min-width: 0;
}

.why-card--trusted {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 180px;
}

.why-card-trusted__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb), 0.1);
  border: 1px solid rgba(var(--color-accent-rgb), 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--color-accent);
  transition: border-color 600ms ease;
}

.why-card-trusted__icon svg {
  transition: transform 600ms ease;
}

.why-card--trusted:hover .why-card-trusted__icon {
  border-color: rgba(var(--color-accent-rgb), 0.4);
}

.why-card--trusted:hover .why-card-trusted__icon svg {
  transform: rotate(8deg) scale(1.1);
}

.why-card-trusted__title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 8px;
}

.why-card-trusted__desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  max-width: 260px;
  margin: 0;
}

.why-stat {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 16px;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.why-card--delivery {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.why-card-delivery__title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 6px;
}

.why-card-delivery__desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  margin: 0;
}

.why-delivery-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 20px;
}

.why-delivery-flow__step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.45);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.why-delivery-flow__step svg {
  display: block;
}

.why-delivery-flow__step--active {
  border-color: rgba(var(--color-accent-rgb), 0.3);
  background: rgba(var(--color-accent-rgb), 0.08);
  color: var(--color-accent);
}

.why-delivery-flow__line {
  flex: 1;
  height: 1px;
  min-width: 8px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
}

.why-delivery-flow__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-accent-rgb), 0.3);
  width: 0;
  transition: width 300ms ease;
}

.why-card--delivery:hover .why-delivery-flow__line:nth-child(2)::after {
  width: 100%;
  transition-delay: 100ms;
}

.why-card--delivery:hover .why-delivery-flow__line:nth-child(4)::after {
  width: 100%;
  transition-delay: 250ms;
}

.why-delivery-flow__step.step-circle.active {
  background: rgba(var(--color-accent-rgb), 0.12);
  border-color: rgba(var(--color-accent-rgb), 0.35);
  color: var(--color-accent);
  transform: scale(1.15);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.why-card--payments {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.why-card-payments__title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 6px;
}

.why-card-payments__desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  margin: 0;
}

.why-pay-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.why-pay-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.why-pay-badge.payment-pill.pop {
  border-color: rgba(var(--color-accent-rgb), 0.3);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(var(--color-accent-rgb), 0.06);
  transform: translateY(-2px);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

@media (max-width: 860px) {
  .why-imperium__bento {
    grid-template-columns: 1fr;
  }

  .why-card--featured {
    grid-row: auto;
    min-height: 320px;
  }

  .why-imperium__right {
    grid-template-columns: 1fr;
  }

  .why-card--trusted {
    grid-column: 1;
  }

  .why-card--delivery,
  .why-card--payments {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .why-imperium {
    padding: 48px 16px;
  }

  .why-imperium__right {
    grid-template-columns: 1fr;
  }
}

/* ── Home: CTA banner (index) ── */
.home-cta-banner-wrap {
  box-sizing: border-box;
}

.home-cta-banner__outer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 80px;
  box-sizing: border-box;
}

.home-cta-banner {
  --cta-glow-x: 72%;
  --cta-glow-y: 28%;
  background: linear-gradient(145deg, #121212 0%, #0a0a0a 45%, #0f0f0f 100%);
  border: 1px solid rgba(var(--color-accent-rgb), 0.22);
  border-radius: 16px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 24px 48px rgba(0, 0, 0, 0.35);
  transition: border-color 320ms ease, box-shadow 320ms ease;
}

.home-cta-banner.is-visible {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .home-cta-banner.is-visible:hover {
    border-color: rgba(var(--color-accent-rgb), 0.38);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.05) inset,
      0 28px 56px rgba(0, 0, 0, 0.45),
      0 0 80px -20px rgba(var(--color-accent-rgb), 0.25);
  }
}

.home-cta-banner__bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 0%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.home-cta-banner__glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle 42% at var(--cta-glow-x) var(--cta-glow-y),
    rgba(var(--color-accent-rgb), 0.14) 0%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  transition: opacity 400ms ease;
}

.home-cta-banner__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    180deg,
    var(--color-accent) 0%,
    color-mix(in srgb, var(--color-accent) 65%, #ffffff) 45%,
    var(--color-accent) 100%
  );
  opacity: 0.65;
  border-radius: 16px 0 0 16px;
  pointer-events: none;
  z-index: 1;
  box-shadow:
    0 0 20px rgba(var(--color-accent-rgb), 0.35),
    0 0 40px rgba(var(--color-accent-rgb), 0.12);
}

.home-cta-banner__left,
.home-cta-banner__right {
  position: relative;
  z-index: 3;
}

.home-cta-banner__left {
  flex: 1;
  min-width: 0;
}

@keyframes homeCtaStagger {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .home-cta-banner.is-visible .home-cta-banner__title {
    animation: homeCtaStagger 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.1s;
  }

  .home-cta-banner.is-visible .home-cta-banner__subtitle {
    animation: homeCtaStagger 0.58s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.2s;
  }

  .home-cta-banner.is-visible .home-cta-banner__trust-li:nth-child(1) .home-cta-banner__trust-badge {
    animation: homeCtaStagger 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.3s;
  }

  .home-cta-banner.is-visible .home-cta-banner__trust-li:nth-child(2) .home-cta-banner__trust-badge {
    animation: homeCtaStagger 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.38s;
  }

  .home-cta-banner.is-visible .home-cta-banner__trust-li:nth-child(3) .home-cta-banner__trust-badge {
    animation: homeCtaStagger 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.46s;
  }

  .home-cta-banner.is-visible .home-cta-banner__btn--primary {
    animation: homeCtaStagger 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.36s;
  }

  .home-cta-banner.is-visible .home-cta-banner__btn--discord {
    animation: homeCtaStagger 0.52s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.46s;
  }
}

.home-cta-banner__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.2;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}

.home-cta-banner__subtitle {
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 0 20px;
}

.home-cta-banner__trust {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-cta-banner__trust-li {
  margin: 0;
  padding: 0;
}

.home-cta-banner__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-cta-banner__trust-badge-label {
  white-space: nowrap;
}

.home-cta-banner__trust-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(var(--color-accent-rgb), 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(var(--color-accent-rgb), 0.12),
    0 4px 16px rgba(0, 0, 0, 0.25);
}

.home-cta-banner__trust-badge:active {
  transform: scale(0.98);
}

.home-cta-banner__trust-badge:focus {
  outline: none;
}

.home-cta-banner__trust-badge:focus-visible {
  outline: 2px solid rgba(var(--color-accent-rgb), 0.85);
  outline-offset: 3px;
}

.home-cta-banner__check {
  flex-shrink: 0;
  color: var(--color-accent);
  transition:
    transform 200ms cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-cta-banner__trust-badge:hover .home-cta-banner__check {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 0.4));
  }
}

.home-cta-banner__right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}

.home-cta-banner__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 42px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  transition:
    filter 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.home-cta-banner__btn--primary {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-accent) 28%, #121218) 0%,
    color-mix(in srgb, var(--color-accent) 14%, #0a0a0f) 100%
  );
  color: #ffffff;
  font-weight: 400;
  border: 1px solid rgba(var(--color-accent-rgb), 0.5);
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
}

.home-cta-banner__btn--primary:hover {
  filter: brightness(1.08);
  border-color: rgba(var(--color-accent-rgb), 0.72);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.home-cta-banner__arrow {
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-cta-banner__btn--primary:hover .home-cta-banner__arrow {
  transform: translateX(4px);
}

.home-cta-banner__btn--discord {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 400;
  font-family: inherit;
  cursor: pointer;
}

.home-cta-banner__btn--discord:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.home-cta-banner__discord {
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.home-cta-banner__btn--discord:hover .home-cta-banner__discord {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .home-cta-banner {
    flex-direction: column;
    padding: 32px 24px;
    text-align: center;
  }

  .home-cta-banner__left {
    text-align: center;
  }

  .home-cta-banner__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .home-cta-banner__trust {
    justify-content: center;
  }

  .home-cta-banner__right {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .home-cta-banner {
    padding: 24px 20px;
  }

  .home-cta-banner__title {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-cta-banner {
    transition: none !important;
  }

  .home-cta-banner.is-visible:hover {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.03) inset,
      0 24px 48px rgba(0, 0, 0, 0.35);
  }

  .home-cta-banner__glow {
    transition: none;
  }

  .home-cta-banner.is-visible .home-cta-banner__title,
  .home-cta-banner.is-visible .home-cta-banner__subtitle,
  .home-cta-banner.is-visible .home-cta-banner__trust-li .home-cta-banner__trust-badge,
  .home-cta-banner.is-visible .home-cta-banner__btn--primary,
  .home-cta-banner.is-visible .home-cta-banner__btn--discord {
    animation: none;
  }

  .home-cta-banner__btn--primary:hover .home-cta-banner__arrow,
  .home-cta-banner__btn--discord:hover .home-cta-banner__discord {
    transform: none;
  }

  .home-cta-banner__trust-badge:hover .home-cta-banner__check {
    transform: none;
    filter: none;
  }

  .home-cta-banner__trust-badge:active {
    transform: none;
  }
}

/* ── Home: Discord community banner (index) ── */
.home-discord-community-wrap {
  box-sizing: border-box;
}

.home-discord-community__outer {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 32px;
  box-sizing: border-box;
}

.home-discord-community {
  background: #111214;
  border: 1px solid rgba(88, 101, 242, 0.2);
  border-radius: 16px;
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 400ms ease, transform 400ms ease;
}

.home-discord-community.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.home-discord-community__watermark {
  position: absolute;
  right: -28px;
  top: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  color: #5865f2;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  transform: rotate(12deg);
}

.home-discord-community__watermark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.home-discord-community__left {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.home-discord-community__top-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.home-discord-community__brand-icon {
  flex-shrink: 0;
  color: #8b9cf4;
  display: block;
}

.home-discord-community__pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.3);
  color: #8b9cf4;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-sizing: border-box;
}

.home-discord-community__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.2;
}

.home-discord-community__subtitle {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  max-width: 420px;
  margin: 0;
}

.home-discord-community__stats {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 24px;
  margin-top: 16px;
}

.home-discord-community__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.home-discord-community__stat-value {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.home-discord-community__stat-value--live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  color: #4ade80;
}

.home-discord-community__pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: dotPulse 2.4s ease-out infinite;
}

.home-discord-community__stat-label {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
}

.home-discord-community__right {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.home-discord-community__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 28px;
  border-radius: 10px;
  background: #5865f2;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  text-decoration: none;
  box-sizing: border-box;
  border: none;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease;
}

.home-discord-community__btn:hover {
  background: #4752c4;
  transform: translateY(-1px);
}

.home-discord-community__btn-icon {
  flex-shrink: 0;
  display: block;
}

.home-discord-community__invite {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .home-discord-community {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 24px;
  }

  .home-discord-community__left {
    text-align: left;
  }

  .home-discord-community__right {
    width: 100%;
    align-items: stretch;
  }

  .home-discord-community__btn {
    width: 100%;
  }

  .home-discord-community__stats {
    flex-wrap: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-discord-community {
    opacity: 1;
    transform: none;
    transition: none !important;
  }

  .home-discord-community__btn:hover {
    transform: none;
  }

  .home-discord-community__pulse-dot {
    animation: none;
  }
}

/* ── Home: How It Works (index) ── */
.home-how-it-works {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.home-how-it-works__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.home-how-it-works__head {
  text-align: center;
  margin-bottom: 0;
}

.home-how-it-works__title {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 12px;
}

.home-how-it-works__subtitle {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  max-width: 460px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

.home-how-it-works__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.home-how-it-works__card {
  flex: 1;
  max-width: 280px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  box-sizing: border-box;
  transition:
    border-color 200ms ease,
    transform 200ms ease;
}

.home-how-it-works__card:hover {
  border-color: rgba(255, 255, 255, 0.13);
  transform: translateY(-4px);
}

.home-how-it-works__icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(var(--color-accent-rgb), 0.08);
  border: 1px solid rgba(var(--color-accent-rgb), 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition:
    background 200ms ease,
    border-color 200ms ease;
}

.home-how-it-works__card:hover .home-how-it-works__icon-wrap {
  background: rgba(var(--color-accent-rgb), 0.14);
  border-color: rgba(var(--color-accent-rgb), 0.35);
}

.home-how-it-works__badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #0f0f0f;
  border: 1px solid rgba(var(--color-accent-rgb), 0.3);
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.home-how-it-works__icon {
  display: block;
  color: var(--color-accent);
  flex-shrink: 0;
}

.home-how-it-works__card-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.home-how-it-works__card-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 220px;
  margin: 0;
}

.home-how-it-works__arrow {
  flex-shrink: 0;
  margin: 0 16px;
  align-self: center;
  padding-bottom: 40px;
  color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-how-it-works__arrow svg {
  display: block;
}

.home-how-it-works .js-hiw-intro.is-visible,
.home-how-it-works .js-hiw-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .home-how-it-works__track {
    flex-direction: column;
    max-width: 100%;
    gap: 20px;
  }

  .home-how-it-works__arrow {
    display: none;
  }

  .home-how-it-works__card {
    max-width: 100%;
    width: 100%;
  }
}

/* ── Home: Affiliates + FAQ (index) ── */
.home-affiliates,
.home-faq {
  padding: 80px 32px;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.home-affiliates {
  position: relative;
  isolation: isolate;
}

/* Soft ambient glow behind affiliate bento (does not affect FAQ) */
.home-affiliates::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(960px, calc(100% - 48px));
  height: min(420px, 55vh);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse 72% 58% at 50% 48%,
    rgba(var(--color-accent-rgb), 0.09) 0%,
    rgba(var(--color-accent-rgb), 0.03) 42%,
    transparent 68%
  );
  opacity: 0.85;
}

.home-affiliates__intro,
.home-affiliates__bento {
  position: relative;
  z-index: 1;
}

.home-faq {
  max-width: none;
  padding-bottom: 100px;
}

.home-section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
  text-align: center;
  margin: 0 0 10px;
}

.home-section-title {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -0.03em;
  color: #ffffff;
  text-align: center;
  margin: 0 0 8px;
}

.home-section-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.home-affiliates__intro {
  transition: opacity 500ms ease;
}

.home-faq__intro {
  transition: opacity 500ms ease, transform 500ms ease;
}

.home-affiliates__bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.home-affiliates__col-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.home-affiliates__card {
  position: relative;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-sizing: border-box;
  cursor: default;
  transition:
    opacity 500ms ease,
    border-color 220ms ease,
    box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 10px 36px rgba(0, 0, 0, 0.38),
    0 0 52px -22px rgba(var(--color-accent-rgb), 0.14);
}

.home-affiliates__card:hover {
  border-color: rgba(var(--color-accent-rgb), 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 18px 50px rgba(0, 0, 0, 0.48),
    0 0 64px -18px rgba(var(--color-accent-rgb), 0.22),
    0 0 0 1px rgba(var(--color-accent-rgb), 0.12);
}

.home-affiliates__card--steps {
  padding: 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-affiliates__card-title {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  transition: color 200ms ease, letter-spacing 240ms ease;
}

.home-affiliates__card--steps:hover .home-affiliates__card-title {
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.96);
}

.home-aff-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.home-aff-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 6px 0 0;
  padding: 12px 12px 12px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  box-sizing: border-box;
  transition: background 200ms ease, border-color 200ms ease;
}

.home-aff-step:first-child {
  margin-top: 0;
}

.home-aff-step + .home-aff-step {
  margin-top: 4px;
}

.home-aff-step:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.home-aff-step__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 32px;
}

.home-aff-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.1);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  box-sizing: border-box;
  flex-shrink: 0;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.home-aff-step:hover .home-aff-step__num {
  border-color: rgba(var(--color-accent-rgb), 0.48);
  background: rgba(var(--color-accent-rgb), 0.2);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.08);
}

.home-aff-step__line {
  width: 1px;
  flex: 1;
  min-height: 16px;
  margin: 4px 0 0;
  align-self: center;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  transition: background 220ms ease;
}

.home-aff-step:hover .home-aff-step__line {
  background: rgba(255, 255, 255, 0.16);
}

.home-aff-step--last .home-aff-step__rail {
  align-items: flex-start;
}

.home-aff-step__body {
  flex: 1;
  min-width: 0;
  padding-bottom: 14px;
}

.home-aff-step--last .home-aff-step__body {
  padding-bottom: 0;
}

.home-aff-step__title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 4px;
  transition: color 200ms ease;
}

.home-aff-step:hover .home-aff-step__title {
  color: #fafafa;
}

.home-aff-step__desc {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.55;
  transition: color 200ms ease;
}

.home-aff-step:hover .home-aff-step__desc {
  color: rgba(255, 255, 255, 0.55);
}

.home-affiliates__cta {
  margin-top: 24px;
  width: fit-content;
  align-self: flex-start;
  text-decoration: none;
}

.home-affiliates__cta.home-cta-banner__btn--primary:hover .home-cta-banner__arrow {
  transform: none;
}

.home-affiliates__intro .home-section-label {
  transition: color 240ms ease, letter-spacing 320ms ease;
}

.home-affiliates__intro:hover .home-section-label {
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.17em;
}

.home-affiliates__intro .home-section-title {
  text-shadow: 0 0 36px rgba(var(--color-accent-rgb), 0.1);
  transition: color 280ms ease, text-shadow 400ms ease;
}

.home-affiliates__intro:hover .home-section-title {
  text-shadow:
    0 0 36px rgba(var(--color-accent-rgb), 0.1),
    0 0 56px rgba(var(--color-accent-rgb), 0.18);
}

.home-affiliates__intro .home-section-subtitle {
  transition: color 240ms ease;
}

.home-affiliates__intro:hover .home-section-subtitle {
  color: rgba(255, 255, 255, 0.52);
}

.home-affiliates__card--commission {
  padding: 24px;
  flex: 1;
}

.home-aff-commission__stat {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
  display: inline-block;
  filter: drop-shadow(0 0 18px rgba(var(--color-accent-rgb), 0.2));
  transition: filter 260ms ease;
}

.home-affiliates__card--commission:hover .home-aff-commission__stat {
  filter: drop-shadow(0 0 28px rgba(var(--color-accent-rgb), 0.45));
}

.home-aff-commission__label {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin: 4px 0 0;
  transition: color 200ms ease;
}

.home-affiliates__card--commission:hover .home-aff-commission__label {
  color: rgba(255, 255, 255, 0.5);
}

.home-aff-commission__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 16px 0;
  transition: background 260ms ease, opacity 260ms ease;
}

.home-affiliates__card--commission:hover .home-aff-commission__divider {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--color-accent-rgb), 0.35),
    transparent
  );
  opacity: 1;
}

.home-aff-pills {
  display: flex;
  gap: 10px;
}

.home-aff-pill {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px 16px;
  box-sizing: border-box;
  cursor: default;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.home-aff-pill:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(var(--color-accent-rgb), 0.32);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.28),
    0 0 24px -8px rgba(var(--color-accent-rgb), 0.15);
}

.home-aff-pill__value {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
  transition: color 200ms ease;
}

.home-aff-pill:hover .home-aff-pill__value {
  color: var(--color-accent);
}

.home-aff-pill__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.home-affiliates__card--payout {
  padding: 24px;
  flex: 1;
}

.home-aff-payout__title {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  transition: color 220ms ease;
}

.home-affiliates__card--payout:hover .home-aff-payout__title {
  color: rgba(255, 255, 255, 0.92);
}

.home-aff-payout-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-aff-payout-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  box-sizing: border-box;
  transition: background 180ms ease, border-color 180ms ease;
}

.home-aff-payout-row:hover {
  background: rgba(255, 255, 255, 0.045);
}

.home-aff-payout-row--last {
  border-bottom: none;
}

.home-aff-payout-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(var(--color-accent-rgb), 0.08);
  border: 1px solid rgba(var(--color-accent-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.home-aff-payout-row:hover .home-aff-payout-icon {
  border-color: rgba(var(--color-accent-rgb), 0.38);
  background: rgba(var(--color-accent-rgb), 0.16);
  box-shadow: 0 4px 14px rgba(var(--color-accent-rgb), 0.12);
}

.home-aff-payout-main {
  flex: 1;
  min-width: 0;
}

.home-aff-payout-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  transition: color 180ms ease;
}

.home-aff-payout-row:hover .home-aff-payout-name {
  color: #fafafa;
}

.home-aff-payout-note {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
  transition: color 180ms ease;
}

.home-aff-payout-row:hover .home-aff-payout-note {
  color: rgba(255, 255, 255, 0.48);
}

.home-aff-fee-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
  transition: box-shadow 200ms ease;
}

.home-aff-payout-row:hover .home-aff-fee-badge {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.home-aff-fee-badge--fee {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

.home-aff-fee-badge--free {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.18);
  color: #4ade80;
}

.home-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-faq__item {
  --faq-border-idle: rgba(255, 255, 255, 0.07);
  --faq-border-active: rgba(var(--color-accent-rgb), 0.34);
  --faq-border-active-hover: rgba(var(--color-accent-rgb), 0.48);
  transition: opacity 500ms ease, transform 500ms ease;
}

.home-faq__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  margin: 0;
  border: 1px solid var(--faq-border-idle);
  border-radius: 10px;
  background: #0f0f0f;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  box-sizing: border-box;
  transition:
    border-color 0.2s ease,
    border-radius 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.home-faq__header:hover {
  border-color: var(--faq-border-active);
}

.home-faq__header:focus {
  outline: none;
}

.home-faq__header:focus-visible {
  border-color: var(--faq-border-active);
  outline: 2px solid rgba(var(--color-accent-rgb), 0.45);
  outline-offset: 2px;
}

.home-faq__question {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.home-faq__chevron {
  flex-shrink: 0;
  display: flex;
  color: rgba(255, 255, 255, 0.4);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.home-faq__item.is-open .home-faq__chevron {
  transform: rotate(180deg);
}

.home-faq__item.is-open .home-faq__header {
  border-radius: 10px 10px 0 0;
  border-color: var(--faq-border-active);
  border-bottom-color: transparent;
}

.home-faq__item.is-open .home-faq__header:hover {
  border-color: var(--faq-border-active-hover);
  border-bottom-color: transparent;
}

.home-faq__item.is-open:has(.home-faq__header:hover) .home-faq__panel {
  border-color: var(--faq-border-active-hover);
}

/* Grid 0fr → 1fr: height follows content without max-height clipping or uneven easing */
.home-faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  margin: 0;
  overflow: hidden;
  border-width: 0 1px 1px;
  border-style: solid;
  border-color: transparent;
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: rgba(255, 255, 255, 0.02);
  box-sizing: border-box;
  transition:
    grid-template-rows 0.4s cubic-bezier(0.32, 0.72, 0, 1),
    border-color 0.35s ease;
}

.home-faq__item.is-open .home-faq__panel {
  grid-template-rows: 1fr;
  border-color: var(--faq-border-active);
}

.home-faq__panel-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: padding 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.home-faq__item.is-open .home-faq__panel-inner {
  padding: 14px 20px 16px;
}

.home-faq__answer {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .home-affiliates::before {
    opacity: 0.45;
  }

  .home-aff-commission__stat {
    filter: none;
  }

  .home-aff-step:hover .home-aff-step__num {
    transform: none;
  }

  .home-aff-pill:hover {
    transform: none;
  }

  .home-affiliates__card--commission:hover .home-aff-commission__stat {
    transform: none;
    filter: none;
  }

  .home-aff-payout-row:hover .home-aff-payout-icon,
  .home-aff-payout-row:hover .home-aff-payout-icon svg,
  .home-aff-payout-row:hover .home-aff-fee-badge {
    transform: none;
  }

  .home-affiliates__intro:hover .home-section-subtitle {
    transform: none;
  }
}

@media (max-width: 860px) {
  .home-affiliates__bento {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-faq__panel,
  .home-faq__panel-inner,
  .home-faq__chevron,
  .home-faq__header {
    transition: none;
  }
}

@media (max-width: 480px) {
  .home-affiliates,
  .home-faq {
    padding: 48px 16px;
  }

  .home-faq {
    padding-bottom: 64px;
  }

  .home-aff-pills {
    flex-direction: column;
  }
}

.breadcrumb {
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 400;
}

/* ── Product page (product.html) ── */
.product-page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  box-sizing: border-box;
}

.product-crumb {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 32px;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.product-crumb a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 150ms ease;
}

.product-crumb a:hover {
  color: rgba(255, 255, 255, 0.5);
}

.product-crumb__sep {
  color: rgba(255, 255, 255, 0.18);
  user-select: none;
}

.product-crumb__current {
  color: rgba(255, 255, 255, 0.35);
}

.product-page-top {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
}

.product-gallery-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.product-main-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d0d0d;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  cursor: zoom-in;
}

.product-main-img {
  display: block;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: opacity 150ms ease, transform 400ms ease;
}

.product-main-frame:hover .product-main-img {
  transform: scale(1.03);
}

.product-main-frame.is-img-error .product-main-img {
  display: none;
}

.product-main-placeholder {
  display: none;
  flex: 1 1 auto;
  min-height: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.product-main-frame.is-img-error .product-main-placeholder {
  display: flex;
}

.product-thumb-row {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.product-thumb-row--hidden {
  display: none;
}

.product-tos-reminder {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  margin-top: 12px;
  padding: 14px 16px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.product-tos-reminder__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(var(--color-accent-rgb), 0.14);
  color: var(--color-accent);
}

.product-tos-reminder__icon svg {
  display: block;
}

.product-tos-reminder__body {
  flex: 1;
  min-width: 0;
}

.product-tos-reminder__lead {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #fafafa;
}

.product-tos-reminder__sub {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.4);
}

.product-tos-reminder__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 6px;
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 400;
}

.product-tos-reminder__links a {
  color: var(--color-accent);
  text-decoration: none;
}

.product-tos-reminder__links a:hover {
  text-decoration: underline;
}

.product-tos-reminder__sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.product-thumb-btn {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  opacity: 0.55;
  transition: opacity 150ms ease, border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.product-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumb-btn:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.product-thumb-btn:hover:not(.active) {
  box-shadow: 0 0 0 1px rgba(var(--color-accent-rgb), 0.25);
}

.product-thumb-btn.active {
  opacity: 1;
  border-color: var(--color-accent);
}

.product-info-col {
  min-width: 0;
}

.product-header-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.product-featured-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.12);
  border: 1px solid rgba(var(--color-accent-rgb), 0.25);
  box-sizing: border-box;
}

.product-page-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 12px 0 8px;
  line-height: 1.15;
}

.product-page-lead {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin: 0 0 20px;
}

.product-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.product-stat-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease;
}

.product-stat-pill:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.product-stat-pill__label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-stat-pill__value {
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
}

.product-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 20px 0;
}

.product-plan-heading {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 12px;
}

.product-plan-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-plan-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  cursor: pointer;
  margin-bottom: 10px;
  text-align: left;
  color: inherit;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
  box-sizing: border-box;
}

.product-plan-row:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
}

.product-plan-row--unavailable {
  pointer-events: none;
  cursor: default;
  opacity: 0.52;
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.product-plan-row--unavailable:hover {
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.product-plan-row--unavailable .product-plan-row__label {
  color: rgba(255, 255, 255, 0.48);
}

.product-plan-row--unavailable .product-plan-row__sub {
  color: rgba(255, 255, 255, 0.28);
}

.product-plan-row--unavailable .product-plan-row__price[data-price-display="true"],
.product-plan-row--unavailable .product-plan-row__was[data-price-display="true"] {
  color: rgba(255, 255, 255, 0.55);
  text-shadow: none;
}

.product-plan-row--selected {
  border-color: rgba(var(--color-accent-rgb), 0.4);
  background: rgba(var(--color-accent-rgb), 0.06);
}

.product-plan-row__left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
}

.product-plan-row__label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.product-plan-row__sub {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}

.product-plan-row__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-family: var(--font-mono);
}

.product-plan-row__was {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}

.product-plan-row__price {
  font-size: 16px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.product-purchase-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.product-btn-buy {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: none;
  background: var(--color-accent);
  color: #ffffff;
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-sans);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: none;
  transform: none;
  transition: background 150ms ease, filter 150ms ease, opacity 80ms ease;
}

.product-btn-buy:hover:not(:disabled) {
  transform: none;
  box-shadow: none;
  filter: brightness(0.88);
}

@supports (background: color-mix(in srgb, red 50%, blue 50%)) {
  .product-btn-buy:hover:not(:disabled) {
    filter: none;
    background: color-mix(in srgb, var(--color-accent) 85%, black 15%);
  }
}

@supports not (background: color-mix(in srgb, red 50%, blue 50%)) {
  .product-btn-buy:hover:not(:disabled) {
    filter: none;
    background: #3b8fe8;
  }
}

.product-btn-buy:active:not(:disabled) {
  transform: none;
  box-shadow: none;
  filter: brightness(0.78);
}

.product-btn-cart {
  width: 100%;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  font-family: var(--font-sans);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 150ms ease, border-color 200ms ease, color 200ms ease, opacity 200ms ease;
}

.product-btn-cart:hover {
  background: rgba(255, 255, 255, 0.05);
}

.product-btn-add-cart {
  width: 100%;
  height: 36px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease, opacity 150ms ease;
}

.product-btn-add-cart:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.product-btn-add-cart:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-btn-add-cart--added {
  border-color: rgba(74, 222, 128, 0.35);
  color: #4ade80;
  background: rgba(74, 222, 128, 0.06);
}

.product-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.product-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease, transform 150ms ease;
}

.product-trust-badge:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.product-trust-badge__icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
  transition: color 150ms ease, transform 150ms ease;
}

.product-trust-badge:hover .product-trust-badge__icon {
  color: rgba(255, 255, 255, 0.7);
  transform: scale(1.1);
}

.product-discord-verify-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(88, 101, 242, 0.2);
  background: rgba(88, 101, 242, 0.07);
}

.product-discord-verify-notice__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: #8b9cf4;
}

.product-discord-verify-notice__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.product-discord-verify-notice__body {
  flex: 1;
  min-width: 0;
}

.product-discord-verify-notice__title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.product-discord-verify-notice__note-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(88, 101, 242, 0.25);
  background: rgba(88, 101, 242, 0.12);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8b9cf4;
}

.product-discord-verify-notice__text {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

.product-tabs-section {
  margin-top: 48px;
}

.product-tab-bar {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 24px;
}

.product-tab-btn {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.4);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 150ms ease, border-color 150ms ease;
}

.product-tab-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

.product-tab-btn--active {
  color: #ffffff;
  border-bottom-color: var(--color-accent);
}

.product-tab-panel {
  min-height: 80px;
}

.product-desc-body p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin: 0 0 14px;
}

.product-desc-body p:last-child {
  margin-bottom: 0;
}

.product-desc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 24px 0;
}

.product-desc-section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.product-tab-empty {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.product-req-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.product-req-card {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 200ms ease;
}

.product-req-card:hover {
  border-color: rgba(255, 255, 255, 0.13);
}

.product-req-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}

.product-req-card__label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0;
}

.product-req-card__value {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.product-features-card {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 24px 28px;
}

.product-features-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-features-card__title {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.product-features-card__count {
  background: rgba(var(--color-accent-rgb), 0.1);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 400;
}

.product-features-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.product-features-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.product-features-list__item:last-child {
  border-bottom: none;
}

.product-features-list__bullet {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(var(--color-accent-rgb), 0.1);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-accent);
}

.product-features-list__text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.product-changelog__row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-changelog__row:last-child {
  border-bottom: none;
}

.product-changelog__date {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  min-width: 90px;
  flex-shrink: 0;
}

.product-changelog__row--latest .product-changelog__date {
  color: var(--color-accent);
}

.product-changelog__rule {
  width: 1px;
  background: rgba(255, 255, 255, 0.07);
  flex-shrink: 0;
  align-self: stretch;
  min-height: 1.5em;
}

.product-changelog__note {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  flex: 1;
}

.product-changelog__row--latest .product-changelog__note {
  color: #ffffff;
}

.product-related {
  margin-top: 56px;
}

.product-related__title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 20px;
}

.product-related-grid {
  margin-bottom: 0;
}

.product-page-faq {
  max-width: 760px;
  margin: 56px auto 0;
  padding: 0 32px;
  box-sizing: border-box;
}

.product-page-faq .home-faq__list {
  max-width: none;
  margin: 0;
}

.product-page-faq__heading {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 16px;
}

/* ── Product page animations & micro-interactions (product.html only) ── */
.product-page-shell .anim-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.product-btn-buy .product-btn-buy-ripple,
.product-btn-buy .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  transform: scale(0);
  animation: ripple 400ms ease-out;
  pointer-events: none;
  z-index: 1;
}

.product-btn-spinner {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  animation: productSpinnerRotate 600ms linear infinite;
}

@keyframes productSpinnerRotate {
  to {
    transform: rotate(360deg);
  }
}

.product-btn-cart .product-cart-check {
  transform: scale(0);
}

.product-btn-cart--success {
  border-color: rgba(74, 222, 128, 0.35) !important;
  color: #4ade80 !important;
  background: rgba(74, 222, 128, 0.06) !important;
}

.product-btn-cart--success .product-cart-check {
  transform: scale(1);
  transition: transform 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-tab-panel-inner {
  min-height: 40px;
  transition: opacity 150ms ease, transform 150ms ease;
}

.product-tab-panel-inner.tab-hidden {
  display: none;
}

.product-req-card.js-req-obs {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 350ms ease, transform 350ms ease;
}

.product-req-card.js-req-obs.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-features-list__item.js-feat-obs {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.product-features-list__item.js-feat-obs.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.product-features-list__item.js-feat-obs .product-features-list__bullet {
  transform: scale(0);
}

.product-features-list__item.js-feat-obs.is-visible .product-features-list__bullet {
  animation: productFeatBulletPop 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 100ms forwards;
}

@keyframes productFeatBulletPop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.product-card.js-related-obs {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.product-card.js-related-obs.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-badge.cart-badge--bump {
  animation: cartBadgeBump 250ms ease;
}

@keyframes cartBadgeBump {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 56px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 200ms ease;
}

.product-lightbox--visible {
  opacity: 1;
}

.product-lightbox__inner {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.94);
  opacity: 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

.product-lightbox__img--visible {
  transform: scale(1);
  opacity: 1;
}

.product-lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background 150ms ease;
}

.product-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.product-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background 150ms ease, color 150ms ease;
}

.product-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.product-lightbox__nav--prev {
  left: 24px;
}

.product-lightbox__nav--next {
  right: 24px;
}

/* Legacy hooks (product-meta used by status tooltip CSS) */
.product-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

hr {
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: 16px 0;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
}

.cart-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-card);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cart-item h3 {
  margin: 0;
}

.cart-item p {
  margin: 4px 0 0;
  color: var(--color-muted);
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn,
.link-remove {
  border: 1px solid var(--color-border-2);
  border-radius: 6px;
  background: transparent;
  color: var(--color-text);
  height: 30px;
  padding: 0 10px;
  cursor: pointer;
}

.link-remove:hover,
.qty-btn:hover,
.icon-btn:hover {
  background: #18181b;
  transform: translateY(-1px);
}

.cart-summary {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-card);
  padding: 16px;
  position: sticky;
  top: 68px;
  height: fit-content;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
}

.search-label-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.not-found {
  text-align: center;
  padding-top: 64px;
}

/* ── Navbar Support button + popup ── */
.navbar-support-wrap {
  position: relative;
  flex-shrink: 0;
  z-index: 1100;
}

.navbar-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 10px;
  margin: 0;
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  border-radius: 999px;
  background: rgba(var(--color-accent-rgb), 0.08);
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.navbar-support-btn:hover,
.navbar-support-btn.is-open {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.25);
}

.navbar-support-icon {
  flex-shrink: 0;
  display: block;
  color: inherit;
}

.navbar-affiliates-wrap {
  position: relative;
  flex-shrink: 0;
  z-index: 1100;
}

.navbar-affiliates-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 10px;
  margin: 0;
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  border-radius: 999px;
  background: rgba(var(--color-accent-rgb), 0.08);
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.navbar-affiliates-btn:hover,
.navbar-affiliates-btn.is-open {
  background: rgba(250, 204, 21, 0.12);
  border-color: rgba(250, 204, 21, 0.38);
  color: #facc15;
}

.navbar-affiliates-icon {
  flex-shrink: 0;
  display: block;
  color: inherit;
}

.affiliates-popup {
  width: 220px;
}

.support-popup {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 220px;
  box-sizing: border-box;
  padding: 10px;
  background: #0e0e0e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 150ms ease, transform 150ms ease, visibility 0s linear 150ms;
}

.support-popup.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition: opacity 150ms ease, transform 150ms ease, visibility 0s linear 0s;
}

.support-popup-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.support-popup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 6px 12px;
  box-sizing: border-box;
  margin: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  transition: background 100ms ease;
}

.support-popup-row::after {
  content: "→";
  flex-shrink: 0;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 12px;
  line-height: 1;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
}

.support-popup-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.support-popup-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.support-popup-icon-wrap svg {
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.support-popup-icon-discord {
  color: #8b9cf4;
  background: rgba(139, 156, 244, 0.1);
  border: 1px solid rgba(139, 156, 244, 0.15);
}

.support-popup-icon-docs {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.15);
}

.support-popup-icon-live {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.15);
}

.support-popup-icon-telegram {
  color: #5ac8fa;
  background: rgba(42, 171, 238, 0.12);
  border: 1px solid rgba(42, 171, 238, 0.22);
}

.support-popup-icon-keys {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.15);
}

.support-popup-icon-legal {
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.1);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
}

.support-popup-icon-affiliates {
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.1);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
}

.support-popup-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.support-popup-title {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
}

.support-popup-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.4);
}

.support-popup-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 6px 0;
}

/* ── AI Chat widget (fixed bottom-right) ── */
#aiChatWidget {
  position: relative;
  z-index: 9000;
}

@keyframes aiChatMsgEnter {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typingBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
}

.ai-chat-panel {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 8999;
  width: 300px;
  height: 420px;
  background: #0c0c0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 64px rgba(0, 0, 0, 0.7),
    0 8px 24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(12px) scale(0.92);
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 160ms ease-in,
    transform 160ms ease-in,
    visibility 0s linear 160ms;
}

.ai-chat-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  visibility: visible;
  transition:
    opacity 280ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0s;
}

.ai-chat-panel.is-open.is-closing {
  opacity: 0;
  transform: translateY(6px) scale(0.95);
  pointer-events: none;
  transition:
    opacity 160ms ease-in,
    transform 160ms ease-in;
}

.ai-chat-header {
  flex-shrink: 0;
  height: 48px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: #101010;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ai-chat-header-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  background: linear-gradient(
    135deg,
    rgba(var(--color-accent-rgb), 0.3) 0%,
    rgba(var(--color-accent-rgb), 0.1) 100%
  );
  border: 1px solid rgba(var(--color-accent-rgb), 0.3);
}

.ai-chat-header-avatar svg {
  display: block;
}

.ai-chat-header-center {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ai-chat-header-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.ai-chat-header-status-row {
  display: flex;
  align-items: center;
}

.ai-chat-header-status-text {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.2;
}

.ai-chat-header-close {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  transition: background 150ms ease, color 150ms ease;
}

.ai-chat-header-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.ai-chat-header-close svg {
  display: block;
}

.ai-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 6px;
  min-height: 0;
  background: #0c0c0c;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

.ai-chat-messages::-webkit-scrollbar {
  width: 3px;
}

.ai-chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.ai-chat-messages::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.14);
}

.ai-chat-bottom-strip {
  flex-shrink: 0;
  height: 26px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-chat-bottom-strip__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.42);
  background: rgba(74, 222, 128, 0.12);
  box-shadow:
    0 0 0 1px rgba(74, 222, 128, 0.06) inset,
    0 0 14px rgba(74, 222, 128, 0.12);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.2;
}

.ai-chat-msg {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

.ai-chat-msg--enter {
  animation: aiChatMsgEnter 200ms ease forwards;
}

.ai-chat-msg--user {
  align-self: flex-end;
  align-items: flex-end;
}

.ai-chat-msg--ai {
  align-self: flex-start;
  align-items: flex-start;
}

.ai-chat-bubble {
  max-width: 88%;
  font-family: var(--font-sans);
}

.ai-chat-bubble--ai {
  align-self: flex-start;
  padding: 9px 11px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px 14px 14px 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  font-size: 12px;
  line-height: 1.6;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.ai-chat-bubble--user {
  align-self: flex-end;
  padding: 7px 11px;
  background: var(--color-accent);
  color: #ffffff;
  border-radius: 14px 14px 4px 14px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.01em;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

.ai-chat-bubble--ai.ai-chat-bubble--typing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  line-height: 0;
  white-space: nowrap;
  min-height: 0;
  width: fit-content;
  max-width: none;
  word-break: normal;
  border-radius: 4px 14px 14px 14px;
}

.ai-chat-bubble--ai.ai-chat-bubble--typing .ai-chat-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 0;
  padding: 0;
}

.ai-chat-bubble--ai.ai-chat-bubble--typing .ai-chat-typing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: typingBounce 1s ease-in-out infinite;
}

.ai-chat-bubble--ai.ai-chat-bubble--typing .ai-chat-typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.ai-chat-bubble--ai.ai-chat-bubble--typing .ai-chat-typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}

.ai-chat-ts {
  font-family: var(--font-mono);
  font-size: 9px;
  display: block;
}

.ai-chat-msg--ai .ai-chat-ts {
  color: rgba(255, 255, 255, 0.18);
  align-self: flex-start;
  margin-top: 2px;
  margin-left: 2px;
  max-width: 88%;
}

.ai-chat-msg--user .ai-chat-ts {
  color: rgba(255, 255, 255, 0.18);
  text-align: right;
  align-self: flex-end;
  margin-top: 2px;
  margin-right: 2px;
  max-width: 88%;
}

.ai-chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
  max-width: 100%;
  align-self: flex-start;
}

.ai-chat-option-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(var(--color-accent-rgb), 0.07);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  border-radius: 999px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 400;
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  white-space: nowrap;
  transition: all 140ms ease;
}

.ai-chat-option-btn:hover {
  background: rgba(var(--color-accent-rgb), 0.14);
  border-color: rgba(var(--color-accent-rgb), 0.4);
  color: #ffffff;
  transform: translateY(-1px);
}

.ai-chat-option-btn:active {
  transform: scale(0.96) translateY(0);
  transition-duration: 80ms;
}

.ai-chat-option-btn--back {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  padding: 4px 10px;
  font-size: 10px;
}

.ai-chat-option-btn--back:hover {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.ai-chat-option-btn--back:active {
  transform: scale(0.96) translateY(0);
}

.ai-chat-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-accent);
  color: #ffffff;
  box-shadow:
    0 0 0 0 color-mix(in srgb, var(--color-accent) 0%, transparent),
    0 0 8px 1px color-mix(in srgb, var(--color-accent) 35%, transparent),
    0 0 18px 4px color-mix(in srgb, var(--color-accent) 18%, transparent),
    0 4px 14px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

/* Hidden until loader is gone; .ai-chat-widget--toggle-ready from main.js on site:loader-done */
#aiChatWidget:not(.ai-chat-widget--toggle-ready) .ai-chat-toggle {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.9);
  animation: none;
}

#aiChatWidget.ai-chat-widget--toggle-ready .ai-chat-toggle {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: chatGlow 2.8s ease-in-out infinite;
  /* Long fade-in; keep transform at 150ms so hover / unhover stays snappy */
  transition:
    opacity 520ms var(--ease-smooth),
    transform 150ms ease,
    visibility 0s,
    box-shadow 150ms ease;
}

/* ID + :hover beats #aiChatWidget… .ai-chat-toggle so scale(1.08) wins over identity transform */
#aiChatWidget.ai-chat-widget--toggle-ready .ai-chat-toggle:hover {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  #aiChatWidget:not(.ai-chat-widget--toggle-ready) .ai-chat-toggle {
    transform: none;
  }

  #aiChatWidget.ai-chat-widget--toggle-ready .ai-chat-toggle {
    transition-duration: 0ms;
  }
}

.ai-chat-toggle:hover {
  transform: scale(1.08);
}

@keyframes chatGlow {
  0%,
  100% {
    box-shadow:
      0 0 6px 1px color-mix(in srgb, var(--color-accent) 22%, transparent),
      0 0 14px 3px color-mix(in srgb, var(--color-accent) 12%, transparent),
      0 4px 14px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow:
      0 0 10px 2px color-mix(in srgb, var(--color-accent) 34%, transparent),
      0 0 22px 5px color-mix(in srgb, var(--color-accent) 18%, transparent),
      0 4px 14px rgba(0, 0, 0, 0.35);
  }
}

.ai-chat-toggle-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 150ms ease;
  pointer-events: none;
}

.ai-chat-toggle-icon--headset {
  opacity: 1;
}

.ai-chat-toggle-icon--close-x {
  opacity: 0;
}

.ai-chat-toggle.ai-chat-toggle--panel-open .ai-chat-toggle-icon--headset {
  opacity: 0;
}

.ai-chat-toggle.ai-chat-toggle--panel-open .ai-chat-toggle-icon--close-x {
  opacity: 1;
}

.ai-chat-toggle-icon svg {
  display: block;
}

@media (max-width: 980px) {
  .navbar {
    padding: 10px 12px;
  }

  .navbar-inner {
    flex-wrap: nowrap;
    height: auto;
    min-height: 44px;
    padding: 8px 10px;
    gap: 8px;
  }

  .navbar-links {
    gap: 4px 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .navbar-link {
    font-size: 12px;
  }

  .navbar-search-wrap {
    flex: 0 1 200px;
    width: auto;
    min-width: 120px;
    max-width: 220px;
    margin-left: auto;
  }

  .product-page-top,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .product-page-shell {
    padding: 0 20px;
  }

  .filter-selects {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .trust-row {
    gap: 8px;
  }
}

/* ── Site footer ── */
.site-footer {
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a0a0a;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #ffffff;
  width: fit-content;
}

.footer-logo:hover {
  opacity: 0.7;
}

.footer-logo-mark {
  font-size: 16px;
  color: var(--color-accent);
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  max-width: 220px;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition:
    background 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
}

.footer-social-btn:hover {
  background: rgba(88, 101, 242, 0.12);
  border-color: rgba(88, 101, 242, 0.25);
  color: #9da8f0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-heading {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 4px;
}

.footer-link {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  transition: color 150ms ease;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Status page ── */
.status-page .legal-kicker {
  margin-bottom: 10px;
}

.status-page .legal-subtitle {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.status-health-pill {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
}

.status-health-pill .status-dot {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.status-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 22px;
}

.status-notice__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  flex-shrink: 0;
}

.status-notice__text {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

.status-groups {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.status-group {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.status-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.status-group-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0 0 12px;
}

.status-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.status-row + .status-row {
  margin-top: 10px;
}

.status-row:hover {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.status-row-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.status-row-plans + .status-row-issue {
  margin-top: 10px;
}

.status-row-issue {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.status-row-issue__label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-right: 6px;
}

.status-row-name {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.status-row-updated {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.status-row-plans {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 6px;
  margin-top: 8px;
}

.status-row-plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.status-row-plan-badge__label {
  color: rgba(255, 255, 255, 0.88);
}

.status-row-plan-badge__sep {
  color: rgba(255, 255, 255, 0.22);
  font-weight: 400;
  margin: 0 1px;
}

.status-row-plan-badge__price {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.status-row-plan-badge--unavailable {
  opacity: 0.5;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.12);
}

.status-row-plan-badge--unavailable .status-row-plan-badge__label {
  color: rgba(255, 255, 255, 0.5);
}

.status-row-plan-badge--unavailable .status-row-plan-badge__price[data-price-display="true"] {
  color: rgba(255, 255, 255, 0.38);
  text-shadow: none;
}

.status-row-right {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-top: 1px;
}

.status-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-last-loaded {
  margin-top: 26px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.22);
}

.js-status-obs {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.js-status-obs.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px 24px;
  }
}

/* ── Legal pages (terms, privacy, refund) ── */
.legal-page {
  min-height: 60vh;
}

.page-main.legal-page {
  max-width: none;
  margin: 0;
  padding: 80px 24px 48px;
  box-sizing: border-box;
}

.legal-hero {
  text-align: center;
  padding: 0 32px 0;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.legal-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin: 0 0 12px;
}

.legal-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.15;
}

.legal-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
  line-height: 1.5;
}

.legal-updated {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 4px 12px;
  display: inline-block;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 32px 80px;
  box-sizing: border-box;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.legal-section__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(var(--color-accent-rgb), 0.08);
  border: 1px solid rgba(var(--color-accent-rgb), 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}

.legal-section__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.legal-section__title {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.legal-section__body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}

.legal-section__body p {
  margin: 0 0 12px;
}

.legal-section__body p:last-child {
  margin-bottom: 0;
}

.legal-section__body ul {
  margin: 8px 0 0;
  padding-left: 1.25em;
}

.legal-section__body li {
  margin-bottom: 6px;
}

.legal-section__body li:last-child {
  margin-bottom: 0;
}

.legal-callout {
  margin: 0 0 14px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.legal-callout--danger {
  border: 1px solid rgba(248, 113, 113, 0.38);
  background: rgba(248, 113, 113, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.search-result-thumb-fallback {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--font-mono);
}

.card-media__img.is-hidden {
  display: none !important;
}

.card-media__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.22);
  background: #0a0a0a;
}

.card-media__fallback.is-visible {
  display: flex;
}

.why-card-featured__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.14);
  background: #0f0f0f;
}

.why-card-featured__fallback:not([hidden]) {
  display: flex;
}

.product-lightbox__ph {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: min(50vh, 480px);
  width: 100%;
  font-family: var(--font-mono);
  font-size: clamp(36px, 8vw, 80px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.12);
  background: #0a0a0a;
}

/* ── Purchase modal (checkout popup) ── */
#purchaseModalBackdrop {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 150ms ease-in, visibility 0s linear 150ms;
}

#purchaseModalBackdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 200ms ease-out, visibility 0s;
}

#purchaseModalPanel {
  --purchase-modal-alert-rgb: 248, 113, 113;
  --purchase-modal-price-font: var(--font-sans);
  font-family: var(--font-sans);
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9991;
  width: 464px;
  max-width: calc(100vw - 28px);
  max-height: 92vh;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
  transform: translate(-50%, calc(-50% + 8px)) scale(0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 150ms ease-in, transform 150ms ease-in, visibility 0s linear 150ms;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
}

#purchaseModalPanel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 250ms cubic-bezier(0.16, 1, 0.3, 1), transform 250ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s;
}

#purchaseModalPanel::-webkit-scrollbar {
  width: 6px;
}

#purchaseModalPanel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}

#purchaseModalPanel > .purchase-modal-divider {
  display: none;
}

#purchaseModalPanel > .purchase-modal-header {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}

#purchaseModalPanel > .purchase-modal-product,
#purchaseModalPanel > .purchase-modal-total-row,
#purchaseModalPanel > .purchase-modal-terms,
#purchaseModalPanel > .purchase-modal-discount-row,
#purchaseModalPanel > .purchase-modal-legitimacy-wrap {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}

#purchaseModalPanel > .purchase-modal-footer {
  padding: 12px 18px 14px;
  border-bottom: none;
  box-sizing: border-box;
}

#purchaseModalPanel > .purchase-modal-product {
  padding: 12px 16px;
}

.purchase-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0a0a0a;
}

.purchase-modal-header-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.purchase-modal-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.purchase-modal-header-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(var(--color-accent-rgb), 0.12);
  border: 1px solid rgba(var(--color-accent-rgb), 0.2);
  color: var(--color-accent);
}

.purchase-modal-header-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.purchase-modal-title {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.purchase-modal-subtitle {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.purchase-modal-close {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-left: auto;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.purchase-modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.purchase-modal-close svg {
  display: block;
  width: 14px;
  height: 14px;
}

.purchase-modal-divider {
  display: none;
}

.purchase-modal-product {
  display: block;
  background: rgba(0, 0, 0, 0.15);
}

.purchase-modal-product-filled {
  display: block;
  width: 100%;
}

.purchase-modal-empty-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 16px 12px;
  box-sizing: border-box;
  gap: 10px;
}

/* Author `display: flex` wins over UA `[hidden]` otherwise — empty state stays visible. */
.purchase-modal-empty-cart[hidden] {
  display: none !important;
}

.purchase-modal-product-filled[hidden] {
  display: none !important;
}

.purchase-modal-empty-cart__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 2px;
}

.purchase-modal-empty-cart__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: -0.02em;
}

.purchase-modal-empty-cart__text {
  margin: 0;
  max-width: 280px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.38);
}

.purchase-modal-extra-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin-top: 6px;
  box-sizing: border-box;
}

.purchase-modal-product-line-card--extra {
  opacity: 0.92;
}

.purchase-modal-product-line-card--extra .purchase-modal-product-line-card-main {
  gap: 6px;
}

.purchase-modal-product-line-card--extra .purchase-modal-qty--extra {
  margin-top: 0;
}

.purchase-modal-product-line-card {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 11px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(0, 0, 0, 0.42);
  box-sizing: border-box;
}

.purchase-modal-product-line-card-info {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.purchase-modal-product-line-card-main {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  flex-shrink: 0;
  min-width: 0;
}

.purchase-modal-product-line-card .purchase-modal-qty {
  margin-top: 0;
}

.purchase-modal-product-img {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #141414;
}

.purchase-modal-product-name {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.28;
}

.purchase-modal-product-plan {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

.purchase-modal-qty {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  flex-shrink: 0;
  margin-top: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.purchase-modal-qty-btn {
  width: 26px;
  min-height: 24px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.purchase-modal-qty-btn--remove-line {
  color: #f87171 !important;
  background: rgba(248, 113, 113, 0.1) !important;
  font-size: 15px;
  font-weight: 500;
}

.purchase-modal-qty-btn--remove-line:hover:not(:disabled) {
  background: rgba(248, 113, 113, 0.22) !important;
  color: #fca5a5 !important;
}

.purchase-modal-qty-btn:first-of-type {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.purchase-modal-qty-btn:last-of-type {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.purchase-modal-qty-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.purchase-modal-qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.purchase-modal-qty-value {
  min-width: 26px;
  padding: 0 4px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  flex-shrink: 0;
  transform-origin: center center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}

.purchase-modal-qty-value--bump {
  animation: purchaseModalQtyBump 150ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes purchaseModalQtyBump {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.purchase-modal-product-price {
  font-family: var(--purchase-modal-price-font);
  font-size: 13px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.purchase-modal-total-price.purchase-modal-price-flash,
.purchase-modal-product-price.purchase-modal-price-flash {
  animation: purchaseModalPriceFlash 200ms ease;
}

@keyframes purchaseModalPriceFlash {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.purchase-modal-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.purchase-modal-total-label {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
}

.purchase-modal-total-price {
  font-family: var(--purchase-modal-price-font);
  font-size: 15px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.purchase-modal-terms {
  display: flex;
  align-items: center;
  gap: 12px;
}

.purchase-modal-terms-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.purchase-modal-terms-check svg {
  width: 10px;
  height: 10px;
  color: #ffffff;
  display: block;
  transform: scale(0);
  opacity: 0;
}

.purchase-modal-terms-check[aria-checked="true"] {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.purchase-modal-terms-check[aria-checked="true"] svg {
  opacity: 1;
  animation: purchaseModalTermsCheckDraw 200ms cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.purchase-modal-terms-check[aria-checked="false"] svg {
  animation: none;
  transform: scale(0);
  opacity: 0;
}

@keyframes purchaseModalTermsCheckDraw {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  55% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.purchase-modal-terms-check--flash {
  animation: purchaseModalTermsFlash 0.45s ease;
}

@keyframes purchaseModalTermsFlash {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
  }
  25%,
  75% {
    border-color: #f87171;
    box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.5);
  }
}

.purchase-modal-terms-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
  margin: 0;
}

.purchase-modal-terms-text a {
  color: var(--color-accent);
  text-decoration: none;
}

.purchase-modal-terms-text a:hover {
  text-decoration: underline;
}

.purchase-modal-discount-row {
  display: block;
  width: 100%;
}

.purchase-modal-discount-panel:not([hidden]) {
  margin-top: 8px;
}

.purchase-modal-discount-reveal {
  display: block;
  width: 100%;
  margin: 0;
  padding: 2px 0 4px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: left;
  cursor: pointer;
  transition: color 150ms ease;
}

.purchase-modal-discount-reveal:hover {
  color: rgba(255, 255, 255, 0.68);
}

.purchase-modal-discount-reveal:focus-visible {
  outline: 2px solid rgba(var(--color-accent-rgb), 0.45);
  outline-offset: 2px;
}

.purchase-modal-discount-panel {
  display: block;
  width: 100%;
}

.purchase-modal-discount-panel[hidden] {
  display: none !important;
}

.purchase-modal-discount-field {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: stretch;
  gap: 0;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: var(--color-input);
  box-sizing: border-box;
  overflow: hidden;
  transition: border-color 180ms var(--ease-smooth), background 180ms var(--ease-smooth);
}

.purchase-modal-discount-field:focus-within {
  border-color: rgba(var(--color-accent-rgb), 0.38);
  background: rgba(24, 24, 27, 0.98);
}

.purchase-modal-discount-field__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(var(--color-accent-rgb), 0.65);
  box-sizing: border-box;
}

.purchase-modal-discount-input-inline {
  flex: 1;
  min-width: 0;
  width: 0;
  min-height: 44px;
  height: auto;
  padding: 0 12px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: -0.01em;
  outline: none;
  box-sizing: border-box;
}

.purchase-modal-discount-input-inline::placeholder {
  color: rgba(255, 255, 255, 0.28);
  font-weight: 300;
}

.purchase-modal-discount-apply-inline {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  height: 34px;
  padding: 0 14px;
  margin: 4px 5px 4px 0;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: rgba(255, 255, 255, 0.48) !important;
  font-size: 12px;
  font-weight: 400;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 160ms var(--ease-smooth), border-color 160ms var(--ease-smooth), color 160ms var(--ease-smooth), transform 120ms var(--ease-smooth);
}

.purchase-modal-discount-apply-inline:hover {
  background: var(--color-accent) !important;
  border-color: rgba(var(--color-accent-rgb), 0.55) !important;
  color: #ffffff !important;
  font-weight: 500;
}

.purchase-modal-discount-apply-inline:active {
  transform: scale(0.98);
}

.purchase-modal-discount-apply-inline:focus-visible {
  outline: 2px solid rgba(var(--color-accent-rgb), 0.55);
  outline-offset: 2px;
}

#purchaseModalPanel > .purchase-modal-confirm {
  margin: 12px 18px 5px;
  width: calc(100% - 36px);
  max-width: none;
  box-sizing: border-box;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.purchase-modal-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035) !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-weight: 400;
  font-size: 15px;
  font-family: var(--font-sans);
  line-height: 1.25;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: not-allowed;
  pointer-events: none;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, opacity 150ms ease,
    font-weight 200ms ease, letter-spacing 200ms ease;
  box-sizing: border-box;
}

.purchase-modal-confirm--ready {
  background: var(--color-accent) !important;
  border-color: rgba(var(--color-accent-rgb), 0.55) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  pointer-events: auto;
}

.purchase-modal-confirm--ready:hover {
  background: color-mix(in srgb, var(--color-accent) 82%, #ffffff) !important;
  border-color: rgba(var(--color-accent-rgb), 0.62) !important;
}

.purchase-modal-confirm--ready:active {
  background: color-mix(in srgb, var(--color-accent) 88%, #0a0a0a) !important;
  border-color: rgba(var(--color-accent-rgb), 0.48) !important;
}

.purchase-modal-confirm--ready .purchase-modal-spinner {
  color: #ffffff;
}

.purchase-modal-confirm:disabled {
  cursor: wait;
  pointer-events: none;
  opacity: 1 !important;
  background: color-mix(in srgb, var(--color-accent) 38%, #0a0a0a) !important;
  border-color: rgba(var(--color-accent-rgb), 0.5) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  filter: none !important;
}

.purchase-modal-confirm:disabled .purchase-modal-spinner {
  color: #ffffff;
  opacity: 1;
}

.purchase-modal-confirm .purchase-modal-spinner {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
  transform-origin: center center;
  animation: purchaseModalSpin 0.75s linear infinite;
}

@keyframes purchaseModalSpin {
  to {
    transform: rotate(360deg);
  }
}

.purchase-modal-legitimacy-wrap {
  display: block;
  width: 100%;
}

#purchaseModalPanel > .purchase-modal-legitimacy-wrap {
  padding-top: 2px;
  padding-bottom: 10px;
}

.purchase-modal-legitimacy-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 9px;
  border: 1px solid rgba(180, 83, 9, 0.35);
  background: rgba(251, 191, 36, 0.06);
  box-sizing: border-box;
}

.purchase-modal-legitimacy-note--alert {
  border-color: rgba(180, 83, 9, 0.4);
  background: rgba(251, 191, 36, 0.07);
  box-shadow: none;
}

.purchase-modal-legitimacy-note__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  line-height: 0;
}

.purchase-modal-legitimacy-note__icon svg {
  display: block;
}

.purchase-modal-legitimacy-note--alert .purchase-modal-legitimacy-note__text {
  color: #d1d5db;
}

.purchase-modal-legitimacy-note--alert .purchase-modal-legitimacy-note__label {
  color: #fef3c7;
}

.purchase-modal-legitimacy-note__text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(229, 231, 235, 0.92);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.purchase-modal-legitimacy-note__label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #fef3c7;
}

.purchase-modal-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.purchase-modal-trust {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.18);
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #4ade80;
  white-space: nowrap;
  box-sizing: border-box;
  min-width: 0;
}

.purchase-modal-trust-tooltip {
  position: absolute;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%) translateY(3px);
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  padding: 5px 9px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 300;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  white-space: normal;
  max-width: 180px;
  width: max-content;
  pointer-events: none;
  opacity: 0;
  z-index: 9999;
  transition: opacity 150ms ease, transform 150ms ease;
}

.purchase-modal-trust:hover .purchase-modal-trust-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.purchase-modal-trust--alert {
  background: rgba(var(--purchase-modal-alert-rgb), 0.14) !important;
  border-color: rgba(var(--purchase-modal-alert-rgb), 0.45) !important;
  color: rgb(var(--purchase-modal-alert-rgb)) !important;
}

.purchase-modal-trust--alert svg {
  color: rgb(var(--purchase-modal-alert-rgb)) !important;
}

.purchase-modal-trust svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  color: #4ade80;
}

@media (max-width: 500px) {
  #purchaseModalPanel {
    max-width: calc(100vw - 24px);
  }

  #purchaseModalPanel > .purchase-modal-header,
  #purchaseModalPanel > .purchase-modal-product,
  #purchaseModalPanel > .purchase-modal-total-row,
  #purchaseModalPanel > .purchase-modal-terms,
  #purchaseModalPanel > .purchase-modal-discount-row,
  #purchaseModalPanel > .purchase-modal-legitimacy-wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  #purchaseModalPanel > .purchase-modal-confirm {
    margin: 12px 14px 5px;
    width: calc(100% - 28px);
  }

  #purchaseModalPanel > .purchase-modal-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .purchase-modal-product-line-card {
    flex-wrap: wrap;
    padding: 8px 10px;
    gap: 8px;
  }

  .purchase-modal-product-line-card-info {
    flex: 1 1 calc(100% - 56px);
    min-width: 0;
  }

  .purchase-modal-product-line-card-main {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
  }
}

/* Purchase modal: discount code toast */
.purchase-discount-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  z-index: 99999;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 420px;
  width: calc(100vw - 48px);
  padding: 12px 18px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(60, 20, 20, 0.98) 0%, rgba(35, 12, 12, 0.99) 100%);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 12px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(239, 68, 68, 0.12);
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  transition:
    opacity 250ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.purchase-discount-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.purchase-discount-toast.is-hiding {
  opacity: 0;
  transform: translateX(-50%) translateY(6px);
  transition:
    opacity 200ms ease-in,
    transform 200ms ease-in;
}

.purchase-discount-toast__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: #f87171;
  line-height: 0;
}

.purchase-discount-toast__icon svg {
  display: block;
}

.purchase-discount-toast__body {
  flex: 1;
  min-width: 0;
}

.purchase-discount-toast__title {
  font-size: 13px;
  font-weight: 400;
  color: #fecaca;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  font-family: var(--font-sans);
}

.purchase-discount-toast__text {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  color: rgba(254, 202, 202, 0.82);
  line-height: 1.6;
  font-family: var(--font-sans);
}

.purchase-discount-toast__code {
  display: inline-block;
  margin: 0 1px;
  padding: 1px 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.22);
  border: 1px solid rgba(248, 113, 113, 0.4);
  border-radius: 4px;
  vertical-align: baseline;
}

/* ——— Documentation hub (docs.html) ——— */
.page-main.docs-page {
  max-width: 900px;
}

.docs-stage {
  position: relative;
  min-height: 48vh;
}

.docs-view {
  transition: opacity 150ms ease;
}

.docs-view--list {
  opacity: 1;
}

.docs-view--guide {
  opacity: 1;
}

.docs-view--guide[hidden] {
  display: none !important;
}

.docs-page-header {
  text-align: center;
  margin-bottom: 0;
}

.docs-kicker {
  display: inline-block;
  margin: 0 0 16px;
  padding: 4px 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--color-accent-rgb), 0.3);
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-sizing: border-box;
}

.docs-title {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.docs-subtitle {
  margin: 0 auto 0;
  max-width: 500px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.docs-search-field-wrap {
  position: relative;
  max-width: 560px;
  margin: 28px auto 32px;
}

.docs-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.28);
  display: flex;
  pointer-events: none;
}

.docs-search-input {
  width: 100%;
  height: 42px;
  padding: 0 16px 0 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 15, 15, 0.9);
  color: #fff;
  font-size: 13px;
  font-family: var(--font-sans);
  outline: none;
  box-sizing: border-box;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.docs-search-input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.docs-search-input:focus {
  border-color: rgba(var(--color-accent-rgb), 0.45);
  box-shadow: 0 0 0 3px rgba(var(--color-accent-rgb), 0.12);
}

.docs-list-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.docs-product-list {
  display: flex;
  flex-direction: column;
}

.docs-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  margin-bottom: 8px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 150ms ease, background 150ms ease, transform 150ms ease, opacity 150ms ease;
}

.docs-row:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  transform: translateX(3px);
}

.docs-row--down {
  opacity: 0.55;
}

.docs-row--down:hover {
  opacity: 0.68;
}

.docs-game-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.docs-game-icon svg {
  width: 18px;
  height: 18px;
}

.docs-game-icon--roblox {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: rgba(239, 68, 68, 0.95);
}

.docs-game-icon--rust {
  background: rgba(251, 146, 60, 0.15);
  border: 1px solid rgba(251, 146, 60, 0.25);
  color: rgba(251, 146, 60, 0.95);
}

.docs-game-icon--fortnite {
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.25);
  color: rgba(96, 165, 250, 0.95);
}

.docs-game-icon--cs2 {
  background: rgba(234, 179, 8, 0.15);
  border: 1px solid rgba(234, 179, 8, 0.25);
  color: rgba(234, 179, 8, 0.95);
}

.docs-game-icon--arc_raiders {
  background: rgba(167, 139, 250, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.25);
  color: rgba(167, 139, 250, 0.95);
}

.docs-game-icon--accounts {
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: rgba(74, 222, 128, 0.95);
}

.docs-row-main {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.docs-row-name {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.docs-row-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 6px;
}

.docs-row-game {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.docs-row-sub {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}

.docs-row-status {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.docs-row-status__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.docs-row-status__text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.docs-row-chevron {
  flex-shrink: 0;
  margin-left: 12px;
  color: rgba(255, 255, 255, 0.2);
  display: flex;
}

.docs-row-chevron svg {
  width: 14px;
  height: 14px;
}

.docs-list-footnote {
  text-align: center;
  margin: 28px 0 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
}

.docs-list-footnote__link {
  color: var(--color-accent);
  text-decoration: none;
}

.docs-list-footnote__link:hover {
  text-decoration: underline;
}

.docs-back-btn {
  display: block;
  margin: 0 0 28px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-align: left;
  transition: color 150ms ease;
}

.docs-back-btn:hover {
  color: #ffffff;
}

.docs-guide-mount {
  max-width: 760px;
  margin: 0 auto;
}

.docs-guide-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.docs-game-icon--lg {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.docs-game-icon--lg svg {
  width: 22px;
  height: 22px;
}

.docs-guide-head-titles {
  flex: 1;
  min-width: 0;
}

.docs-guide-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.docs-guide-name {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.docs-guide-head .status-dot-wrap {
  flex-shrink: 0;
}

.docs-guide-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.docs-guide-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.docs-guide-desc {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

.docs-phase-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 24px;
  width: 100%;
}

.docs-phase-rule__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.docs-phase-rule__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

.docs-sec-card {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 24px;
  box-sizing: border-box;
}

.docs-sec-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.docs-sec-card__left {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.docs-sec-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.25);
  color: #fb923c;
}

.docs-sec-icon svg {
  width: 18px;
  height: 18px;
}

.docs-sec-card__title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.docs-sec-card__sub {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.45;
}

.docs-badge-important {
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: rgba(251, 146, 60, 0.15);
  border: 1px solid rgba(251, 146, 60, 0.3);
  color: #fb923c;
}

.docs-substep {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.docs-substep__num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: #ffffff;
}

.docs-substep__title {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
}

.docs-substep__path {
  margin: 0;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.docs-substep__path strong {
  font-weight: 500;
  color: #fb923c;
}

.docs-dcontrol-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.docs-dcontrol-row__title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.docs-dcontrol-row__title {
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
}

.docs-badge-req {
  padding: 2px 7px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.25);
  color: #fb923c;
}

.docs-dcontrol-row__sub {
  margin: 0;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.45;
  max-width: 420px;
}

.docs-btn-subtle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-sans);
  color: #ffffff;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 150ms ease, border-color 150ms ease;
}

.docs-btn-subtle:hover {
  background: #222;
  border-color: rgba(255, 255, 255, 0.18);
}

.docs-btn-subtle--block {
  width: 100%;
  margin-top: 12px;
}

.docs-inject-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.docs-inject-step {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

.docs-inject-step__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 28px;
  flex-shrink: 0;
}

.docs-inject-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(var(--color-accent-rgb), 0.15);
  border: 1px solid rgba(var(--color-accent-rgb), 0.4);
  box-sizing: border-box;
}

.docs-inject-step__line {
  width: 1px;
  flex: 1;
  min-height: 12px;
  margin: 4px 0 0;
  align-self: center;
  background: rgba(255, 255, 255, 0.1);
}

.docs-inject-step--last .docs-inject-step__rail .docs-inject-step__line {
  display: none;
}

.docs-inject-step__body {
  flex: 1;
  min-width: 0;
  padding-bottom: 20px;
}

.docs-inject-step--last .docs-inject-step__body {
  padding-bottom: 0;
}

.docs-inject-card {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 24px;
  box-sizing: border-box;
}

.docs-inject-card__title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.docs-inject-card__sub {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.45;
}

.docs-btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 10px;
  background: var(--color-accent);
  color: #000000;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: var(--font-sans);
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: filter 150ms ease, transform 150ms ease;
}

.docs-btn-download:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.docs-inject-row-lite {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 18px 22px;
  flex-wrap: wrap;
}

.docs-inject-row-lite__title {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.docs-inject-row-lite__sub {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
}

.docs-launch-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.docs-launch-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.docs-launch-row svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.35);
}

.docs-launch-row p {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.docs-rust-warn {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(251, 146, 60, 0.06);
  border: 1px solid rgba(251, 146, 60, 0.2);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 4px;
}

.docs-rust-warn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #fb923c;
}

.docs-rust-warn__title {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
}

.docs-rust-warn__sub {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.docs-help-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 18px 24px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
}

.docs-help-card__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.docs-help-card__left svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.35);
}

.docs-help-card__title {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
}

.docs-help-card__sub {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
}

.docs-btn-accent-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.12);
  border: 1px solid rgba(var(--color-accent-rgb), 0.25);
  text-decoration: none;
  cursor: pointer;
  transition: background 150ms ease;
}

.docs-btn-accent-outline:hover {
  background: rgba(var(--color-accent-rgb), 0.2);
}

.docs-ultimate-discord-btn {
  display: flex;
  width: 100%;
  margin-top: 12px;
  box-sizing: border-box;
}

/* Vector docs: Account Setup + antivirus note */
.docs-sec-icon--accent {
  background: rgba(var(--color-accent-rgb), 0.12);
  border: 1px solid rgba(var(--color-accent-rgb), 0.28);
  color: var(--color-accent);
}

.docs-sec-card__top--vector-account {
  justify-content: flex-start;
}

.docs-account-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.docs-account-step--row {
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.docs-account-step--row .docs-account-step__text {
  flex: 1;
  min-width: 0;
}

.docs-btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.08);
  border: 1px solid rgba(var(--color-accent-rgb), 0.45);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 150ms ease, border-color 150ms ease;
}

.docs-btn-signup:hover {
  background: rgba(var(--color-accent-rgb), 0.15);
  border-color: rgba(var(--color-accent-rgb), 0.6);
}

.docs-browser-download-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}

.docs-browser-download-note__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.4);
}

.docs-browser-download-note p {
  margin: 0;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.docs-browser-download-note--fallen-guide {
  margin-top: 0;
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  height: auto;
  min-height: unset;
}

a.docs-fallen-account-setup-link {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 150ms ease;
}

a.docs-fallen-account-setup-link:hover {
  opacity: 0.8;
}

.docs-fallen-warn {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 10px;
  box-sizing: border-box;
}

.docs-fallen-warn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #f87171;
}

.docs-fallen-warn__content {
  flex: 1;
  min-width: 0;
}

.docs-fallen-warn__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.docs-fallen-warn__badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-sizing: border-box;
}

.docs-fallen-warn__body {
  margin: 0;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
}

/* Phase 3 troubleshooting accordions */
.docs-fix-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.docs-fix-item {
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.docs-fix-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  box-sizing: border-box;
  transition: background 150ms ease;
}

.docs-fix-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.docs-fix-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.docs-fix-icon-wrap svg {
  width: 16px;
  height: 16px;
}

.docs-fix-icon-wrap--amber {
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.28);
  color: #fbbf24;
}

.docs-fix-icon-wrap--accent {
  background: rgba(var(--color-accent-rgb), 0.12);
  border: 1px solid rgba(var(--color-accent-rgb), 0.28);
  color: var(--color-accent);
}

.docs-fix-icon-wrap--muted {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
}

.docs-fix-icon-wrap--danger {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.28);
  color: #f87171;
}

.docs-fix-icon-wrap--purple {
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #a78bfa;
}

.docs-fix-icon-wrap--amber-muted {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.docs-fix-header-text {
  flex: 1;
  min-width: 0;
}

.docs-fix-header-title {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 6px;
}

.docs-fix-header-title--solo {
  margin-bottom: 0;
}

.docs-fix-game-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
}

.docs-fix-header-sub {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.4;
}

.docs-fix-chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.25);
  transition: transform 200ms ease;
}

.docs-fix-chevron svg {
  width: 16px;
  height: 16px;
  display: block;
}

.docs-fix-item.is-open .docs-fix-chevron {
  transform: rotate(90deg);
}

.docs-fix-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
  border-top: 1px solid transparent;
}

.docs-fix-item.is-open .docs-fix-panel {
  max-height: 640px;
  border-top-color: rgba(255, 255, 255, 0.06);
}

.docs-fix-item--loader-trouble.is-open .docs-fix-panel {
  max-height: 2000px;
}

.docs-fix-item--roblox-ui .docs-fix-header {
  align-items: flex-start;
  padding-top: 18px;
  padding-bottom: 18px;
}

.docs-fix-item--roblox-ui .docs-fix-icon-wrap {
  margin-top: 2px;
}

.docs-fix-item--roblox-ui .docs-fix-header-title {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 8px;
}

.docs-fix-item--roblox-ui .docs-fix-game-tag {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.08em;
}

.docs-fix-item--roblox-ui.is-open .docs-fix-panel {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.docs-fix-item--roblox-ui .docs-fix-panel-inner {
  padding: 16px 20px 20px;
}

.docs-fishstrap-cfg-intro {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
}

.docs-fishstrap-cfg-rows {
  margin: 0;
}

.docs-fishstrap-cfg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  margin-bottom: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  box-sizing: border-box;
}

.docs-fishstrap-cfg-label {
  flex: 1;
  min-width: 0;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.docs-fishstrap-cfg-value {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-mono);
  text-align: right;
}

.docs-fishstrap-cfg-value--on {
  color: #4ade80;
}

.docs-fishstrap-cfg-value--muted {
  color: rgba(255, 255, 255, 0.7);
}

.docs-fishstrap-cfg-note {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

.docs-fix-item--roblox-ui .docs-btn-fishstrap {
  margin-top: 16px;
  height: auto;
  min-height: 42px;
  padding: 12px 16px;
  border-radius: 10px;
}

.docs-fix-panel-inner {
  padding: 0 20px 16px;
}

.docs-trouble-fix-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.docs-trouble-fix-row:last-child {
  border-bottom: none;
}

.docs-trouble-fix-row .docs-inject-step__num {
  flex-shrink: 0;
  margin-top: 0;
}

.docs-trouble-fix-title {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
}

.docs-trouble-fix-desc {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.55;
}

.docs-trouble-fix-desc:last-child {
  margin-bottom: 0;
}

.docs-trouble-fix-desc--tight-top {
  margin-top: 0;
}

.docs-fix-checklist-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.docs-fix-checklist-row:last-child {
  border-bottom: none;
}

.docs-fix-checklist-ico {
  flex-shrink: 0;
}

.docs-fix-checklist-ico svg {
  width: 15px;
  height: 15px;
}

.docs-fix-checklist-row__text {
  flex: 1;
  min-width: 0;
}

.docs-fix-checklist-title {
  margin: 0 0 3px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}

.docs-fix-checklist-desc {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

.docs-fix-panel-inner--checklist {
  padding: 0 20px 16px;
}

.docs-fix-vpn-block {
  padding-top: 8px;
}

.docs-fix-vpn-block .docs-fix-checklist-title {
  margin-bottom: 12px;
}

.docs-fix-vpn-block .docs-btn-subtle {
  margin-top: 12px;
}

.docs-fix-vpn-warn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

.docs-fix-vpn-warn svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: #fbbf24;
  margin-top: 2px;
}

.docs-fix-vpn-warn p {
  margin: 0;
  flex: 1;
  min-width: 0;
}

.docs-fix-auth-lead-title {
  margin: 16px 0 10px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}

.docs-fix-auth-note {
  margin: 12px 0 0;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
}

.docs-btn-accent-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  font-family: inherit;
  color: var(--color-accent);
  background: transparent;
  border: 1px solid rgba(var(--color-accent-rgb), 0.45);
  border-radius: 8px;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.docs-btn-accent-outline:hover {
  background: rgba(var(--color-accent-rgb), 0.08);
  border-color: rgba(var(--color-accent-rgb), 0.65);
  color: #fff;
}

.docs-text-accent {
  color: var(--color-accent);
  font-weight: 600;
}

.docs-code-block {
  display: block;
  margin: 8px 0 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
  word-break: break-all;
}

.docs-inline-code {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

a.docs-inline-code.docs-inline-code--link {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: background 150ms ease, border-color 150ms ease;
}

a.docs-inline-code.docs-inline-code--link:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
}

.docs-trouble-dl-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
}

.docs-trouble-dl-row:last-child {
  border-bottom: none;
}

.docs-trouble-dl-info {
  flex: 1;
  min-width: 0;
}

.docs-trouble-dl-title {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
}

.docs-trouble-dl-desc {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
}

.docs-btn-dl-fix {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 150ms ease;
}

.docs-btn-dl-fix:hover {
  background: rgba(255, 255, 255, 0.1);
}

.docs-btn-fishstrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 38px;
  margin-top: 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-sans);
  color: var(--color-accent);
  background: rgba(var(--color-accent-rgb), 0.08);
  border: 1px solid rgba(var(--color-accent-rgb), 0.4);
  text-decoration: none;
  box-sizing: border-box;
  transition: background 150ms ease, border-color 150ms ease;
}

.docs-btn-fishstrap:hover {
  background: rgba(var(--color-accent-rgb), 0.14);
  border-color: rgba(var(--color-accent-rgb), 0.55);
}

/* Vector Phase 2 — injection walkthrough */
.docs-vector-step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 22px;
  box-sizing: border-box;
}

.docs-vector-step-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
}

.docs-vector-step-card__icon svg {
  width: 18px;
  height: 18px;
}

.docs-vector-step-card__text {
  flex: 1;
  min-width: 0;
}

.docs-vector-step-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.docs-vector-step-card__desc {
  margin: 0;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.55;
}

.docs-vector-step-card--complete {
  border-color: rgba(74, 222, 128, 0.15);
  border-left: 2px solid rgba(74, 222, 128, 0.4);
}

.docs-vector-step-card__icon--success {
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: #4ade80;
}

.docs-ready-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: #4ade80;
  box-sizing: border-box;
}

.docs-ready-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  position: relative;
}

.docs-ready-pill__dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #4ade80;
  opacity: 0;
  animation: dotPulse 2.4s ease-out infinite;
}

.js-docs-row {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-docs-row.is-visible {
  opacity: 1;
  transform: none;
}

.js-docs-guide-obs {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-docs-guide-obs.is-visible {
  opacity: 1;
  transform: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MOBILE RESPONSIVE STYLES
   All styles below are mobile only
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (min-width: 769px) {
  .mobile-nav-backdrop,
  .mobile-nav-drawer,
  .mobile-nav-toggle {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .docs-stage {
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }

  html {
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
    padding-top: 68px;
  }

  body.mobile-nav-open {
    overflow: hidden;
  }

  .navbar .nav-icon-btn,
  .navbar .navbar-signin,
  .navbar .mobile-nav-toggle,
  .navbar .navbar-support-btn,
  .navbar .navbar-affiliates-btn,
  .navbar .navbar-currency-btn {
    min-height: 44px;
    box-sizing: border-box;
  }

  .navbar .nav-icon-btn {
    min-width: 44px;
    justify-content: center;
  }

  .navbar {
    padding: 12px 12px;
  }

  .navbar-inner {
    max-width: calc(100vw - 24px);
    padding: 0 12px;
    height: 48px;
    min-height: 48px;
  }

  .navbar-logo {
    margin-right: auto;
  }

  .navbar-links,
  .navbar-search-wrap,
  .navbar-currency-wrap,
  .navbar-support-wrap,
  .navbar-affiliates-wrap,
  .navbar-actions .nav-divider,
  .navbar-actions .discord-btn {
    display: none !important;
  }

  .navbar-actions {
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .navbar-actions #cartBtn {
    order: 1;
  }

  .navbar-actions .navbar-signin {
    order: 2;
  }

  .navbar-actions .mobile-nav-toggle {
    order: 3;
  }

  .mobile-nav-toggle {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
  }

  body.mobile-nav-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #0e0e0e;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 9991;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.mobile-nav-open .mobile-nav-drawer {
    transform: translateX(0);
    pointer-events: auto;
  }

  .mobile-nav-drawer__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-shrink: 0;
  }

  .mobile-nav-drawer__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }

  .mobile-nav-drawer__logo img {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
  }

  .mobile-nav-drawer__close {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .mobile-nav-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-nav-drawer__link {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    background: transparent;
    border: none;
    text-align: left;
    display: block;
    width: 100%;
    text-decoration: none;
    font-family: var(--font-sans);
    box-sizing: border-box;
    cursor: pointer;
    min-height: 44px;
    line-height: 1.3;
    transition: background 150ms ease;
  }

  .mobile-nav-drawer__link:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-nav-drawer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 8px 0;
    flex-shrink: 0;
  }

  .mobile-nav-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-nav-drawer__action,
  .mobile-nav-drawer__action.mobile-nav-drawer__action--link {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    font-family: var(--font-sans);
    box-sizing: border-box;
    cursor: pointer;
    min-height: 44px;
    text-decoration: none;
    transition: background 150ms ease;
  }

  .mobile-nav-drawer__action:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-nav-drawer__footer {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
  }

  .mobile-nav-drawer__signin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 10px;
    background: var(--color-accent);
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-sans);
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
  }

  .mobile-nav-drawer__copy {
    margin: 0;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.38);
    text-align: center;
    line-height: 1.45;
  }

  .hero {
    padding: 32px 24px 48px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    max-width: none;
  }

  .hero-right {
    display: none !important;
  }

  .hero-left {
    padding: 0;
    text-align: left;
  }

  .hero-heading {
    font-size: clamp(26px, 7vw, 36px);
  }

  .hero-bullets li {
    font-size: 13px;
  }

  .hero-ctas {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline,
  .hero-ctas .hero-browse-btn {
    flex: 1;
    min-width: 0;
    min-height: 44px;
    justify-content: center;
  }

  .filter-games {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .filter-games::-webkit-scrollbar {
    display: none;
  }

  .filter-games .pill,
  .filter-games .game-filter {
    flex-shrink: 0;
    min-height: 44px;
    box-sizing: border-box;
  }

  .filter-selects {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .filter-selects .custom-select {
    width: 100%;
    min-width: 0;
  }

  .filter-selects .select-trigger {
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
  }

  .products-section {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .product-grid,
  .product-related-grid {
    grid-template-columns: 1fr !important;
  }

  .why-imperium {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .why-stats-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .why-stat-divider {
    width: 100%;
    height: 1px;
    margin: 12px 0;
    background: rgba(255, 255, 255, 0.07);
    align-self: stretch;
  }

  .why-imperium__bento {
    grid-template-columns: 1fr;
  }

  .why-card--featured {
    grid-row: auto;
    min-height: 280px;
  }

  .why-imperium__right {
    grid-template-columns: 1fr;
  }

  .why-card {
    width: 100%;
  }

  .home-how-it-works {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .home-how-it-works__track {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .home-how-it-works__arrow {
    display: none !important;
  }

  .home-how-it-works__card {
    width: 100%;
    max-width: none;
  }

  .home-affiliates,
  .home-faq {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .home-affiliates__bento {
    grid-template-columns: 1fr !important;
  }

  .home-affiliates__intro,
  .home-affiliates__col-right,
  .home-affiliates__card {
    width: 100%;
    max-width: none;
  }

  .home-faq__list {
    width: 100%;
  }

  .home-cta-banner__outer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-cta-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 32px 24px;
    gap: 24px;
  }

  .home-cta-banner__left,
  .home-cta-banner__right {
    width: 100%;
    align-items: center;
  }

  .home-cta-banner__left {
    text-align: center;
  }

  .home-cta-banner__btn,
  .home-cta-banner__btn--primary,
  .home-cta-banner__btn--ghost {
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    justify-content: center;
    box-sizing: border-box;
  }

  .home-cta-banner__right {
    flex-direction: column;
    gap: 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 40px 20px 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-main.legal-page,
  .page-main.docs-page {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .legal-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .legal-content {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .legal-section {
    width: 100%;
    box-sizing: border-box;
  }

  .status-content {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .status-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .status-label {
    font-size: 12px;
  }

  .docs-page-header,
  .docs-list-wrap,
  .docs-search-field-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .docs-product-list {
    width: 100%;
  }

  .docs-guide-mount {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
  }

  .docs-vector-step-card {
    max-width: 100%;
    box-sizing: border-box;
  }

  .product-page-shell {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .product-page-top {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .product-gallery-col {
    order: 1;
  }

  .product-info-col {
    order: 2;
  }

  .product-main-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .product-thumb-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .product-thumb-row::-webkit-scrollbar {
    display: none;
  }

  .product-thumb-btn {
    flex-shrink: 0;
  }

  .product-plan-row {
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
  }

  .product-purchase-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .product-btn-buy,
  .product-btn-add-cart {
    flex: 1 1 calc(50% - 5px);
    min-width: 140px;
    min-height: 44px;
  }

  .product-trust-badges {
    gap: 6px;
  }

  .product-trust-badge {
    padding: 6px 10px;
    font-size: 12px;
  }

  .product-tab-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
  }

  .product-tab-bar::-webkit-scrollbar {
    display: none;
  }

  .product-tab-btn {
    flex-shrink: 0;
    font-size: 12px;
    padding: 10px 14px;
    min-height: 44px;
    box-sizing: border-box;
  }

  .product-stat-pill__label {
    font-size: 12px;
  }

  .product-req-grid {
    grid-template-columns: 1fr;
  }

  #searchPanel {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 60px !important;
  }

  .search-section-label {
    font-size: 12px;
  }

  .pill.game-filter,
  .filter-pill {
    min-height: 44px;
  }
}

@media (max-width: 400px) {
  .product-purchase-row {
    flex-direction: column;
  }

  .product-btn-buy,
  .product-btn-add-cart {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .products-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  #aiChatWidget .ai-chat-panel {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    right: 12px;
    bottom: 80px;
  }

  #aiChatWidget .ai-chat-toggle {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 500px) {
  #purchaseModalPanel {
    top: auto !important;
    bottom: 0 !important;
    left: 50% !important;
    right: auto !important;
    width: calc(100vw - 16px) !important;
    max-width: calc(100vw - 16px) !important;
    max-height: 95vh !important;
    border-radius: 14px 14px 0 0 !important;
    transform: translateX(-50%) translateY(100%) scale(1) !important;
  }

  #purchaseModalPanel.is-open {
    transform: translateX(-50%) translateY(0) scale(1) !important;
  }

}

/* ── 404 page ── */
.page-main.page-404 {
  max-width: none;
  margin: 0;
  padding: 0 24px 48px;
  box-sizing: border-box;
}

.page-404__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 80px);
  text-align: center;
  padding: 32px;
  gap: 0;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 400ms ease, transform 400ms ease;
  transition-delay: 100ms;
}

.page-404__inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-404__num {
  margin: 0 0 0;
  font-family: var(--font-mono);
  font-size: clamp(100px, 18vw, 180px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.07);
  user-select: none;
  pointer-events: none;
}

.page-404__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 24px;
  color: rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
}

.page-404__title {
  margin: 0 0 10px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.page-404__subtitle {
  margin: 0 auto 32px;
  max-width: 380px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
}

.page-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.page-404__btn {
  height: 40px;
  padding: 0 24px;
  border-radius: 9px;
  font-size: 14px;
  box-sizing: border-box;
}

.page-404 .page-404__btn.btn-primary {
  height: 40px;
  font-weight: 600;
  border-radius: 9px;
  font-size: 14px;
  padding: 0 24px;
}

.page-404 .page-404__btn.btn-outline {
  height: 40px;
  font-weight: 400;
  border-radius: 9px;
  font-size: 14px;
  padding: 0 24px;
}

.page-404__btn--discord {
  height: 40px;
  padding: 0 24px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--font-sans);
  letter-spacing: -0.01em;
  color: #8b9cf4;
  background: rgba(88, 101, 242, 0.06);
  border: 1px solid rgba(88, 101, 242, 0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease, border-color 150ms ease, transform 100ms ease, color 150ms ease;
}

.page-404__btn--discord:hover {
  background: rgba(88, 101, 242, 0.12);
  border-color: rgba(88, 101, 242, 0.45);
  transform: translateY(-1px);
  color: #a5b4fc;
}

.page-404__btn--discord:active {
  transform: translateY(0);
}

.page-404__links-label {
  margin: 32px 0 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.page-404__links-row {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
}

.page-404__quick-link {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 150ms ease;
}

.page-404__quick-link:hover {
  color: #ffffff;
}

.page-404__links-sep {
  color: rgba(255, 255, 255, 0.22);
  user-select: none;
}

/* ── Sales notification popup (index + product) ── */
.sales-notify {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 9000;
  width: 284px;
  max-width: calc(100vw - 48px);
  background: linear-gradient(145deg, #151517 0%, #121212 50%, #0e0e10 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  padding: 12px 14px;
  /* Fixed inset — % padding uses viewport width for position:fixed and was blowing out layout */
  padding-right: 112px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
}

.sales-notify::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse 70% 55% at 100% 0%, rgba(20, 90, 70, 0.14), transparent 60%);
}

.sales-notify.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.sales-notify.is-exiting {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 200ms ease-in, transform 200ms ease-in;
}

.sales-notify__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  align-items: flex-start;
  text-align: left;
}

.sales-notify__top {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-sans);
  line-height: 1.45;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: normal;
}

.sales-notify__flag {
  font-family: "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", emoji, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-variant-emoji: emoji;
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  vertical-align: -0.05em;
  margin: 0 1px;
}

.sales-notify__name {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.sales-notify__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  flex-wrap: nowrap;
  max-width: 100%;
}

.sales-notify__time {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.32);
  white-space: nowrap;
  flex-shrink: 0;
}

.sales-notify__meta-sep {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.28);
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
}

.sales-notify__pay {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: #4ade80;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.sales-notify__watermark {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  /* Fixed-width strip: % height on <img> is unreliable with height:auto + top/bottom; fill strip explicitly */
  width: min(46%, 126px);
  height: 100%;
  margin: 0;
  padding: 0;
  display: block;
  border: none;
  object-fit: cover;
  object-position: right center;
  pointer-events: none;
  user-select: none;
  filter: grayscale(0.28) brightness(0.72) contrast(1.02);
  opacity: 0.58;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 14%, rgba(0, 0, 0, 0.85) 32%, black 48%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 14%, rgba(0, 0, 0, 0.85) 32%, black 48%);
}
