@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 100 700;
  font-display: block;
  src: local("");
}

@keyframes heroLogoFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hero-logo-float {
  animation: heroLogoFloat 4s ease-in-out infinite;
}

.sort-active {
  border-color: rgba(37, 123, 244, 0.70) !important;
  color: #257bf4 !important;
  background: rgba(37, 123, 244, 0.10) !important;
}

:root {
  --glass-bg: rgba(35, 35, 40, 0.85);
  --glass-bg-light: rgba(35, 35, 40, 0.6);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-light: rgba(255, 255, 255, 0.08);
  --glass-border-strong: rgba(255, 255, 255, 0.20);
  --glass-item-bg: rgba(255, 255, 255, 0.08);
  --glass-item-bg-hover: rgba(255, 255, 255, 0.12);
  --glass-badge-bg: rgba(255, 255, 255, 0.12);
  --glass-badge-border: rgba(255, 255, 255, 0.25);
  --shadow-panel: 0 4px 20px rgba(0, 0, 0, 0.6);
  --shadow-panel-hover: 0 8px 32px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 20px rgba(37, 123, 244, 0.35);
  --shadow-glow-hover: 0 0 35px rgba(37, 123, 244, 0.55);
  --ease-westerdam: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius-panel: 14px;
  --radius-item: 10px;
  --radius-badge: 8px;
  --color-primary: #257bf4;
  --color-primary-dark: #1a5bb5;
  --color-green: #10b981;
  --color-bg: #18181b;
  --color-surface: #1e1e22;
}

* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
  background: var(--glass-border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--glass-border-strong);
}

html {
  scroll-behavior: smooth;
}

body {
  opacity: 0;
  transition: opacity 0.15s ease-in;
  background: var(--color-bg);
}

body.ready {
  opacity: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(37, 123, 244, 0.3);
  }

  50% {
    box-shadow: 0 0 30px rgba(37, 123, 244, 0.6);
  }
}

@keyframes skeleton-loading {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: calc(200px + 100%) 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes ping-slow {

  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.93);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(74, 222, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

@keyframes heroGlow {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.65;
    transform: scale(1.04);
  }
}

@keyframes scanline {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100vh);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s var(--ease-westerdam) forwards;
  opacity: 0;
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-scale-in {
  animation: scaleIn 0.5s var(--ease-westerdam) forwards;
  opacity: 0;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s var(--ease-westerdam) forwards;
  opacity: 0;
}

.animate-gradient-text {
  background-size: 200% auto;
  animation: gradientShift 4s ease infinite;
}

.stagger-1 {
  animation-delay: 0.1s;
}

.stagger-2 {
  animation-delay: 0.2s;
}

.stagger-3 {
  animation-delay: 0.3s;
}

.stagger-4 {
  animation-delay: 0.4s;
}

.stagger-5 {
  animation-delay: 0.5s;
}

.stagger-6 {
  animation-delay: 0.6s;
}

.status-dot {
  animation: pulse-green 2s infinite;
}

.observe-animate {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease-westerdam),
    transform 0.6s var(--ease-westerdam);
}

.observe-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.observe-animate.stagger-1 {
  transition-delay: 0.08s;
}

.observe-animate.stagger-2 {
  transition-delay: 0.16s;
}

.observe-animate.stagger-3 {
  transition-delay: 0.24s;
}

.observe-animate.stagger-4 {
  transition-delay: 0.32s;
}

.observe-animate.stagger-5 {
  transition-delay: 0.4s;
}

.observe-animate.stagger-6 {
  transition-delay: 0.48s;
}

.skeleton {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.04) 25%,
      rgba(255, 255, 255, 0.08) 50%,
      rgba(255, 255, 255, 0.04) 75%);
  background-size: 200px 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0.5rem;
}

.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    transform 0.3s var(--ease-westerdam),
    box-shadow 0.3s var(--ease-westerdam);
}

.glass-panel:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-panel-hover);
}

.glass-item {
  background: var(--glass-item-bg);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-item);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.glass-item:hover {
  background: var(--glass-item-bg-hover);
}

.glass-badge {
  background: var(--glass-badge-bg);
  border: 1px solid var(--glass-badge-border);
  border-radius: var(--radius-badge);
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.code-syntax-keyword {
  color: #ff7b72;
}

.code-syntax-string {
  color: #a5d6ff;
}

.code-syntax-function {
  color: #d2a8ff;
}

.code-syntax-comment {
  color: #8b949e;
  font-style: italic;
}

.code-syntax-number {
  color: #79c0ff;
}

.cart-notification {
  position: fixed;
  top: 80px;
  right: 20px;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.3s var(--ease-westerdam);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-notification.show {
  transform: translateX(0);
}

.cart-notification-success {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.cart-notification-error {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.new-customer-offer {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 55;
  width: min(326px, calc(100vw - 28px));
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease-westerdam),
    transform 0.35s var(--ease-westerdam);
}

.new-customer-offer.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.new-customer-offer__shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-panel);
  background:
    linear-gradient(145deg, rgba(35, 35, 40, 0.96), rgba(19, 25, 36, 0.98)),
    rgba(35, 35, 40, 0.96);
  border: 1px solid rgba(37, 123, 244, 0.32);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.54),
    0 0 30px rgba(37, 123, 244, 0.16);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 15px;
}

.new-customer-offer__shell::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 123, 244, 0.85), rgba(16, 185, 129, 0.65), transparent);
  pointer-events: none;
}

.new-customer-offer__shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.4;
  pointer-events: none;
}

.new-customer-offer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.new-customer-offer__close:hover,
.new-customer-offer__close:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.new-customer-offer__close .material-symbols-outlined {
  font-size: 17px;
}

.new-customer-offer__header,
.new-customer-offer__copy,
.new-customer-offer__code,
.new-customer-offer__actions {
  position: relative;
  z-index: 2;
}

.new-customer-offer__header {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-right: 36px;
  margin-bottom: 12px;
}

.new-customer-offer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 11px;
  color: #257bf4;
  background: rgba(37, 123, 244, 0.12);
  border: 1px solid rgba(37, 123, 244, 0.30);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.new-customer-offer__icon .material-symbols-outlined {
  font-size: 23px;
}

.new-customer-offer__headline {
  min-width: 0;
}

.new-customer-offer__eyebrow {
  display: block;
  margin-bottom: 3px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #257bf4;
  text-transform: uppercase;
}

.new-customer-offer__headline h3 {
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.new-customer-offer__copy {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 500;
  max-width: 280px;
}

.new-customer-offer__code {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 60px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(37, 123, 244, 0.42);
  background:
    linear-gradient(180deg, rgba(37,123,244,0.08), rgba(8,12,19,0.76)),
    rgba(8, 12, 19, 0.70);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 20px rgba(37,123,244,0.08);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.new-customer-offer__code:hover,
.new-customer-offer__code:focus-visible {
  border-color: rgba(37, 123, 244, 0.65);
  background: rgba(10, 15, 25, 0.82);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 12px 28px rgba(37, 123, 244, 0.14);
}

.new-customer-offer__code-label {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9.5px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.new-customer-offer__code-value {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(16px, 4.5vw, 21px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.new-customer-offer__copy-icon {
  grid-row: 1 / span 2;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: #fff;
  background: #257bf4;
  box-shadow: 0 0 18px rgba(37, 123, 244, 0.42);
  font-size: 18px;
}

.new-customer-offer__code.is-copied .new-customer-offer__copy-icon {
  background: #10b981;
  box-shadow: 0 0 18px rgba(16, 185, 129, 0.42);
}

.new-customer-offer__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.new-customer-offer__terms {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10.75px;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .new-customer-offer {
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    width: min(326px, calc(100vw - 20px));
  }

  .new-customer-offer__shell {
    padding: 11px;
  }

  .new-customer-offer__header {
    gap: 9px;
    padding-right: 32px;
    margin-bottom: 8px;
  }

  .new-customer-offer__icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 10px;
  }

  .new-customer-offer__icon .material-symbols-outlined {
    font-size: 21px;
  }

  .new-customer-offer__eyebrow {
    font-size: 8.5px;
  }

  .new-customer-offer__headline h3 {
    font-size: 15px;
  }

  .new-customer-offer__copy {
    max-width: none;
    margin-bottom: 10px;
    font-size: 11.5px;
  }

  .new-customer-offer__code {
    min-height: 54px;
    padding: 9px 10px;
  }

  .new-customer-offer__code-value {
    font-size: 16px;
  }

  .new-customer-offer__copy-icon {
    width: 32px;
    height: 32px;
  }

  .new-customer-offer__actions {
    margin-top: 9px;
  }

  .new-customer-offer__terms {
    max-width: 230px;
    font-size: 9.75px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .new-customer-offer,
  .new-customer-offer__code {
    transition: none;
  }

  .hero-char {
    animation: none !important;
  }

  .hero-title-typed .hero-type-line {
    max-width: var(--type-width);
    border-right-color: transparent;
    animation: none !important;
  }
}

.cart-drawer.open {
  transform: translateX(0) !important;
}

.cart-overlay.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.cart-drawer {
  background: var(--glass-bg) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border-left: 1px solid var(--glass-border) !important;
}

.cart-item-row {
  background: var(--glass-item-bg);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-item);
  transition: background 0.2s ease;
}

.cart-item-row:hover {
  background: var(--glass-item-bg-hover);
}

.tebex-login-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tebex-login-modal.show {
  opacity: 1;
}

.tebex-login-modal-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  max-width: 420px;
  width: 90%;
  position: relative;
  box-shadow: var(--shadow-panel);
}

.tebex-login-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: all 0.2s;
}

.tebex-login-modal .modal-close:hover {
  background: var(--glass-item-bg);
  color: white;
}

.tebex-login-modal .modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tebex-login-modal .modal-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.tebex-login-modal .modal-header .material-symbols-outlined {
  color: #257bf4;
  font-size: 28px;
}

.tebex-login-modal .modal-body p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.tebex-login-modal .modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.tebex-login-modal .modal-footer .btn {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tebex-login-modal .modal-footer .btn-secondary {
  background: var(--glass-item-bg);
  border: 1px solid var(--glass-border);
  color: white;
  flex: 1;
}

.tebex-login-modal .modal-footer .btn-secondary:hover {
  background: var(--glass-item-bg-hover);
}

.tebex-login-modal .modal-footer .btn-primary {
  background: #257bf4;
  color: white;
  flex: 2;
}

.tebex-login-modal .modal-footer .btn-primary:hover {
  background: #1a6dd6;
  box-shadow: 0 0 20px rgba(37, 123, 244, 0.4);
}

.hero-glow {
  background: radial-gradient(circle at center,
      rgba(37, 123, 244, 0.12) 0%,
      transparent 70%);
}

.westerdam-card {
  background:
    linear-gradient(180deg, rgba(35, 35, 40, 0.92), rgba(22, 24, 31, 0.96)),
    rgba(35, 35, 40, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
  transition:
    transform 0.3s var(--ease-westerdam),
    box-shadow 0.3s var(--ease-westerdam),
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100%;
}

.westerdam-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,123,244,0.42), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.westerdam-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.56), 0 0 34px rgba(37,123,244,0.10);
  border-color: rgba(37, 123, 244, 0.26);
}

.westerdam-card:hover::before {
  opacity: 1;
}

.westerdam-card:hover .product-image {
  transform: scale(1.05);
}

.product-card-media {
  background: radial-gradient(circle at 50% 15%, rgba(37,123,244,0.10), rgba(24,24,27,0.96) 56%);
  aspect-ratio: 16 / 9;
}

.product-card-media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 34%),
    linear-gradient(to top, rgba(15,17,24,0.76) 0%, transparent 48%);
  pointer-events: none;
}

.product-image {
  transition: transform 0.5s var(--ease-westerdam);
}

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

.product-card-title {
  color: #fff;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 7px;
}

.product-card-summary {
  color: rgba(255,255,255,0.48);
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 500;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.product-card-price {
  min-width: 0;
}

.product-card-price .text-2xl {
  font-size: 1.35rem;
}

.product-card-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 9px;
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  flex-shrink: 0;
  overflow: hidden;
}

.westerdam-btn {
  background: #257bf4;
  border: 0;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(37, 123, 244, 0.30);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.westerdam-btn:hover {
  background: #1a6dd6;
  box-shadow: 0 0 28px rgba(37, 123, 244, 0.50);
  transform: translateY(-1px);
}

.discord-join-btn {
  background: #5865F2;
  box-shadow: 0 0 24px rgba(88, 101, 242, 0.35);
  transition: all 0.3s var(--ease-westerdam);
}

.discord-join-btn:hover {
  background: #4752c4;
  box-shadow: 0 0 40px rgba(88, 101, 242, 0.55);
  transform: translateY(-3px);
}

.btn-glow {
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
}

.btn-glow:hover {
  box-shadow: var(--shadow-glow-hover);
}

details>summary {
  list-style: none;
}

details>summary::-webkit-details-marker {
  display: none;
}

.faq-item {
  background: var(--glass-item-bg);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-item);
  overflow: hidden;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--glass-border);
}

.faq-item.faq-open {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--glass-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.westerdam-section-divider {
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      var(--glass-border),
      transparent);
}

.site-header-floating {
  background: var(--glass-bg) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--shadow-panel) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
}

#site-header {
  transition: box-shadow .3s ease, border-color .3s ease;
}

#site-header.header-scrolled {
  box-shadow: 0 8px 40px rgba(0,0,0,0.75), 0 0 0 1px rgba(37,123,244,0.10) !important;
  border-color: rgba(255,255,255,0.17) !important;
}

.nav-pill {
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
  color: rgba(255, 255, 255, 0.6);
}

.nav-pill:hover {
  background: var(--glass-item-bg);
  color: #fff;
  transform: translateY(-1px);
}

.nav-pill.active {
  background: var(--glass-item-bg-hover);
  color: #fff;
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--glass-item-bg);
  border: 1px solid var(--glass-border-light);
  color: rgba(255, 255, 255, 0.8);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
  cursor: pointer;
}

.icon-btn:hover {
  background: var(--glass-item-bg-hover);
  border-color: var(--glass-border);
  transform: translateY(-1px);
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  background: #257bf4;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  box-shadow: 0 0 20px rgba(37, 123, 244, 0.3);
}

.primary-btn:hover {
  background: #1a6dd6;
  box-shadow: 0 0 30px rgba(37, 123, 244, 0.5);
  transform: translateY(-1px);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: var(--glass-item-bg);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.ghost-btn:hover {
  background: var(--glass-item-bg-hover);
  border-color: var(--glass-border-strong);
  color: white;
  transform: translateY(-1px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 999px;
  background: rgba(37, 123, 244, 0.10);
  border: 1px solid rgba(37, 123, 244, 0.28);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #257bf4;
  box-shadow: 0 0 8px #257bf4;
  flex-shrink: 0;
  animation: pulse-blue 2.4s ease-in-out infinite;
}

.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-panel);
  transition:
    transform 0.3s var(--ease-westerdam),
    box-shadow 0.3s var(--ease-westerdam),
    border-color 0.3s ease;
  overflow: hidden;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-panel-hover);
  border-color: var(--glass-border-strong);
}

.stat-card {
  background: var(--glass-item-bg);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--radius-panel);
  transition:
    background 0.3s ease,
    transform 0.3s var(--ease-westerdam),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-3px);
  border-color: var(--glass-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: var(--glass-item-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-panel);
  margin: 0 auto 32px auto;
  transition:
    transform 0.3s var(--ease-westerdam),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.step-group:hover .step-circle {
  transform: translateY(-4px);
  border-color: var(--glass-border-strong);
  box-shadow: var(--shadow-panel-hover);
}

/* NEW STYLES: RIBBON & FRAMEWORKS & FEATURES & GALLERY */

.product-card-ribbon {
  position: absolute;
  top: 14px;
  right: -32px;
  background-color: var(--ribbon-color, #257bf4);
  color: #fff;
  padding: 4px 36px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transform: rotate(45deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 10;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.product-fw-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.10);
  white-space: nowrap;
}

.product-detail-fw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: monospace;
  font-size: 12px;
  color: white;
}

.fw-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
}

/* Framework specific text colors */
.fw-esx {
  color: #10b981;
}

.fw-qbcore {
  color: #257bf4;
}

.fw-qbox {
  color: #a855f7;
}

.fw-standalone {
  color: #94a3b8;
}

.highlighted-features-section {
  background:
    linear-gradient(180deg, rgba(35,35,40,0.86), rgba(24,26,33,0.88)),
    rgba(35, 35, 40, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(0,0,0,0.28);
}

.highlighted-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03), transparent 60%);
  pointer-events: none;
}

.highlighted-features-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.highlighted-features-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(37, 123, 244, 0.12);
  border: 1px solid rgba(37, 123, 244, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlighted-features-title {
  font-size: 18px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
}

.highlighted-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlighted-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
  animation: slideUpFade 0.5s ease-out forwards;
  opacity: 0;
}

.highlighted-feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.feature-card-emoji {
  font-size: 20px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.feature-card-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* Gallery Styles */
.product-gallery-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(37,123,244,0.10), transparent 55%),
    rgba(29, 31, 39, 1);
  border: 1px solid rgba(37, 123, 244, 0.14);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.42);
}

.product-gallery-single {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.gallery-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.gallery-slide img {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  object-fit: contain;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  opacity: 0;
}

.product-gallery-main:hover .gallery-arrow {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.gallery-arrow:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%) scale(1.1);
}

.gallery-arrow-prev {
  left: 16px;
}

.gallery-arrow-next {
  right: 16px;
}

.gallery-slide-counter {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(15, 17, 21, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 10;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 2px 2px;
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  width: 72px;
  height: 48px;
  border-radius: 8px;
  background: rgba(15, 17, 21, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.15s ease;
  position: relative;
  opacity: 0.55;
}

.gallery-thumb:hover {
  opacity: 0.85;
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.gallery-thumb.active {
  border-color: var(--color-primary);
  opacity: 1;
  box-shadow: 0 0 0 1px var(--color-primary), 0 4px 12px rgba(37, 123, 244, 0.25);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 12%, #000 18%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 12%, #000 18%, transparent 72%);
  pointer-events: none;
  z-index: -1;
}

.product-purchase-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(35,35,40,0.94), rgba(22,24,31,0.98)),
    rgba(35,35,40,0.86);
  border: 1px solid rgba(37,123,244,0.18);
  box-shadow: 0 16px 44px rgba(0,0,0,0.48), 0 0 34px rgba(37,123,244,0.10);
}

.product-purchase-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,123,244,0.78), transparent);
}

.product-purchase-card::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -54px;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(37,123,244,0.18), transparent 68%);
  pointer-events: none;
}

.product-purchase-brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 10px 6px 7px;
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 12px;
  font-weight: 900;
}

.product-purchase-brand img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.product-detail-price-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.product-detail-price {
  color: #fff;
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.product-detail-original-price {
  color: rgba(255,255,255,0.30);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.product-detail-sale-badge {
  margin-bottom: 5px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(37,123,244,0.14);
  border: 1px solid rgba(37,123,244,0.26);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.product-primary-action,
.product-secondary-action {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 11px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.product-primary-action {
  height: 48px;
  margin-bottom: 12px;
  color: #fff;
  background: #257bf4;
  box-shadow: 0 0 22px rgba(37,123,244,0.36);
}

.product-primary-action:hover {
  background: #1a6dd6;
  box-shadow: 0 0 32px rgba(37,123,244,0.52);
  transform: translateY(-1px);
}

.product-secondary-action {
  height: 44px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.11);
  font-size: 0.875rem;
}

.product-secondary-action:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-1px);
}

*:focus-visible {
  outline: 2px solid rgba(37, 123, 244, 0.7);
  outline-offset: 2px;
  border-radius: 4px;
}

main,
section,
div {
  max-width: 100%;
}

@media (max-width: 380px) {
  #mobile-menu .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 479px) {
  .cart-drawer {
    width: 100% !important;
  }
}

@media (max-width: 1023px) {
  .docs-main {
    padding: 1rem;
  }
}

/* ==========================================
   NEW HOMEPAGE DESIGN
   ========================================== */

@keyframes heroFloatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes heroFloatB {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -12px); }
}
@keyframes heroFloatMobile {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes heroFloatMobileCenter {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -7px); }
}
@keyframes heroTypeLineOne {
  0% {
    max-width: 0;
    border-right-color: rgba(255,255,255,0.82);
  }
  98% {
    border-right-color: rgba(255,255,255,0.82);
  }
  100% {
    max-width: var(--type-width);
    border-right-color: transparent;
  }
}
@keyframes heroTypeLineTwo {
  from { max-width: 0; }
  to { max-width: var(--type-width); }
}
@keyframes heroCaretBlink {
  0%, 46% { border-right-color: rgba(255,255,255,0.84); }
  47%, 100% { border-right-color: transparent; }
}
@keyframes pulse-blue {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

/* HERO */
.hero {
  position: relative;
  padding: 48px 0 88px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-main {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse 50% 60% at 70% 40%, rgba(37,123,244,0.18) 0%, transparent 65%);
  filter: blur(20px);
  animation: heroGlow 8s ease-in-out infinite;
}
.hero-glow-soft {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(168,85,247,0.06) 0%, transparent 70%);
  filter: blur(30px);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
}
.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(24,24,27,0.95) 100%);
}
.hero-layout {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
  min-height: 680px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(37,123,244,0.09));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.hero-eyebrow-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(37,123,244,0.38));
}
.hero-eyebrow-text {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  color: #fff;
}
.hero-eyebrow-text b {
  color: #257bf4;
  font-weight: 900;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 20px;
  text-align: left;
  color: #fff;
}
.hero h1 .hero-h1-line {
  display: block;
}
.hero-title-typed .hero-type-line {
  width: max-content;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  border-right: 0.08em solid transparent;
}
.hero-title-typed .hero-type-line-one {
  --type-width: 12ch;
}
.hero-title-typed .hero-type-line-two {
  --type-width: 10ch;
}
.hero-title-typed.is-visible .hero-type-line-one {
  animation: heroTypeLineOne 1.08s steps(12, end) 0.22s forwards;
}
.hero-title-typed.is-visible .hero-type-line-two {
  animation:
    heroTypeLineTwo 0.98s steps(10, end) 1.45s forwards,
    heroCaretBlink 0.82s steps(1, end) 1.45s 7;
}
.hero h1 .hero-accent {
  color: #257bf4;
  position: relative;
  display: inline-block;
}
.hero h1 .hero-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.18em;
  background: rgba(37, 123, 244, 0.22);
  z-index: -1;
  border-radius: 2px;
}
.hero-subtitle {
  max-width: 520px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 36px;
  text-align: left;
}
.hero-ctas {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-ctas .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #257bf4;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(37, 123, 244, 0.45);
  transition: all .2s;
  border: none;
  cursor: pointer;
}
.hero-ctas .btn-primary:hover {
  background: #1a6dd6;
  box-shadow: 0 0 40px rgba(37, 123, 244, 0.6);
  transform: translateY(-2px);
}
.hero-ctas .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all .2s;
}
.hero-ctas .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  transform: translateY(-2px);
}

/* HERO POINTS */
.hero-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 520px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-point {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  transition: background .25s, border-color .25s, transform .25s var(--ease-westerdam);
  position: relative;
  overflow: hidden;
}
.hero-point::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: currentColor;
  opacity: 0;
  transition: opacity .25s;
}
.hero-point:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateX(2px);
}
.hero-point:hover::before {
  opacity: .7;
}
.hero-point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  flex-shrink: 0;
}
.hero-point-icon .material-symbols-outlined {
  font-size: 24px;
}
.hero-point-icon.icon-blue {
  background: rgba(37, 123, 244, 0.10);
  border: 1px solid rgba(37, 123, 244, 0.22);
  color: #257bf4;
}
.hero-point-icon.icon-green {
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.22);
  color: #10b981;
}
.hero-point-icon.icon-amber {
  background: rgba(245, 158, 11, 0.10);
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: #f59e0b;
}
.hero-point-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}
.hero-point-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.hero-point-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  line-height: 1.45;
}

/* HERO STAGE */
.hero-stage {
  position: relative;
  height: 100%;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}
.hero-stage-floor {
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 120%;
  max-width: 780px;
  aspect-ratio: 2.4 / 1;
  background: radial-gradient(ellipse at center, rgba(37,123,244,0.32) 0%, rgba(37,123,244,0.08) 40%, transparent 75%);
  filter: blur(14px);
  pointer-events: none;
}
.hero-stage-ring {
  position: absolute;
  left: 50%;
  bottom: -2%;
  transform: translateX(-50%);
  width: 104%;
  max-width: 680px;
  aspect-ratio: 1.7 / 1;
  border: 1px solid rgba(37, 123, 244, 0.18);
  border-radius: 50%;
  mask-image: linear-gradient(180deg, transparent 0%, #000 55%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 55%, #000 100%);
  pointer-events: none;
}
.hero-stage-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.08);
  transform: scale(0.86);
}
.hero-stage-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(37, 123, 244, 0.10);
  transform: scale(1.14);
}
.hero-figure {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-char {
  position: absolute;
  height: auto;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,0.55));
}
.hero-char-left {
  left: -12%;
  width: 66%;
  bottom: -2%;
  z-index: 2;
  animation: heroFloatA 6.5s ease-in-out infinite;
}
.hero-char-center {
  left: 50%;
  transform: translateX(-50%);
  width: 74%;
  bottom: -6%;
  z-index: 3;
  animation: heroFloatB 7s ease-in-out infinite;
}
.hero-char-right {
  right: -12%;
  width: 66%;
  bottom: -2%;
  z-index: 2;
  animation: heroFloatA 6s ease-in-out infinite reverse;
}

/* SECTION LAYOUT */
.section-dark {
  background: rgba(28, 28, 32, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,123,244,0.4), transparent);
}
.section-pad {
  padding: 80px 0;
}
.section-pad-lg {
  padding: 112px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-label {
  margin-bottom: 20px;
}
.section-header h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -.035em;
  margin: 0 0 16px;
  line-height: 1.05;
}
.section-header h2 .accent {
  color: #257bf4;
  position: relative;
  display: inline-block;
}
.section-header h2 .accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.18em;
  background: rgba(37, 123, 244, 0.22);
  z-index: -1;
  border-radius: 2px;
}
.section-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.features-grid .feature-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 32px 28px 28px;
  transition: transform .35s var(--ease-westerdam), border-color .3s, background .3s;
  overflow: hidden;
  box-shadow: none;
}
.features-grid .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color, rgba(255,255,255,0.18)), transparent);
  opacity: .6;
}
.features-grid .feature-card::after {
  content: '';
  position: absolute;
  top: -1px;
  right: 24px;
  width: 60px;
  height: 1px;
  background: var(--accent-color);
  opacity: 0;
  transition: opacity .35s;
}
.features-grid .feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  box-shadow: none;
}
.features-grid .feature-card:hover::after {
  opacity: 1;
}
.feature-card.feature-blue { --accent-color: #257bf4; }
.feature-card.feature-purple { --accent-color: #c084fc; }
.feature-card.feature-green { --accent-color: #10b981; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.feature-card.feature-blue .feature-icon {
  background: rgba(37, 123, 244, 0.12);
  border: 1px solid rgba(37, 123, 244, 0.28);
}
.feature-card.feature-blue .feature-icon .material-symbols-outlined {
  font-size: 28px;
  color: #257bf4;
}
.feature-card.feature-purple .feature-icon {
  background: rgba(192, 132, 252, 0.12);
  border: 1px solid rgba(192, 132, 252, 0.28);
}
.feature-card.feature-purple .feature-icon .material-symbols-outlined {
  font-size: 28px;
  color: #c084fc;
}
.feature-card.feature-green .feature-icon {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
}
.feature-card.feature-green .feature-icon .material-symbols-outlined {
  font-size: 28px;
  color: #10b981;
}
.features-grid .feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.015em;
  color: #fff;
}
.features-grid .feature-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

/* STATS SECTION (Why Choose) */
.stats-section {
  background: rgba(24, 24, 28, 0.99);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(37,123,244,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
.stats-section .stat-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  cursor: default;
  transition: background .3s, transform .3s var(--ease-westerdam), border-color .3s;
  overflow: hidden;
  position: relative;
}
.stats-section .stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 50% 0%, rgba(37,123,244,0.10) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.stats-section .stat-card:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  transform: translateY(-4px);
  border-color: rgba(37, 123, 244, 0.28);
  box-shadow: none;
}
.stats-section .stat-card:hover::before {
  opacity: 1;
}
.stat-number {
  font-size: clamp(2.4rem, 4.8vw, 3.4rem);
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -.04em;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

/* PAGE HERO (Store / Bundles / etc) */
.page-hero {
  padding: 56px 0 40px;
  position: relative;
}
.page-hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  margin: 16px 0 0;
}

/* SUPPORT CARDS */
.support-card {
  background: rgba(35,35,40,0.8);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .35s var(--ease-westerdam), box-shadow .3s, border-color .3s;
}
.support-card:hover {
  transform: translateY(-4px);
}
.support-card.card-discord:hover {
  box-shadow: 0 12px 40px rgba(88,101,242,0.18);
  border-color: rgba(88,101,242,0.30);
}
.support-card.card-ai:hover {
  box-shadow: 0 12px 40px rgba(16,185,129,0.12);
  border-color: rgba(16,185,129,0.25);
}

/* QUICK START (Steps) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
.steps-grid .step {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    rgba(35,35,40,0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 30px 26px 28px;
  text-align: left;
  transition: transform .35s var(--ease-westerdam), border-color .3s, background .3s;
  z-index: 1;
  overflow: hidden;
}
.steps-grid .step:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 123, 244, 0.25);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
}
.steps-grid .step-num {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  color: rgba(255,255,255,0.74);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
}
.steps-grid .step .step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(37, 123, 244, 0.10);
  border: 1px solid rgba(37, 123, 244, 0.25);
  box-shadow: 0 4px 16px rgba(37, 123, 244, 0.12);
  margin: 0 0 24px;
  transition: transform .3s, box-shadow .3s, background .3s;
}
.steps-grid .step .step-circle .material-symbols-outlined {
  font-size: 30px;
  color: #257bf4;
}
.steps-grid .step:hover .step-circle {
  transform: scale(1.05);
  background: rgba(37, 123, 244, 0.15);
  box-shadow: 0 6px 20px rgba(37, 123, 244, 0.22);
}
.steps-grid .step h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.015em;
  color: #fff;
}
.steps-grid .step p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  font-weight: 500;
  max-width: 260px;
  margin: 0;
}

/* RESPONSIVE NEW HOMEPAGE */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 0.85fr 1.15fr; gap: 16px; min-height: 600px; }
  .hero-stage { min-height: 600px; }
}
@media (max-width: 1024px) {
  .hero { padding: 12px 0 64px; }
  .hero-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-height: auto;
    position: relative;
  }
  .hero-copy {
    order: 2;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5;
    width: 100%;
    padding-top: 0;
  }
  .hero h1, .hero-subtitle { text-align: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; margin-bottom: 28px; }
  .hero-ctas { justify-content: center; width: 100%; margin-bottom: 32px; }
  .hero-points { margin: 0 auto; max-width: 640px; }
  .hero-stage {
    order: 1;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: min(100%, 780px);
    max-width: 100%;
    height: clamp(340px, 42vw, 430px);
    min-height: 0;
    margin: 0 auto -24px;
    display: block;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0,0,0,0.56) 78%, transparent 97%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0,0,0,0.56) 78%, transparent 97%);
    opacity: .9;
  }
  .hero-stage-floor, .hero-stage-ring { display: none; }
  .hero-figure {
    position: absolute;
    inset: 0;
    display: block;
  }
  .hero-char {
    position: absolute;
    max-width: none;
    animation: none;
  }
  .hero-char-left {
    display: block;
    left: 9%;
    width: 29%;
    bottom: 13%;
    z-index: 2;
    animation: heroFloatMobile 5.8s ease-in-out infinite;
  }
  .hero-char-center {
    display: block;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
    width: 34%;
    bottom: 8%;
    z-index: 4;
    animation: heroFloatMobileCenter 6.2s ease-in-out infinite;
  }
  .hero-char-right {
    display: block;
    right: 9%;
    left: auto;
    width: 29%;
    bottom: 13%;
    z-index: 3;
    animation: heroFloatMobile 6s ease-in-out infinite reverse;
  }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero { padding: 0 0 56px; }
  .hero-layout { width: 100%; }
  .hero-stage {
    width: min(100%, 680px);
    height: clamp(300px, 50vw, 370px);
    margin-bottom: -20px;
    opacity: .92;
  }
  .hero-char-left { left: 3%; width: 33%; bottom: 12%; }
  .hero-char-center { width: 39%; bottom: 5%; }
  .hero-char-right { right: 3%; width: 33%; bottom: 12%; }
  .features-grid, .stats-grid, .steps-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  .hero-stage { height: clamp(225px, 60vw, 310px); }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .hero-point { padding: 14px 16px; }
  .hero-point-icon { width: 40px; height: 40px; }
}
@media (max-width: 480px) {
  .hero-stage { height: clamp(210px, 64vw, 270px); }
  .hero-char-left { left: -3%; width: 37%; bottom: 15%; }
  .hero-char-center { width: 43%; bottom: 7%; }
  .hero-char-right { right: -3%; width: 37%; bottom: 15%; }
}

/* Payment Methods */
.payments {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payments__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.payments__label .material-symbols-outlined {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.payments__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.payment-pill {
  width: 52px;
  height: 34px;
  border-radius: 9px;
  background: var(--glass-item-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  border: 1px solid var(--glass-border-light);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.payment-pill img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.payment-pill:hover {
  background: var(--glass-item-bg-hover);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}
/* Apple Pay: black-on-white logo, invert for proper dark-mode rendering */
.payment-pill--applepay img { filter: invert(1); }
/* Paysafecard: white overlay applied directly on the logo image */
.payment-pill--paysafecard img {
  filter: brightness(0) invert(1);
  opacity: 0.70;
}
/* Bigger logos inside the pill — reduced padding so image fills more space */
.payment-pill--lg { padding: 3px 5px; }
/* Zoom logos 18% larger within the pill (for Klarna, Afterpay, Paysafecard in footer + pay-later) */
.payment-pill--zoom img {
  transform: scale(1.18);
}
.payment-pill--more {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  width: auto;
  min-width: 58px;
  padding: 0 12px;
}
.payment-pill--more:hover {
  color: #fff;
}
@media (max-width: 480px) {
  .payment-pill { width: 46px; height: 30px; padding: 5px 7px; border-radius: 8px; }
}

/* Pay later (Klarna/Afterpay) on product page */
.pay-later {
  margin: 12px 0 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.pay-later__icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 123, 244, 0.14);
  border: 1px solid rgba(37, 123, 244, 0.28);
  color: #82b1ff;
  flex-shrink: 0;
}
.pay-later__icon .material-symbols-outlined { font-size: 16px; }
.pay-later__text {
  font-size: 12.5px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
  min-width: 0;
  font-weight: 500;
}
.pay-later__text strong { color: rgba(255, 255, 255, 0.95); font-weight: 700; }
.pay-later__logos {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.pay-later__logo {
  height: 34px;
  width: 72px;
  border-radius: 8px;
  background: var(--glass-item-bg);
  border: 1px solid var(--glass-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.pay-later__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform: scale(1.18);
}
@media (max-width: 380px) {
  .pay-later { flex-wrap: wrap; }
  .pay-later__text { font-size: 12px; }
}
