/* Hakim TopUp — design system (dark + light) */
:root,
[data-theme="dark"] {
  --bg: #05070b;
  --bg-elevated: #0c1018;
  --bg-card: #121826;
  --bg-card-hover: #171f30;
  --bg-soft: #0a0f18;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f7fb;
  --text-soft: #a7b0c0;
  --text-muted: #7b8496;
  --pink: #ff2d78;
  --pink-hot: #ff4d8d;
  --pink-deep: #d9165a;
  --purple: #8b5cf6;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --green: #34d399;
  --gold: #f59e0b;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --glow-pink: 0 10px 30px rgba(255, 45, 120, 0.35);
  --glow-purple: 0 0 60px rgba(139, 92, 246, 0.35);
  --header-bg: transparent;
  --dropdown-bg: #111827;
  --sidebar-bg: #0b1018;
  --input-bg: #101623;
  --badge-bg: rgba(139, 92, 246, 0.15);
  --badge-text: #c4b5fd;
  --ring: rgba(255, 45, 120, 0.45);
  --hero-spot: radial-gradient(circle at 70% 40%, rgba(139, 92, 246, 0.28), transparent 42%),
    radial-gradient(circle at 20% 10%, rgba(255, 45, 120, 0.12), transparent 35%);
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f5f7fb;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-soft: #eef2f8;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);
  --text: #0f172a;
  --text-soft: #475569;
  --text-muted: #64748b;
  --pink: #ff2d78;
  --pink-hot: #ff4d8d;
  --pink-deep: #d9165a;
  --purple: #7c3aed;
  --blue: #2563eb;
  --cyan: #0891b2;
  --green: #059669;
  --gold: #d97706;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  --glow-pink: 0 10px 28px rgba(255, 45, 120, 0.22);
  --glow-purple: 0 0 40px rgba(124, 58, 237, 0.15);
  --header-bg: transparent;
  --dropdown-bg: #ffffff;
  --sidebar-bg: #ffffff;
  --input-bg: #f1f5f9;
  --badge-bg: rgba(37, 99, 235, 0.1);
  --badge-text: #2563eb;
  --ring: rgba(255, 45, 120, 0.35);
  --hero-spot: radial-gradient(circle at 75% 30%, rgba(255, 45, 120, 0.1), transparent 40%),
    radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.08), transparent 35%);
  color-scheme: light;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  background-image: var(--hero-spot);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .container,
  .hero-shell.container {
    width: min(1240px, calc(100% - 4rem));
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, backdrop-filter .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 11, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

[data-theme="light"] .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 64px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  flex: 1 1 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

@media (max-width: 379px) {
  .brand-text small { display: none; }
}

.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.brand-text small {
  font-size: 0.68rem;
  color: var(--pink);
  letter-spacing: 0.12em;
  font-weight: 700;
}

.nav-desktop {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 1.15rem;
  flex: 1 1 auto;
}

.nav-desktop > a,
.nav-dropdown-trigger {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
  padding: 0.35rem 0;
  background: none;
  border: 0;
}

.nav-desktop > a:hover,
.nav-desktop > a.is-active,
.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger { color: var(--text); }

.nav-desktop > a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: var(--pink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.nav-dropdown-trigger svg {
  transition: transform .18s ease;
}

.nav-dropdown.is-open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  inset-inline-start: 0;
  min-width: 220px;
  padding: 0.45rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--dropdown-bg);
  box-shadow: var(--shadow);
  display: none;
  z-index: 80;
}

.nav-dropdown.is-open .nav-dropdown-menu { display: grid; gap: 0.15rem; }

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.75rem;
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.is-active {
  background: var(--bg-soft);
  color: var(--text);
}

.nav-dropdown-menu .menu-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--pink);
  flex-shrink: 0;
}

.nav-dropdown-menu .menu-icon-category {
  width: 32px;
  height: 32px;
  background: transparent;
  border-radius: 0;
}

.nav-dropdown-menu .menu-icon-category .category-svg {
  width: 26px;
  height: 26px;
  display: block;
}

.lang-dropdown .nav-dropdown-menu {
  inset-inline-start: auto;
  inset-inline-end: 0;
  min-width: 160px;
}

.lang-menu a {
  justify-content: space-between;
}

.lang-menu small {
  color: var(--text-muted);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
  margin-inline-start: auto;
  flex: 0 0 auto;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
}

.icon-btn svg,
.theme-icon-btn .theme-moon,
.theme-icon-btn .theme-sun {
  display: block;
  margin: 0 auto;
}

.theme-icon-btn {
  position: relative;
}

.theme-icon-btn .theme-moon,
.theme-icon-btn .theme-sun {
  position: absolute;
  inset: 0;
  display: grid !important;
  place-items: center;
}

.icon-btn:hover { border-color: var(--border-strong); background: rgba(255,255,255,0.04); }
[data-theme="light"] .icon-btn:hover { background: rgba(15,23,42,0.04); }

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  height: 40px;
  padding: 0 0.7rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep)); color: #fff; box-shadow: var(--glow-pink); }
.btn-ghost { background: transparent; border-color: var(--border-strong); color: var(--text); }
.btn-outline { background: transparent; border-color: var(--border-strong); color: var(--text); }
.btn-block { width: 100%; }
.btn-sm { min-height: 36px; padding: 0.45rem 0.85rem; border-radius: 12px; font-size: 0.85rem; }
.desktop-only { display: none; }
.mobile-only { display: inline-flex; }

/* Mobile sidebar */
.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 60;
}

.sidebar-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  width: min(86vw, 320px);
  background: var(--sidebar-bg);
  border-inline-end: 1px solid var(--border);
  transform: translateX(-105%);
  transition: transform .24s ease;
  z-index: 70;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  box-shadow: var(--shadow);
}

[dir="rtl"] .mobile-sidebar { transform: translateX(105%); }
.mobile-sidebar.is-open,
[dir="rtl"] .mobile-sidebar.is-open { transform: translateX(0); }

.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  overflow: auto;
}

.sidebar-nav > a,
.sidebar-accordion-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  color: var(--text-soft);
  font-weight: 600;
  background: none;
  border: 0;
  text-align: start;
  cursor: pointer;
}

.sidebar-nav > a:hover,
.sidebar-nav > a.is-active,
.sidebar-accordion-trigger:hover,
.sidebar-accordion.is-open .sidebar-accordion-trigger {
  background: var(--bg-soft);
  color: var(--text);
}

.nav-link-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  color: var(--pink);
  flex-shrink: 0;
}

.accordion-chevron {
  margin-inline-start: auto;
  display: inline-grid;
  transition: transform .18s ease;
}

.sidebar-accordion.is-open .accordion-chevron {
  transform: rotate(180deg);
}

.sidebar-accordion-panel {
  display: grid;
  gap: 0.1rem;
  padding: 0.15rem 0 0.35rem 0.55rem;
}

.sidebar-accordion-panel[hidden] { display: none; }

.sidebar-accordion-panel a,
.sidebar-category-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.48rem 0.7rem;
  border-radius: 10px;
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.82rem;
}

.sidebar-category-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.sidebar-category-icon .category-svg {
  width: 18px;
  height: 18px;
  display: block;
}

.sidebar-accordion-panel a:hover,
.sidebar-category-item:hover {
  background: var(--bg-soft);
  color: var(--text);
}

.sidebar-actions {
  display: grid;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.theme-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg-soft);
}

.theme-switch-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.theme-switch {
  position: relative;
  width: 52px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: #3f4656;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s ease;
}

.theme-switch.is-light {
  background: var(--pink);
}

.theme-switch-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
  transition: transform .2s ease;
}

.theme-switch.is-light .theme-switch-thumb {
  transform: translateX(22px);
}

[dir="rtl"] .theme-switch-thumb { left: auto; right: 3px; }
[dir="rtl"] .theme-switch.is-light .theme-switch-thumb {
  transform: translateX(-22px);
}

/* Hero */
.hero {
  display: flex;
  align-items: flex-start;
  min-height: 62vh;
  padding: 0.65rem 0 1rem;
  margin-bottom: 0;
}

/* Hero open / display animation (plays on first load) */
@media (prefers-reduced-motion: no-preference) {
  .hero .hero-in {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    animation: heroInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero .hero-in:nth-child(1) { animation-delay: 0.08s; }
  .hero .hero-in:nth-child(2) { animation-delay: 0.18s; }
  .hero .hero-in:nth-child(3) { animation-delay: 0.28s; }
  .hero .hero-in:nth-child(4) { animation-delay: 0.38s; }
  .hero .hero-in:nth-child(5) { animation-delay: 0.5s; }

  .hero .hero-in-visual {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.96);
    animation: heroInVisual 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
  }

  .hero .hero-in-visual .hero-image {
    animation:
      heroImagePop 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both,
      float 7s ease-in-out 1s infinite;
  }
}

@keyframes heroInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroInVisual {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroImagePop {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.hero-shell.container {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
  align-self: center;
  max-width: 100%;
}

.hero-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  width: 100%;
  min-width: 0;
}

/* Phone: image first under nav, then copy */
.hero-visual {
  order: 1;
}

.hero-copy {
  order: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: min(540px, 100%);
  min-width: 0;
  padding: 0;
  margin: 0 auto;
  justify-self: center;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 0.4rem;
  max-width: 100%;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(167, 139, 250, 0.28);
  color: #ddd6fe;
  font-size: clamp(0.62rem, 2.8vw, 0.74rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 1rem;
  white-space: normal;
  line-height: 1.3;
}

[data-theme="light"] .hero-pill {
  background: rgba(124, 58, 237, 0.1);
  color: #6d28d9;
  border-color: rgba(124, 58, 237, 0.18);
}

.hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 8vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 100%;
}

.hero-title-line {
  display: block;
}

.hero h1 .accent {
  background: linear-gradient(100deg, #ff4d8d 0%, #ff2d78 45%, #ff6b4a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  color: var(--text-soft);
  font-size: clamp(0.95rem, 3.6vw, 1.12rem);
  line-height: 1.6;
  max-width: 100%;
  margin: 0 0 1.25rem;
  font-weight: 500;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
  width: 100%;
}

.hero-btn {
  min-height: 46px;
  padding: 0.7rem 0.85rem;
  font-size: 0.9rem;
  border-radius: 14px;
  font-weight: 700;
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

.hero-ctas .btn-primary {
  box-shadow: 0 12px 32px rgba(255, 45, 120, 0.38);
}

.hero-ctas .btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.22);
}

[data-theme="light"] .hero-ctas .btn-outline {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.14);
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  padding-top: 0.15rem;
  width: 100%;
  min-width: 0;
}

.trust-inline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 0;
  line-height: 1.25;
  flex: 1 1 calc(50% - 0.5rem);
}

.trust-inline span:last-child {
  flex: 1 1 100%;
}

.trust-inline svg {
  color: var(--pink);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Phone: Instant / Secure / 24/7 infinite marquee */
@media (max-width: 767px) {
  .trust-marquee {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }

  .trust-inline.is-marquee {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: max-content;
    gap: 1.75rem;
    padding-top: 0.35rem;
    animation: trustMarquee 16s linear infinite;
    will-change: transform;
  }

  .trust-inline.is-marquee span,
  .trust-inline.is-marquee span:last-child {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 0.86rem;
  }

  .trust-inline.is-marquee svg {
    width: 22px;
    height: 22px;
  }
}

@keyframes trustMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .trust-inline.is-marquee {
    animation: none !important;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--badge-bg);
  color: var(--badge-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  justify-items: center;
  min-height: 300px;
  padding: 0.5rem 0.5rem 1.75rem;
  overflow: visible;
}

.hero-image {
  position: relative;
  z-index: 3;
  width: min(100%, 640px);
  max-height: 520px;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  background: transparent;
  filter: drop-shadow(0 20px 36px rgba(255, 45, 120, 0.16));
}

@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  .hero .hero-in-visual .hero-image {
    animation:
      heroImagePop 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both,
      float 5.5s ease-in-out 0.9s infinite;
  }

  .hero-light-a {
    animation: lightShiftA 8s ease-in-out infinite;
  }

  .hero-light-b {
    animation: lightShiftB 9s ease-in-out infinite;
  }
}

[data-theme="light"] .hero-image {
  filter: drop-shadow(0 18px 30px rgba(15, 23, 42, 0.16));
}

.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.45;
}

.hero-light-a {
  width: 200px;
  height: 200px;
  top: 12%;
  inset-inline-end: 10%;
  background: radial-gradient(circle, rgba(255, 45, 120, 0.7), transparent 70%);
}

.hero-light-b {
  width: 220px;
  height: 220px;
  top: 22%;
  inset-inline-start: 8%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.45), transparent 70%);
}

@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .hero-light-a { animation: lightShiftA 8s ease-in-out infinite; }
  .hero-light-b { animation: lightShiftB 9s ease-in-out infinite; }
}

/* Pro floor platform */
.hero-floor {
  position: absolute;
  z-index: 2;
  bottom: 0.15rem;
  left: 50%;
  transform: translateX(-50%) perspective(420px) rotateX(62deg);
  width: min(72%, 380px);
  height: 88px;
  pointer-events: none;
  transform-style: preserve-3d;
}

.hero-floor-base {
  position: absolute;
  inset: 18% 0 22%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 45, 120, 0.35) 0%, rgba(99, 102, 241, 0.16) 38%, transparent 70%);
  filter: blur(2px);
}

.hero-floor-sheen {
  position: absolute;
  inset: 28% 8% 34%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 62%
  );
  background-size: 220% 100%;
  opacity: 0.85;
}

.hero-floor-ring {
  position: absolute;
  left: 50%;
  top: 30%;
  width: 78%;
  height: 42%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1.5px solid rgba(255, 45, 120, 0.45);
  box-shadow:
    0 0 16px rgba(255, 45, 120, 0.25),
    inset 0 0 12px rgba(56, 189, 248, 0.12);
}

.hero-floor-ring.delay {
  width: 92%;
  height: 52%;
  top: 22%;
  border-color: rgba(56, 189, 248, 0.28);
}

.hero-floor-spark {
  position: absolute;
  left: 12%;
  top: 40%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px 4px rgba(255, 45, 120, 0.75);
  opacity: 0;
}

@media (min-width: 1024px) and (prefers-reduced-motion: no-preference) {
  .hero-floor-base { animation: floorBreathe 5s ease-in-out infinite; }
  .hero-floor-sheen { animation: floorSheen 3.8s ease-in-out infinite; }
  .hero-floor-ring { animation: floorRing 4.2s ease-out infinite; }
  .hero-floor-ring.delay { animation-delay: 1.4s; }
  .hero-floor-spark { animation: floorSpark 4.8s linear infinite; }
}

/* Sections */
.section { padding: 2rem 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}
.link-more {
  color: var(--pink);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}

/* Pro reveal — GPU-friendly (opacity + small Y, no blur) */
.reveals-ready .reveal:not(.is-revealed) {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.reveals-ready .reveal {
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveals-ready .reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.social-stat strong[data-counter] {
  font-variant-numeric: tabular-nums;
}

/* Avoid clipping reveal/overflow motion */
.section,
.product-grid,
.category-grid,
.social-grid,
.faq-grid,
.how-steps,
.payment-methods {
  overflow: visible;
}

.payments-section .container {
  overflow: hidden;
}

.payment-methods.is-marquee {
  display: flex;
  width: max-content;
  gap: 0.7rem;
  animation: payMarquee 28s linear infinite;
  will-change: transform;
}

.payment-methods.is-marquee:hover {
  animation-play-state: paused;
}

.payment-methods.is-marquee .payment-chip {
  flex: 0 0 auto;
  min-width: 150px;
}

@keyframes payMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@media (min-width: 768px), (prefers-reduced-motion: reduce) {
  .payment-methods.is-marquee {
    animation: none !important;
    display: grid;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .payment-methods.is-marquee {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  /* Hide duplicated marquee clones on desktop grid */
  .payment-methods.is-marquee .payment-chip[aria-hidden="true"] {
    display: none;
  }
}

/* Back to top — glass + scroll progress ring */
.back-to-top {
  --btt-size: 52px;
  --btt-progress: 0;
  position: fixed;
  inset-inline-end: 1.1rem;
  bottom: calc(1.15rem + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  width: var(--btt-size);
  height: var(--btt-size);
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 16px, 0) scale(0.92);
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.back-to-top-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.back-to-top-track {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 2.25;
}

.back-to-top-progress {
  stroke: #ff4d8d;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 138.23;
  stroke-dashoffset: calc(138.23 - (138.23 * var(--btt-progress)));
}

.back-to-top-icon {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(255, 77, 141, 0.95), rgba(217, 22, 90, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 45, 120, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s ease;
}

.back-to-top:hover .back-to-top-icon {
  transform: translateY(-2px);
  box-shadow:
    0 14px 32px rgba(255, 45, 120, 0.28),
    0 0 0 1px rgba(255, 45, 120, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.back-to-top:active .back-to-top-icon {
  transform: translateY(0) scale(0.96);
}

.back-to-top-icon svg {
  display: block;
}

#offer,
#how,
#payments,
#faq,
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 720px;
}

.features-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0.5rem 0 1.5rem;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature-icon.purple { background: rgba(139,92,246,.18); color: var(--purple); }
.feature-icon.blue { background: rgba(59,130,246,.18); color: var(--blue); }
.feature-icon.cyan { background: rgba(34,211,238,.15); color: var(--cyan); }
.feature-icon.pink { background: rgba(255,45,120,.15); color: var(--pink); }

.feature-item h3 { margin: 0 0 0.2rem; font-size: 0.95rem; }
.feature-item p { margin: 0; color: var(--text-muted); font-size: 0.8rem; line-height: 1.4; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 132px;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  cursor: default;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

[data-theme="light"] .category-card {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.category-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}

[data-theme="light"] .category-card:hover {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.14);
}

.category-icon {
  width: 52px;
  height: 52px;
  margin: 0;
  display: grid;
  place-items: center;
  background: transparent;
  flex-shrink: 0;
}

.category-icon .category-svg,
.category-icon svg {
  display: block;
  width: 48px;
  height: 48px;
  overflow: visible;
}

.category-card h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  max-width: 12ch;
}

/* Products — Best Sellers cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-list {
  display: none;
  gap: 0.7rem;
}

.product-card,
.product-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
}

[data-theme="light"] .product-card,
[data-theme="light"] .product-row {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform .18s ease, border-color .18s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.12);
}

.product-media {
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

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

.product-media img[src$=".svg"] {
  width: 48%;
  height: 48%;
  object-fit: contain;
  padding: 0;
}

.product-fallback {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
  color: #fff;
}

.badge {
  position: absolute;
  top: 0.55rem;
  inset-inline-end: 0.55rem;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  color: #fff;
}
.badge.popular { background: var(--pink); }
.badge.sale { background: var(--purple); }
.badge.new { background: var(--blue); }

.product-body {
  padding: 0.85rem 0.9rem 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

.product-meta h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.product-meta small {
  color: var(--text-muted);
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 500;
}

.product-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-foot strong {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
}

.product-price-sale {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.1;
}

.product-price-sale s,
.product-row-price s {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.cart-btn {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--glow-pink);
  flex-shrink: 0;
  transition: transform .15s ease, filter .15s ease;
}

.cart-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.product-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem;
}
.product-row h3 {
  margin: 0;
  font-size: 0.95rem;
}
.product-row small {
  color: var(--text-muted);
  display: block;
}
.product-row-price {
  font-weight: 800;
  margin-top: 0.2rem;
}
.product-row .thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #0d111a;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
}
.product-row .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-row .thumb img[src$=".svg"] {
  width: 58%;
  height: 58%;
  object-fit: contain;
}

.mobile-cta {
  margin-top: 1rem;
}

/* Promo banner: image + offer content | right features (desktop) */
.promo-banner {
  display: grid;
  gap: 0.85rem;
}

.promo-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 45, 120, 0.16);
  background: #07090f;
  aspect-ratio: 16 / 10;
  min-height: 220px;
}

.promo-banner-media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% center;
}

.promo-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  min-height: 220px;
  padding: 1.15rem 1.1rem 1.2rem;
  background: linear-gradient(
    180deg,
    rgba(5, 7, 11, 0.15) 0%,
    rgba(5, 7, 11, 0.35) 45%,
    rgba(5, 7, 11, 0.88) 100%
  );
}

.promo-eyebrow {
  margin: 0 0 0.4rem;
  color: #7dd3fc;
  font-size: 0.84rem;
  font-weight: 600;
}

.promo-title {
  margin: 0;
  font-size: clamp(1.45rem, 6.5vw, 2.3rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.promo-accent {
  color: #38bdf8;
  margin-inline-start: 0.25rem;
}

.promo-sub {
  margin: 0.3rem 0 0.9rem;
  color: #fff;
  font-size: clamp(0.95rem, 3.8vw, 1.1rem);
  font-weight: 600;
}

.promo-cta {
  min-width: 120px;
  min-height: 42px;
  padding: 0.65rem 1.1rem;
  border-radius: 12px;
  font-size: 0.92rem;
}

.promo-features {
  display: none;
  gap: 1.15rem;
  align-content: center;
  padding: 1.35rem 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.promo-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.promo-feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 45, 120, 0.12);
  color: var(--pink-hot);
  flex-shrink: 0;
}

.promo-feature strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.promo-feature small {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.35;
}

@media (min-width: 640px) {
  .promo-visual {
    aspect-ratio: 21 / 9;
    min-height: 240px;
  }

  .promo-copy {
    justify-content: center;
    align-items: flex-start;
    min-height: 240px;
    max-width: 55%;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(
      90deg,
      rgba(5, 7, 11, 0.9) 0%,
      rgba(5, 7, 11, 0.55) 55%,
      transparent 100%
    );
  }

  .promo-banner-media {
    object-position: 75% center;
  }
}

/* How It Works */
.how-section {
  padding-top: 0.5rem;
}

.how-title {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.how-steps {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 920px;
  margin: 0 auto;
}

.how-step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-icon-wrap {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 1rem;
}

.how-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--pink-hot);
  background: rgba(255, 45, 120, 0.06);
  border: 1.5px solid rgba(255, 45, 120, 0.35);
  box-shadow: 0 0 0 6px rgba(255, 45, 120, 0.04);
}

.how-step-num {
  position: absolute;
  top: -2px;
  inset-inline-start: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--pink-hot), var(--pink-deep));
  box-shadow: 0 6px 16px rgba(255, 45, 120, 0.3);
  z-index: 2;
}

.how-step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.how-step p {
  margin: 0;
  max-width: 22ch;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 500;
}

@media (min-width: 768px) {
  .how-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0.5rem 0 0.25rem;
  }

  .how-steps::before {
    content: "";
    position: absolute;
    top: 44px;
    left: 16%;
    right: 16%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.14) 15%,
      rgba(255, 255, 255, 0.14) 85%,
      transparent
    );
    z-index: 0;
  }

  [data-theme="light"] .how-steps::before {
    background: linear-gradient(
      90deg,
      transparent,
      rgba(15, 23, 42, 0.12) 15%,
      rgba(15, 23, 42, 0.12) 85%,
      transparent
    );
  }

  .how-title {
    margin-bottom: 2.5rem;
  }
}

/* Payment methods */
.payments-section {
  padding-top: 0.25rem;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.payment-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 64px;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

/* Light mode: dark plates so white logos (Whish/Visa/Binance text) stay visible */
[data-theme="light"] .payment-chip {
  background: #121826;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

[data-theme="light"] .payment-chip strong {
  color: #fff;
}

[data-theme="light"] .product-media:has(img[src$=".svg"]),
[data-theme="light"] .product-media:has(img[src*="google-play"]) {
  background: #121826;
}

.payment-chip img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 28px;
  object-fit: contain;
  background: transparent;
}

.payment-chip .pay-visa {
  height: 20px;
  width: auto;
}

.payment-chip-usdt img,
.payment-chip-binance img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.payment-chip-mc img {
  height: 34px;
  width: auto;
}

.payment-chip span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: start;
}

.payment-chip strong {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.payment-chip small {
  margin-top: 0.12rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.payment-chip-binance small {
  color: #f0b90b;
}

.pay-chip-img {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
}

.pay-chip-img img {
  display: block;
  height: 14px;
  width: auto;
  object-fit: contain;
  background: transparent;
}

@media (min-width: 768px) {
  .payment-methods {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .payment-chip {
    min-height: 72px;
    padding: 0.9rem 1.1rem;
  }

  .payment-chip img {
    height: 30px;
  }
}

/* Social proof + reviews */
.social-grid {
  display: grid;
  gap: 0.9rem;
}

.social-stats,
.review-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.social-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 0.75rem;
  padding: 1.6rem 1rem;
  place-items: center;
  align-content: center;
  text-align: center;
  min-height: 220px;
}

.social-stat {
  width: auto;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
}

.social-stat-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  min-height: 68px;
  max-width: 68px;
  max-height: 68px;
  flex: 0 0 68px;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  margin: 0;
  color: #ff4d8d;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 45, 120, 0.55);
  background: rgba(255, 45, 120, 0.1);
  box-shadow: none;
  overflow: hidden;
}

.social-stat-icon svg {
  width: 30px !important;
  height: 30px !important;
  display: block;
  color: #ff4d8d;
  stroke: #ff4d8d;
}

.social-stat strong {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

[data-theme="light"] .social-stats,
[data-theme="light"] .review-card {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.social-stat > span {
  display: block;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}

.review-card {
  position: relative;
  padding: 1.4rem 1.25rem 1.2rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.review-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  color: #f5c518;
  margin-bottom: 1rem;
}

.review-slides {
  position: relative;
  flex: 1;
  min-height: 110px;
}

.review-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  transition: opacity .35s ease;
}

.review-slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.review-slide p {
  margin: 0 0 0.85rem;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  font-weight: 500;
}

.review-slide cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--text);
  font-size: 0.92rem;
}

.review-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
  margin-top: 1rem;
}

.review-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  display: grid;
  place-items: center;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.review-nav-btn:hover {
  border-color: rgba(255, 45, 120, 0.45);
  color: #fff;
  background: rgba(255, 45, 120, 0.12);
}

/* FAQ */
.faq-section {
  padding-top: 0.5rem;
}

.faq-title {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
  text-align: start;
  cursor: pointer;
}

.faq-chevron {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  color: var(--text-muted);
  transition: transform .2s ease, color .2s ease;
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--pink-hot);
}

.faq-panel {
  padding: 0 1.15rem 1rem;
}

.faq-panel[hidden] {
  display: none;
}

.faq-panel p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 500;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
}

@media (min-width: 900px) {
  .social-grid {
    grid-template-columns: 1.35fr 1fr;
    gap: 1rem;
    align-items: stretch;
  }

  .social-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 2rem 1.5rem;
    gap: 1rem;
    place-items: center;
    align-content: center;
    min-height: 100%;
  }

  .social-stat {
    width: 100%;
    max-width: none;
  }

  .social-stat strong {
    font-size: 1.55rem;
  }

  .social-stat-icon {
    width: 76px;
    height: 76px;
    min-width: 76px;
    min-height: 76px;
    max-width: 76px;
    max-height: 76px;
    flex-basis: 76px;
  }

  .social-stat-icon svg {
    width: 34px !important;
    height: 34px !important;
  }

  .review-card {
    padding: 1.6rem 1.5rem 1.35rem;
    min-height: 100%;
  }

  .review-card h2 {
    font-size: 1.35rem;
  }
}

/* Why (legacy unused) */
.why-grid {
  display: grid;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.25rem;
}
.why-copy h2 { margin: 0 0 0.6rem; font-size: 1.5rem; }
.why-copy p { margin: 0 0 1rem; color: var(--text-soft); line-height: 1.6; }
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.stat {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.9rem;
}
.stat strong { display: block; font-size: 1.2rem; margin-bottom: 0.2rem; }
.stat span { color: var(--text-muted); font-size: 0.8rem; }

/* Footer */
.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  background: rgba(6, 8, 16, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.75rem 0 2rem;
}

.footer-brand .brand {
  margin-bottom: 0.85rem;
}

.footer-brand p {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  max-width: 34ch;
  line-height: 1.65;
  font-size: 0.92rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ff8fb3;
  background: rgba(255, 45, 120, 0.12);
  border: 1px solid rgba(255, 45, 120, 0.28);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.social-link:hover {
  color: #fff;
  background: rgba(255, 45, 120, 0.28);
  border-color: rgba(255, 45, 120, 0.5);
  transform: translateY(-1px);
}

.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color .15s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

a.footer-contact-item:hover {
  color: #fff;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  color: #ff4d8d;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.15rem 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 767px) and (orientation: portrait) {
  .footer-grid {
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand p {
    max-width: 34ch;
    text-align: center;
  }

  .footer-brand .social-links,
  .footer-col .social-links {
    justify-content: center;
  }

  .footer-col {
    width: 100%;
    max-width: 22rem;
  }

  .footer-contact-item {
    justify-content: center;
  }
}

.sidebar-social {
  display: grid;
  gap: 0.7rem;
  padding: 0.85rem 0 1rem;
  border-top: 1px solid var(--border);
}

.sidebar-social-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-inline: 0.15rem;
}

.sidebar-social-links {
  justify-content: flex-start;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes pulse {
  0%, 100% { opacity: .75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes lightShiftA {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate(-18px, 14px) scale(1.15); opacity: 0.85; }
}

@keyframes lightShiftB {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate(22px, -10px) scale(1.12); opacity: 0.8; }
}

@keyframes lightShiftC {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.4; }
  50% { transform: translateX(-50%) scale(1.2); opacity: 0.75; }
}

@keyframes floorBreathe {
  0%, 100% { opacity: 0.55; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes floorSheen {
  0% { background-position: 120% 0; opacity: 0.25; }
  40% { opacity: 0.9; }
  100% { background-position: -120% 0; opacity: 0.25; }
}

@keyframes floorRing {
  0% { opacity: 0.75; transform: translateX(-50%) scale(0.9); }
  70% { opacity: 0.12; transform: translateX(-50%) scale(1.12); }
  100% { opacity: 0; transform: translateX(-50%) scale(1.18); }
}

@keyframes floorSpark {
  0% { left: 14%; opacity: 0; transform: scale(0.6); }
  15% { opacity: 1; }
  50% { left: 50%; opacity: 0.85; transform: scale(1); }
  85% { opacity: 0.2; }
  100% { left: 86%; opacity: 0; transform: scale(0.5); }
}

@media (min-width: 480px) {
  .trust-inline {
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .trust-inline span,
  .trust-inline span:last-child {
    flex: 1 1 0;
    font-size: 0.78rem;
  }

  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-btn {
    width: auto;
    min-width: 0;
    padding: 0.75rem 1.1rem;
    font-size: 0.95rem;
  }
}

@media (min-width: 768px) {
  .features-bar { grid-template-columns: repeat(4, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .mobile-cta { display: none; }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }

  .trust-inline span,
  .trust-inline span:last-child {
    flex: 0 1 auto;
    font-size: 0.9rem;
  }

  .trust-inline svg {
    width: 26px;
    height: 26px;
  }

  .hero-ctas {
    display: flex;
    width: auto;
  }

  .hero-btn {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .desktop-only { display: inline-flex; }
  .mobile-only { display: none !important; }
  .header-inner { min-height: 78px; }
  .hero {
    min-height: 72vh;
    padding: 1.25rem 0 0.75rem;
    margin-bottom: 0;
  }

  .hero {
    align-items: center;
    padding: 1.25rem 0 0.75rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 2.25rem;
    align-items: center;
    min-height: calc(72vh - 5rem);
  }

  .hero-copy {
    order: 0;
    padding: 0;
    max-width: 560px;
    justify-self: start;
    margin: 0;
    align-items: start;
    text-align: start;
  }

  .hero-visual {
    order: 0;
  }

  .hero-pill {
    align-self: start;
  }

  .hero h1 {
    max-width: 14ch;
    font-size: clamp(2.15rem, 4.1vw, 3.2rem);
  }

  .hero-lede {
    max-width: 33rem;
  }

  .hero-ctas {
    display: flex;
    width: auto;
    margin: 0 0 1.5rem;
  }

  .hero-btn {
    width: auto;
    min-height: 48px;
    padding: 0.8rem 1.25rem;
    font-size: 0.98rem;
  }

  .trust-inline {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1.5rem;
    width: auto;
  }

  .trust-inline span,
  .trust-inline span:last-child {
    flex: 0 0 auto;
    font-size: 0.98rem;
    white-space: nowrap;
  }

  .trust-inline svg {
    width: 32px;
    height: 32px;
  }

  .hero-visual {
    min-height: 560px;
    justify-self: stretch;
    width: 100%;
    padding: 0.5rem 0 2rem;
  }

  .hero-image {
    width: min(100%, 760px);
    max-height: 620px;
  }

  .hero-floor {
    width: min(82%, 540px);
    height: 110px;
    bottom: 0.15rem;
  }

  #categories {
    padding-top: 1.25rem;
  }
  .category-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  .category-card {
    min-height: 148px;
    padding: 1.35rem 0.85rem;
  }
  .category-icon {
    width: 56px;
    height: 56px;
  }
  .category-card h3 {
    font-size: 0.98rem;
  }
  .category-icon .category-svg,
  .category-icon svg {
    width: 52px;
    height: 52px;
  }
  .product-grid { grid-template-columns: repeat(6, 1fr); }
  .promo-banner {
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.75fr);
    gap: 1.15rem;
    align-items: stretch;
  }

  .promo-visual {
    aspect-ratio: auto;
    min-height: 280px;
    height: 100%;
  }

  .promo-banner-media {
    object-position: 78% center;
  }

  .promo-copy {
    justify-content: center;
    min-height: 280px;
    max-width: 340px;
    padding: 2rem 2.1rem;
    background: linear-gradient(
      90deg,
      rgba(5, 7, 11, 0.86) 0%,
      rgba(5, 7, 11, 0.4) 70%,
      transparent 100%
    );
  }

  .promo-title {
    font-size: clamp(1.8rem, 2.4vw, 2.35rem);
  }

  .promo-features {
    display: grid;
    padding: 1.75rem 1.5rem;
  }

  .why-grid { grid-template-columns: 1fr 1.4fr; align-items: center; padding: 1.75rem; }

  .footer-grid {
    grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
    gap: 2rem 1.75rem;
    padding: 3.25rem 0 2.25rem;
  }

  .footer-brand p {
    max-width: 30ch;
  }
}

[data-theme="light"] .theme-moon { display: none !important; }
[data-theme="light"] .theme-sun { display: inline-grid !important; }
[data-theme="dark"] .theme-sun { display: none !important; }
[data-theme="dark"] .theme-moon { display: inline-grid !important; }
.theme-sun { display: none; }
.theme-moon { display: inline-grid; }

.toast-ok { color: var(--green); font-size: .8rem; font-weight: 700; margin: .35rem 0 0; }

.empty { color: var(--text-muted); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveals-ready .reveal:not(.is-revealed),
  .reveals-ready .reveal.is-revealed {
    opacity: 1 !important;
    transform: none !important;
  }

  .back-to-top,
  .back-to-top-icon {
    transition: none !important;
  }

  .hero-image,
  .hero-light,
  .hero-floor-base,
  .hero-floor-sheen,
  .hero-floor-ring,
  .hero-floor-spark,
  .hero .hero-in,
  .hero .hero-in-visual {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
