:root {
  --bg-1: #050309;
  --bg-2: #0b0713;
  --bg-3: #1b0d2a;
  --surface: rgba(24, 16, 36, 0.78);
  --surface-strong: rgba(18, 11, 28, 0.9);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text-main: #f8f7ff;
  --text-muted: #b5acc6;
  --text-soft: #8d85a1;
  --pink: #ec4899;
  --pink-soft: rgba(236, 72, 153, 0.12);
  --purple: #9333ea;
  --purple-soft: rgba(147, 51, 234, 0.12);
  --deep-purple: #581c87;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 30px;
  --container: 1240px;
  --panel-blur: 26px;
  --panel-saturate: 165%;
  --font-display: "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "Inter", sans-serif;
  --product-page-card-height: clamp(40rem, 76vh, 48rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text-main);
  background-color: #07040c;
  background:
    radial-gradient(circle at 14% 8%, rgba(217, 70, 239, 0.18), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(126, 34, 206, 0.16), transparent 24%),
    radial-gradient(circle at 50% 78%, rgba(88, 28, 135, 0.2), transparent 28%),
    linear-gradient(180deg, #0d0713 0%, #07040c 46%, #030207 100%);
  font-family: var(--font-body);
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.45), transparent 76%);
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
}

.site-body {
  position: relative;
  isolation: isolate;
}

.ambient-background {
  pointer-events: none;
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.site-header,
.page-main,
.site-footer {
  position: relative;
  z-index: 1;
}

a,
button,
.filter-chip,
.mobile-toggle,
.mobile-nav a {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.ambient-grid {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 44rem;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 124px 124px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 82%);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  animation: drift 20s ease-in-out infinite;
}

.orb-pink {
  left: -8%;
  top: 6rem;
  width: 19rem;
  height: 19rem;
  background: rgba(217, 70, 239, 0.16);
}

.orb-purple {
  right: -8%;
  top: 10rem;
  width: 22rem;
  height: 22rem;
  background: rgba(126, 34, 206, 0.18);
  animation-duration: 24s;
}

.orb-deep {
  left: 34%;
  bottom: 2rem;
  width: 18rem;
  height: 18rem;
  background: rgba(88, 28, 135, 0.26);
  animation-duration: 26s;
}

.streak {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0.66;
  animation: streak 12s linear infinite;
}

.streak-pink {
  top: 9rem;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.72), transparent);
}

.streak-purple {
  top: 14rem;
  background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.66), transparent);
  animation-duration: 16s;
}

.container {
  width: min(calc(100% - 1.5rem), var(--container));
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.page-main {
  padding-top: 1.25rem;
}

.product-page .page-main {
  padding-top: 0.85rem;
}

.hero.section {
  padding-top: 1rem;
}

.product-page .section {
  padding-top: 1.5rem;
}

#faq,
#contact,
#products {
  scroll-margin-top: 7rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.75rem 0 0;
}

.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.75rem;
  border-radius: 999px;
  padding: 0.95rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo {
  max-width: min(11.5rem, 42vw);
}

.brand-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem 1.4rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.32rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.lang-switch-button {
  min-width: 3rem;
  min-height: 2.5rem;
  padding: 0.65rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.lang-switch-button:hover {
  color: var(--text-main);
}

.lang-switch-button.is-active {
  color: #fff;
  background: linear-gradient(90deg, #ec4899 0%, #f472b6 48%, #6d28d9 100%);
  box-shadow: 0 10px 24px rgba(236, 72, 153, 0.22);
}

.desktop-lang-switch {
  display: none;
}

.mobile-lang-switch {
  justify-self: stretch;
  width: 100%;
  margin-top: 0.25rem;
}

.mobile-lang-switch .lang-switch-button {
  flex: 1 1 50%;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--text-muted);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--text-main);
}

.mobile-toggle {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.26rem;
  color: var(--text-main);
  flex-shrink: 0;
}

.mobile-toggle span {
  width: 1rem;
  height: 1px;
  background: currentColor;
}

.mobile-nav {
  display: grid;
  gap: 0.7rem;
  position: absolute;
  inset-inline: 0.4rem;
  top: calc(100% + 0.75rem);
  border-radius: 1.5rem;
  padding: 0.85rem;
  background: linear-gradient(180deg, rgba(28, 18, 42, 0.98), rgba(10, 6, 17, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -0.45rem, 0) scale(0.985);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0s;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav a:hover {
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.24);
}

.glass-panel,
.glass-panel-strong {
  border: 1px solid var(--border);
  -webkit-backdrop-filter: blur(var(--panel-blur)) saturate(var(--panel-saturate));
  backdrop-filter: blur(var(--panel-blur)) saturate(var(--panel-saturate));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.glass-panel {
  background: linear-gradient(180deg, rgba(28, 19, 42, 0.78), rgba(10, 7, 18, 0.9));
}

.glass-panel-strong {
  background: linear-gradient(180deg, rgba(33, 22, 49, 0.92), rgba(11, 8, 19, 0.98));
  border-color: var(--border-strong);
}

.neon-frame {
  position: relative;
}

.neon-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.7),
    rgba(147, 51, 234, 0.5),
    rgba(88, 28, 135, 0.58)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.spotlight-card {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 18px 48px rgba(0, 0, 0, 0.34),
    0 0 52px rgba(217, 70, 239, 0.11);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  touch-action: manipulation;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(90deg, #ec4899 0%, #f472b6 48%, #6d28d9 100%);
  box-shadow: 0 16px 34px rgba(236, 72, 153, 0.22);
}

.button-primary:hover {
  box-shadow: 0 20px 42px rgba(236, 72, 153, 0.28);
}

.button-secondary {
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: rgba(236, 72, 153, 0.34);
  color: #ffd8f1;
}

.button-compact,
.button-small {
  min-height: auto;
  padding: 0.75rem 1.1rem;
}

.desktop-cta {
  display: none !important;
}

.accent-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(249, 168, 212, 1), rgba(147, 51, 234, 1));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(236, 72, 153, 0.35);
}

.eyebrow-pill,
.section-pill,
.badge,
.platform-pill,
.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  line-height: 1;
}

.eyebrow-pill {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(236, 72, 153, 0.2);
  background: rgba(236, 72, 153, 0.08);
  color: #f6c5e4;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
}

.display-title,
.section-title,
.product-title,
.brand,
.footer-brand-mark {
  font-family: var(--font-display);
}

.display-title,
.section-title,
.product-title {
  text-wrap: balance;
}

.display-title {
  margin: 1.2rem 0 0;
  max-width: 7ch;
  font-size: clamp(2.85rem, 6vw, 4.95rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-transform: none;
}

.text-glow {
  text-shadow:
    0 0 18px rgba(217, 70, 239, 0.18),
    0 0 36px rgba(147, 51, 234, 0.18);
}

.hero-grid,
.product-dashboard,
.footer-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.4rem);
}

.hero-grid > *,
.product-dashboard > *,
.footer-grid > * {
  min-width: 0;
}

.hero-copy,
.hero-showcase,
.section-copy,
.product-visual {
  position: relative;
}

.hero-description,
.section-description,
.feature-card p,
.faq-item p,
.product-description,
.product-copy p,
.mini-product-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-description {
  max-width: 34rem;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.stats-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.stat-card {
  border-radius: 1.5rem;
  padding: 1.15rem 1rem;
}

.stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: -0.04em;
  text-transform: none;
}

.stat-card span,
.micro-label,
.section-eyebrow,
.footer-heading {
  display: block;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.stat-card span,
.micro-label {
  margin-top: 0.55rem;
  font-size: 0.72rem;
  color: var(--text-soft);
}

.section-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  color: #f4a5d7;
}

.section-eyebrow.alt,
.footer-heading.alt {
  color: #d9b4ff;
}

.hero-showcase {
  align-self: start;
  border-radius: 2rem;
  padding: 1rem;
}

.showcase-main-card,
.product-card,
.showcase-image-wrap,
.product-media,
.product-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 1.65rem;
}

.showcase-image-wrap {
  aspect-ratio: 16 / 11;
}

.showcase-image,
.product-media img,
.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover .product-media img,
.showcase-main-card:hover .showcase-image,
.product-visual:hover .product-hero-image img {
  transform: scale(1.04);
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 4, 10, 0.08), rgba(5, 4, 10, 0.9));
}

.badge-row {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.62rem 0.82rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.badge-pink {
  border: 1px solid rgba(236, 72, 153, 0.3);
  background: rgba(236, 72, 153, 0.1);
  color: #f7b4d8;
}

.badge-purple {
  border: 1px solid rgba(168, 85, 247, 0.28);
  background: rgba(168, 85, 247, 0.1);
  color: #ead6ff;
}

.showcase-copy {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.showcase-copy h2,
.product-copy h3,
.feature-card h3,
.faq-item summary,
.mini-product-card h3 {
  margin: 0;
}

.showcase-copy h2 {
  max-width: 16ch;
  font-size: 1.5rem;
  line-height: 1.2;
}

.price-block {
  text-align: right;
}

.price-block strong,
.price-row strong {
  font-variant-numeric: tabular-nums;
}

.price-block strong {
  font-size: 2rem;
}

.hero-side-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.mini-product-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1rem;
  border-radius: 1.5rem;
}

.mini-card-top,
.mini-card-bottom,
.product-bottom,
.footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mini-pill {
  padding: 0.42rem 0.72rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.mini-icon {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(249, 168, 212, 1), rgba(147, 51, 234, 1));
  box-shadow: 0 0 16px rgba(236, 72, 153, 0.24);
}

.mini-product-card h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}

.mini-product-card p {
  margin: 0;
  font-size: 0.94rem;
}

.mini-card-bottom a {
  color: #f5c2e2;
  font-weight: 600;
}

.section-top {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.section-copy.narrow {
  max-width: 52rem;
}

.section-title {
  margin: 0.9rem 0 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: none;
}

.section-description {
  margin: 1rem 0 0;
  max-width: 56rem;
}

.section-pill {
  align-self: start;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  color: var(--text-muted);
}

.filter-shell {
  border-radius: 1.8rem;
  padding: 1rem;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-chip {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 0.78rem 1rem;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.filter-chip:hover {
  border-color: rgba(236, 72, 153, 0.32);
  color: var(--text-main);
}

.filter-chip.is-active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(90deg, #ec4899 0%, #f472b6 48%, #6d28d9 100%);
}

.product-grid,
.feature-grid,
.benefit-grid,
.order-grid {
  display: grid;
  gap: 1.5rem;
}

.product-grid {
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  margin-top: 1.8rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.8rem;
}

.catalog-card {
  border-radius: 1.55rem;
}

.credit-product-card {
  background: linear-gradient(180deg, rgba(24, 18, 37, 0.96), rgba(11, 8, 19, 0.98));
}

.product-media {
  aspect-ratio: 4 / 3;
}

.catalog-media {
  aspect-ratio: 1.7 / 1;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.35rem;
}

.product-copy h3 {
  font-size: 1.38rem;
  line-height: 1.22;
}

.catalog-card-body {
  gap: 1rem;
  padding: 1rem 1rem 1.1rem;
}

.credit-card-body {
  gap: 1.1rem;
}

.catalog-title-block h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.28;
}

.catalog-title-block p {
  margin: 0.55rem 0 0;
  color: var(--text-main);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.38;
}

.catalog-feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-feature-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.catalog-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #ff3434;
  box-shadow: 0 0 12px rgba(255, 52, 52, 0.36);
}

.credit-selector-grid {
  display: grid;
  gap: 0.85rem;
}

.catalog-selector-shell,
.detail-selector-shell {
  display: grid;
  gap: 0.55rem;
}

.catalog-selector-label {
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.catalog-selector {
  min-height: 3rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.95rem;
  padding: 0.8rem 2.8rem 0.8rem 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(11, 8, 19, 0.96);
  color: var(--text-main);
  appearance: none;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(45deg, transparent 50%, #f4a5d7 50%),
    linear-gradient(135deg, #f4a5d7 50%, transparent 50%);
  background-position:
    0 0,
    calc(100% - 1.1rem) calc(50% - 0.14rem),
    calc(100% - 0.8rem) calc(50% - 0.14rem);
  background-size:
    100% 100%,
    0.38rem 0.38rem,
    0.38rem 0.38rem;
  background-repeat: no-repeat;
}

.catalog-selector:focus-visible {
  outline: 2px solid rgba(236, 72, 153, 0.55);
  outline-offset: 2px;
}

.catalog-selected-note,
.detail-selected-note {
  margin: 0;
  color: #f8d6ea;
  font-size: 0.82rem;
  line-height: 1.45;
}

.catalog-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.catalog-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
}

.credit-card-footer {
  display: grid;
  gap: 0.9rem;
  margin-top: auto;
}

.credit-buy-button {
  width: 100%;
  min-height: 3.15rem;
  border: 0;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.credit-buy-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
  box-shadow: none;
  transform: none;
}

.credit-buy-button[disabled]:hover {
  transform: none;
  box-shadow: none;
}

.catalog-price-box .micro-label {
  margin-top: 0;
}

.catalog-arrow {
  display: inline-flex;
  width: 3.25rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 72, 72, 0.2);
  background:
    radial-gradient(circle at center, rgba(255, 68, 68, 0.42), rgba(255, 68, 68, 0.08) 62%, transparent 100%),
    rgba(17, 11, 24, 0.98);
  color: #fff;
  font-size: 1.35rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 30px rgba(255, 68, 68, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.catalog-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 72, 72, 0.34);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 36px rgba(255, 68, 68, 0.28);
}

.catalog-view-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.catalog-view-link:hover {
  transform: translateY(-1px);
  border-color: rgba(236, 72, 153, 0.3);
  background: rgba(236, 72, 153, 0.08);
  color: #ffd8f1;
}

.detail-selector-shell {
  margin-top: 1.4rem;
}

.product-page-dashboard {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.product-page-card {
  min-height: auto;
  height: auto;
}

.product-visual.product-page-card,
.product-summary.product-page-card,
.product-detail-card.product-page-card {
  overflow: hidden;
}

.product-visual.product-page-card {
  padding: 1rem;
}

.product-summary.product-page-card,
.product-detail-card.product-page-card {
  padding: 0;
}

.product-gallery-stage {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 1.6rem;
}

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

.product-gallery-copy {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  gap: 0.45rem;
  z-index: 1;
}

.product-gallery-copy strong {
  font-size: 1.25rem;
  line-height: 1.2;
}

.product-overview-panel,
.product-purchase-panel {
  position: relative;
}

.product-overview-static,
.product-purchase-sticky {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
  padding: 1.35rem;
}

.product-page-title {
  max-width: none;
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.product-inline-price {
  display: grid;
  gap: 0.45rem;
}

.product-inline-price .micro-label {
  margin-top: 0;
}

.product-inline-price strong {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.product-copy-block {
  display: grid;
  gap: 0.8rem;
}

.product-copy-heading {
  margin: 0;
  color: #f8d6ea;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-feature-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.product-feature-list li .benefit-check {
  margin-top: 0.38rem;
}

.product-review-grid {
  display: grid;
  gap: 0.85rem;
}

.review-card {
  border-radius: 1.25rem;
  padding: 1rem;
}

.review-card strong {
  margin: 0;
  font-size: 1rem;
}

.review-card p,
.review-topline span {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.review-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-service-note {
  margin: auto 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.product-purchase-head {
  display: grid;
  gap: 0.35rem;
}

.product-purchase-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.purchase-total-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.purchase-total-card span {
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.purchase-total-card strong {
  font-size: 2rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.purchase-buy-button {
  width: 100%;
  min-height: 3.3rem;
  border: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.purchase-buy-button[disabled] {
  cursor: not-allowed;
  opacity: 0.52;
  box-shadow: none;
  transform: none;
}

.purchase-buy-button[disabled]:hover {
  transform: none;
  box-shadow: none;
}

.product-copy p {
  margin-top: 0.8rem;
}

.platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.platform-pill {
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-top: 0.55rem;
}

.price-row strong {
  font-size: 1.95rem;
}

.price-row span {
  color: var(--text-soft);
  text-decoration: line-through;
}

.price-row.large strong {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .desktop-nav {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .eyebrow-pill,
html[dir="rtl"] .section-pill,
html[dir="rtl"] .badge,
html[dir="rtl"] .platform-pill,
html[dir="rtl"] .mini-pill,
html[dir="rtl"] .stat-card span,
html[dir="rtl"] .micro-label,
html[dir="rtl"] .section-eyebrow,
html[dir="rtl"] .footer-heading,
html[dir="rtl"] .filter-label,
html[dir="rtl"] .detail-kicker,
html[dir="rtl"] .product-topbar,
html[dir="rtl"] .product-visual-top {
  letter-spacing: 0;
  text-transform: none;
}

html[dir="rtl"] .lang-switch-button {
  letter-spacing: 0.08em;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-copy,
html[dir="rtl"] .community-copy,
html[dir="rtl"] .product-copy,
html[dir="rtl"] .product-description,
html[dir="rtl"] .footer-brand,
html[dir="rtl"] .legal-prose,
html[dir="rtl"] .detail-tile,
html[dir="rtl"] .faq-item,
html[dir="rtl"] .feature-card,
html[dir="rtl"] .not-found-card {
  text-align: right;
}

html[dir="rtl"] .showcase-copy,
html[dir="rtl"] .mini-card-bottom,
html[dir="rtl"] .product-bottom,
html[dir="rtl"] .footer-bar-inner {
  align-items: flex-end;
}

html[dir="rtl"] .price-block,
html[dir="rtl"] .price-row,
html[dir="rtl"] .product-price-box {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] .display-title,
html[dir="rtl"] .product-title {
  max-width: 100%;
}

.product-bottom {
  align-items: end;
  margin-top: auto;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.feature-grid {
  margin-top: 2rem;
}

.feature-card,
.faq-item,
.product-summary,
.product-detail-card {
  border-radius: 1.8rem;
}

.feature-card {
  padding: 1.55rem;
}

.feature-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.22);
  color: #f9a8d4;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-icon.small {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 0.85rem;
  font-size: 0.62rem;
}

.feature-card h3 {
  margin-top: 1rem;
  font-size: 1.32rem;
}

.feature-card p {
  margin-top: 0.7rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  padding: 1.35rem 1.4rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.9rem 0 0;
}

.community-section {
  padding-top: 0.5rem;
}

.community-card {
  display: grid;
  gap: 1.5rem;
  border-radius: 2rem;
  padding: clamp(1.35rem, 3vw, 2rem);
}

.community-copy {
  max-width: 46rem;
}

.community-title {
  max-width: none;
}

.community-description {
  max-width: 42rem;
}

.community-actions,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.social-cta,
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.4rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(11, 8, 19, 0.96);
  color: var(--text-main);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.social-cta {
  min-width: min(100%, 18rem);
  justify-content: center;
  padding: 1rem 1.25rem;
  font-weight: 700;
}

.footer-social-link {
  padding: 0.8rem 1rem;
  color: var(--text-muted);
}

.social-cta:hover,
.footer-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(236, 72, 153, 0.34);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    0 0 28px rgba(236, 72, 153, 0.14);
}

.social-cta-instagram:hover,
.footer-social-link[href*="instagram"]:hover {
  color: #ffd8ef;
  background:
    linear-gradient(180deg, rgba(236, 72, 153, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(11, 8, 19, 0.98);
}

.social-cta-discord:hover,
.footer-social-link[href*="discord"]:hover {
  color: #e2d9ff;
  background:
    linear-gradient(180deg, rgba(147, 51, 234, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(11, 8, 19, 0.98);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.social-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  padding: 3.25rem 0;
}

.footer-brand {
  max-width: 32rem;
}

.footer-brand-mark {
  display: inline-flex;
  margin-bottom: 1rem;
  max-width: min(12.5rem, 50vw);
}

.footer-columns {
  display: grid;
  gap: 1.8rem;
}

.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  color: #f4a5d7;
}

.footer-columns a {
  display: block;
  margin-top: 0.72rem;
  color: var(--text-muted);
}

.footer-socials {
  margin-top: 1.2rem;
}

.footer-meta {
  margin: 1rem 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bar-inner {
  flex-direction: column;
  align-items: flex-start;
  padding: 1.15rem 0;
  color: var(--text-soft);
}

.product-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--text-soft);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.breadcrumb-separator,
.breadcrumb-label {
  color: var(--text-soft);
}

.product-visual {
  display: flex;
  flex-direction: column;
  align-self: start;
  border-radius: 2rem;
  padding: 1rem;
}

.product-visual-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.product-hero-image {
  min-height: 20rem;
  flex: 1;
}

.product-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.mini-stat-card {
  display: flex;
  min-height: 5.5rem;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1.25rem;
  padding: 1rem;
}

.mini-stat-card strong {
  font-size: 1.15rem;
}

.product-summary,
.product-detail-card {
  display: flex;
  flex-direction: column;
  padding: clamp(1.2rem, 3vw, 1.55rem);
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-title {
  max-width: 9ch;
  margin-top: 1rem;
  font-size: clamp(1.95rem, 3.75vw, 3.4rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.product-description {
  margin-top: 1rem;
  max-width: 44rem;
}

.divider-line {
  height: 1px;
  margin: 1.5rem 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(236, 72, 153, 0.6),
    rgba(147, 51, 234, 0.55),
    transparent
  );
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.card-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.03em;
}

.benefit-check {
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.42rem;
  border-radius: 999px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(249, 168, 212, 1), rgba(147, 51, 234, 1));
  box-shadow: 0 0 14px rgba(236, 72, 153, 0.22);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  margin-top: 1.2rem;
}

.detail-tile {
  display: flex;
  min-height: 9rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-kicker {
  display: block;
  color: #dca7ff;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.detail-tile h3 {
  margin: 0.6rem 0 0;
  font-size: 1.05rem;
  line-height: 1.32;
}

.detail-tile p {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.not-found-card {
  max-width: 44rem;
  margin: 4rem auto;
  border-radius: 2rem;
  padding: 2rem;
}

.legal-page .page-main {
  padding-top: 0.75rem;
}

.legal-hero {
  padding-bottom: 1.4rem;
}

.legal-hero-card,
.legal-sidebar,
.legal-content,
.legal-contact-card {
  border-radius: 2rem;
}

.legal-hero-card {
  padding: clamp(1.4rem, 4vw, 2rem);
}

.legal-meta-row,
.legal-top-links,
.legal-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.legal-meta-row {
  margin-top: 1.5rem;
}

.legal-layout {
  display: grid;
  gap: 1.5rem;
}

.legal-sidebar,
.legal-content {
  padding: clamp(1.2rem, 3vw, 1.6rem);
}

.legal-sidebar {
  align-self: start;
}

.legal-sidebar-block + .legal-sidebar-block {
  margin-top: 1.4rem;
}

.legal-summary-list,
.legal-prose ul,
.legal-prose ol {
  margin: 0;
  padding-left: 1.1rem;
}

.legal-summary-list li,
.legal-prose li {
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-summary-list li + li,
.legal-prose li + li {
  margin-top: 0.55rem;
}

.policy-nav {
  display: grid;
  gap: 0.7rem;
}

.policy-nav a,
.legal-contact-link {
  color: #f8d6ea;
}

.policy-nav a:hover,
.legal-contact-link:hover,
.footer-columns a:hover {
  color: var(--text-main);
}

.legal-prose {
  display: grid;
  gap: 1.5rem;
}

.legal-section-block {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-section-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-section-block h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  letter-spacing: -0.03em;
}

.legal-section-block p {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-note {
  margin-top: 1rem;
  border-radius: 1.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(236, 72, 153, 0.18);
  background: rgba(236, 72, 153, 0.08);
  color: #f8d6ea;
  line-height: 1.7;
}

.legal-top-links {
  margin-top: 1.5rem;
}

.legal-link-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.8rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.legal-link-chip:hover {
  border-color: rgba(236, 72, 153, 0.28);
  background: rgba(236, 72, 153, 0.08);
  color: var(--text-main);
}

.legal-contact-grid {
  margin-top: 1.5rem;
}

.legal-contact-card {
  flex: 1 1 16rem;
  min-width: min(100%, 16rem);
  padding: 1rem 1.1rem;
}

.legal-contact-card p {
  margin: 0.55rem 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-copy,
.section-copy,
.filter-shell,
.section-pill,
.product-topbar,
.showcase-main-card,
.mini-product-card,
.stat-card,
.product-card,
.feature-card,
.faq-item,
.product-summary,
.product-detail-card,
.product-visual,
.not-found-card,
.legal-hero-card,
.legal-sidebar,
.legal-content,
.legal-contact-card {
  transition:
    opacity 580ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 580ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.showcase-main-card:hover,
.mini-product-card:hover,
.product-card:hover,
.feature-card:hover,
.faq-item:hover,
.product-summary:hover,
.product-detail-card:hover,
.product-visual:hover,
.stat-card:hover {
  transform: translate3d(0, -6px, 0);
  border-color: rgba(236, 72, 153, 0.22);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    0 0 36px rgba(236, 72, 153, 0.1);
}

@media (min-width: 768px) {
  .stats-grid,
  .hero-side-grid,
  .feature-grid,
  .product-mini-stats,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }

  .community-card {
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    align-items: center;
  }

  .footer-bar-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .desktop-nav {
    display: inline-flex;
    margin-left: auto;
  }

  .desktop-lang-switch {
    display: inline-flex;
  }

  .desktop-cta {
    display: inline-flex !important;
  }

  .mobile-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    align-items: start;
  }

  .product-dashboard {
    grid-template-columns: minmax(0, 1.17fr) minmax(0, 1.17fr) minmax(19rem, 1fr);
    align-items: stretch;
  }

  .product-page-card {
    min-height: var(--product-page-card-height);
    height: var(--product-page-card-height);
  }

  .product-purchase-panel {
    position: sticky;
    top: 6.2rem;
    align-self: start;
  }

  .product-purchase-sticky {
    overflow: auto;
  }

  .product-overview-static {
    justify-content: flex-start;
  }

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

  .credit-selector-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .legal-layout {
    grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 1fr);
    align-items: start;
  }
}

@media (max-width: 767px) {
  :root {
    --panel-blur: 14px;
    --panel-saturate: 130%;
  }

  body {
    background:
      radial-gradient(circle at 16% 10%, rgba(236, 72, 153, 0.14), transparent 24%),
      radial-gradient(circle at 84% 12%, rgba(126, 34, 206, 0.14), transparent 26%),
      radial-gradient(circle at 46% 78%, rgba(88, 28, 135, 0.16), transparent 24%),
      linear-gradient(180deg, #0a0611 0%, #07040c 48%, #030207 100%);
  }

  body::before {
    opacity: 0.08;
    background-size: 88px 88px;
  }

  .section {
    padding: 3.2rem 0;
  }

  .ambient-grid,
  .streak {
    display: none;
  }

  .orb {
    filter: blur(56px);
    animation: none;
    opacity: 0.72;
  }

  .orb-pink {
    left: -18%;
    top: 4rem;
    width: 16rem;
    height: 16rem;
  }

  .orb-purple {
    right: -18%;
    top: 8.5rem;
    width: 17rem;
    height: 17rem;
  }

  .orb-deep {
    left: 18%;
    top: 24rem;
    bottom: auto;
    width: 14rem;
    height: 14rem;
  }

  .hero.section {
    padding-top: 0.35rem;
  }

  .header-shell {
    min-height: 4.25rem;
    padding: 0.85rem 0.9rem;
  }

  .brand {
    max-width: min(9.25rem, 44vw);
  }

  .footer-brand-mark {
    max-width: min(10.5rem, 52vw);
  }

  .mobile-toggle {
    width: 2.8rem;
    height: 2.8rem;
  }

  .desktop-lang-switch {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .display-title {
    max-width: 7ch;
    font-size: clamp(2.5rem, 11vw, 3.85rem);
  }

  .hero-actions .button {
    flex: 1 1 calc(50% - 0.5rem);
  }

  .community-actions,
  .footer-socials {
    flex-direction: column;
  }

  .social-cta,
  .footer-social-link {
    width: 100%;
  }

  .showcase-copy,
  .product-bottom,
  .mini-card-bottom,
  .footer-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-copy {
    gap: 0.85rem;
  }

  .price-block {
    text-align: left;
  }

  .hero-showcase,
  .product-visual,
  .product-summary,
  .product-detail-card {
    padding: 1rem;
  }

  .product-page-card {
    min-height: auto;
    height: auto;
  }

  .product-visual.product-page-card {
    order: 1;
  }

  .product-purchase-panel.product-page-card {
    order: 2;
  }

  .product-overview-panel.product-page-card {
    order: 3;
  }

  .product-overview-static,
  .product-purchase-sticky {
    padding: 1rem;
  }

  .product-gallery-stage {
    min-height: 19rem;
  }

  .product-card-body {
    padding: 1.1rem;
  }

  .catalog-footer {
    align-items: flex-start;
  }

  .credit-card-footer {
    align-items: stretch;
  }

  .catalog-arrow {
    width: 3rem;
    height: 3rem;
  }

  .product-actions {
    width: 100%;
  }

  .product-actions .button {
    flex: 1 1 100%;
  }

  .product-title {
    max-width: 100%;
    font-size: clamp(1.95rem, 11vw, 3rem);
  }

  .product-page-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .product-topbar {
    gap: 0.55rem;
  }

  .product-visual-top {
    flex-wrap: wrap;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .legal-hero-card,
  .legal-sidebar,
  .legal-content {
    padding: 1rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .button:hover,
  .showcase-main-card:hover,
  .mini-product-card:hover,
  .product-card:hover,
  .feature-card:hover,
  .faq-item:hover,
  .product-summary:hover,
  .product-detail-card:hover,
  .product-visual:hover,
  .stat-card:hover {
    transform: none;
  }

  .product-card:hover .product-media img,
  .showcase-main-card:hover .showcase-image,
  .product-visual:hover .product-hero-image img {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(26px, -18px, 0) scale(1.06);
  }
}

@keyframes streak {
  0% {
    transform: translateX(-130%);
    opacity: 0;
  }
  12% {
    opacity: 0.55;
  }
  100% {
    transform: translateX(140%);
    opacity: 0;
  }
}
