:root {
  --bg: #06030a;
  --bg-2: #0b0611;
  --bg-3: #14071e;
  --panel: rgba(17, 11, 27, 0.72);
  --panel-2: rgba(25, 16, 38, 0.8);
  --text: #f8f4ff;
  --muted: #b4aac8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --primary: #ff2fa6;
  --primary-2: #ff67d0;
  --accent: #8c63ff;
  --cyan: #6ee7ff;
  --gold: #ffd66b;
  --success: #79f3b6;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-pink: 0 20px 60px rgba(255, 47, 166, 0.22);
  --glow-soft: 0 0 0 1px rgba(255,255,255,0.04), 0 24px 80px rgba(0,0,0,0.45);
  --glow-pink-strong: 0 0 30px rgba(255, 47, 166, 0.24), 0 0 80px rgba(140, 99, 255, 0.18);
  --container: 1240px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 47, 166, 0.18), transparent 20%),
    radial-gradient(circle at 85% 12%, rgba(110, 231, 255, 0.08), transparent 18%),
    radial-gradient(circle at 78% 30%, rgba(140, 99, 255, 0.18), transparent 24%),
    radial-gradient(circle at 50% 110%, rgba(255, 214, 107, 0.08), transparent 20%),
    linear-gradient(180deg, #040208 0%, #09050f 32%, #05030a 68%, #020103 100%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.06), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.04), transparent 24%);
  opacity: 0.5;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.03) 45%, transparent 55%);
  transform: translateX(-30%);
  animation: cinematicSweep 12s linear infinite;
  opacity: 0.45;
}

@keyframes cinematicSweep {
  0% { transform: translateX(-35%); }
  100% { transform: translateX(35%); }
}

.bg-grid {
  position: absolute;
  inset: 0;
  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: 40px 40px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(95px);
  opacity: 0.33;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: rgba(255, 47, 166, 0.23);
  top: -80px;
  left: -120px;
}

.orb-b {
  width: 340px;
  height: 340px;
  background: rgba(140, 99, 255, 0.22);
  top: 120px;
  right: -80px;
}

.orb-c {
  width: 300px;
  height: 300px;
  background: rgba(255, 103, 208, 0.12);
  bottom: 120px;
  left: 20%;
}

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 6, 14, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: var(--shadow-pink);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-copy strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.logo-copy span {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.nav-menu a:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-link-btn,
.header-cart-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.header-link-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong);
}

.header-link-btn:hover {
  background: rgba(255,255,255,0.07);
}

.header-cart-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: var(--shadow-pink);
}

.header-cart-btn:hover {
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: white;
}

.hero {
  padding: 72px 0 40px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(255,47,166,0.16), transparent 22%),
    radial-gradient(circle at 82% 24%, rgba(110,231,255,0.08), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 30%);
  pointer-events: none;
}

.hero-backdrop-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 92%);
  opacity: 0.6;
}

.hero-grid {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f2eaff;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 16px var(--success);
}

.hero-top-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-badge {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f5efff;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-badge.live {
  color: #c8ffe2;
  border-color: rgba(121,243,182,0.28);
  box-shadow: 0 0 24px rgba(121,243,182,0.12);
}

.hero-left h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 11ch;
  text-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

.hero-left h1 span {
  background: linear-gradient(90deg, #ffffff 0%, #ff8cde 40%, #bb9cff 72%, #6ee7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(255, 47, 166, 0.22));
}

.hero-text {
  max-width: 650px;
  font-size: 1.08rem;
  color: var(--muted);
  margin-top: 24px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  color: white;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.07);
}

.hero-mini-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
}

.mini-stat {
  padding: 18px;
  border-radius: 20px;
}

.mini-stat strong {
  display: block;
  font-size: 1.12rem;
  margin-bottom: 4px;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.dashboard {
  border-radius: var(--radius-xl);
  padding: 22px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  box-shadow: var(--shadow-lg), var(--glow-pink-strong);
}

.dashboard::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 47, 166, 0.24), transparent 70%);
}

.dashboard::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 26%, transparent 70%, rgba(255,255,255,0.05));
  pointer-events: none;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
}

.window-dots span:nth-child(1) { background: #ff6b7a; }
.window-dots span:nth-child(2) { background: #ffce57; }
.window-dots span:nth-child(3) { background: #63e6a7; }

.dashboard-label {
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.dashboard-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
}

.dashboard-card {
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.card-primary {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(circle at top right, rgba(255,47,166,0.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.hero-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.featured-badge,
.featured-price {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.featured-badge {
  background: rgba(255, 47, 166, 0.12);
  border: 1px solid rgba(255, 47, 166, 0.22);
  color: #ffd8ef;
}

.featured-price {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
}

.card-kicker {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d3b8f1;
  margin-bottom: 10px;
}

.card-primary h3 {
  font-size: 2rem;
  line-height: 1.05;
  margin-bottom: 10px;
}

.card-primary p {
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
}

.dashboard-side {
  display: grid;
  gap: 16px;
}

.stat-card-small {
  min-height: 137px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.stat-card-small span {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.stat-card-small strong {
  font-size: 1.3rem;
}

.dashboard-bottom {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bottom-box {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.bottom-box span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 4px;
}

.bottom-box strong {
  font-size: 1rem;
}

.section {
  padding: 110px 0;
}

.section-sm {
  padding-top: 80px;
}

.section-head {
  max-width: 740px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #d0b7ef;
}

.section-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
}

.benefits-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card,
.faq-card {
  padding: 28px;
  border-radius: 24px;
}

.benefit-number {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow-pink);
}

.benefit-card h3,
.faq-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.benefit-card p,
.faq-card p {
  color: var(--muted);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.interactive-glow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --mx: 50%;
  --my: 50%;
}

.interactive-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(
      320px circle at var(--mx) var(--my),
      rgba(255, 255, 255, 0.18),
      rgba(255, 47, 166, 0.18) 18%,
      rgba(140, 99, 255, 0.16) 34%,
      transparent 62%
    );
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
  z-index: 0;
}

.interactive-glow::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(115deg, transparent 18%, rgba(255,255,255,0.18) 28%, transparent 38%);
  transform: translateX(-140%);
  opacity: 0.42;
  pointer-events: none;
  z-index: 0;
}

.interactive-glow:hover::before {
  opacity: 1;
}

.interactive-glow:hover::after {
  animation: cardShine 1.35s ease;
}

@keyframes cardShine {
  0% { transform: translateX(-140%); }
  100% { transform: translateX(160%); }
}

.product-card,
.mini-stat,
.dashboard,
.benefit-card,
.faq-card {
  position: relative;
}

.product-card > *,
.mini-stat > *,
.dashboard > *,
.benefit-card > *,
.faq-card > * {
  position: relative;
  z-index: 1;
}

.product-card {
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  box-shadow: var(--glow-soft);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.55),
    0 0 30px rgba(255, 47, 166, 0.18),
    0 0 80px rgba(140, 99, 255, 0.14);
}

.product-media {
  height: 240px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.product-media::before,
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
}

.product-media::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.2), transparent 16%),
    radial-gradient(circle at 80% 30%, rgba(110,231,255,0.12), transparent 24%),
    linear-gradient(135deg, rgba(255,47,166,0.26), rgba(140,99,255,0.18));
}

.product-media::after {
  background:
    linear-gradient(180deg, transparent 20%, rgba(4,3,8,0.72) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.045) 0,
      rgba(255,255,255,0.045) 1px,
      transparent 1px,
      transparent 34px
    );
  opacity: 0.7;
}

.media-1 {
  background:
    radial-gradient(circle at 80% 25%, rgba(140,99,255,0.34), transparent 30%),
    url('images/producto-1.png') center/cover no-repeat,
    #0e0916;
}
.media-2 {
  background:
    radial-gradient(circle at 80% 25%, rgba(140,99,255,0.34), transparent 30%),
    url('images/producto-1.png') center/cover no-repeat,
    #0e0916;
}

.media-3 {
  background:
    radial-gradient(circle at 45% 20%, rgba(255,103,208,0.25), transparent 30%),
    url('images/producto-1.png') center/cover no-repeat,
    #100916;
}

.media-4 {
  background:
    radial-gradient(circle at 35% 28%, rgba(255,47,166,0.22), transparent 30%),
    url('images/producto-1.png') center/cover no-repeat,
    #0b0814;
}

.product-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.product-chip {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(10, 7, 15, 0.58);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-info {
  padding: 24px;
}

.product-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.meta-pill {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.meta-pill.success {
  color: #b8ffd6;
}

.product-rank {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff7d6;
  background: rgba(255, 214, 107, 0.1);
  border: 1px solid rgba(255, 214, 107, 0.18);
  white-space: nowrap;
}

.product-info h3 {
  font-size: 1.42rem;
  line-height: 1.14;
  margin-bottom: 10px;
}

.product-desc {
  color: var(--muted);
  min-height: 72px;
  margin-bottom: 18px;
}

.price-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.price {
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #fff7fc;
  margin-bottom: 0;
  text-shadow: 0 0 22px rgba(255, 47, 166, 0.14);
}

.price-badge {
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #f8efff;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
}

.price-badge.hot {
  color: #fff1cc;
  background: rgba(255, 214, 107, 0.09);
  border-color: rgba(255, 214, 107, 0.18);
}

.product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.product-points span {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: #ddd1ef;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.variant-note {
  color: var(--muted);
  margin-bottom: 16px;
}

.variant-block {
  margin-bottom: 14px;
}

.variant-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.variant-label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #dbc8f5;
}

.variant-current {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  color: #ffe8f7;
  background: linear-gradient(135deg, rgba(255, 47, 166, 0.16), rgba(140, 99, 255, 0.14));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  white-space: nowrap;
}

.variant-select-wrap {
  position: relative;
}

.variant-select-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 47, 166, 0.18), rgba(140, 99, 255, 0.14));
  opacity: 0.85;
  pointer-events: none;
}

.variant-select-wrap::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background:
    linear-gradient(180deg, rgba(18, 11, 29, 0.95), rgba(13, 8, 22, 0.92));
  pointer-events: none;
}

.variant-select {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 58px;
  padding: 0 56px 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin-bottom: 0;
  color: #ffffff;
  font-weight: 700;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.variant-select-wrap .variant-select-icon {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  color: #ff9adf;
  opacity: 0.95;
}

.variant-select:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 30px rgba(255, 47, 166, 0.08);
}

.variant-select:focus {
  border-color: rgba(255, 47, 166, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 47, 166, 0.12), 0 18px 40px rgba(255, 47, 166, 0.1);
  transform: translateY(-1px);
}

.variant-select option {
  color: #ffffff;
  background: #120a1c;
}

.buy-btn {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #ff2fa6 0%, #ff67d0 52%, #9d72ff 100%);
  color: white;
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow:
    0 18px 50px rgba(255, 47, 166, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.buy-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow:
    0 24px 60px rgba(255, 47, 166, 0.32),
    0 0 30px rgba(140, 99, 255, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.site-footer {
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--muted);
}

.site-footer ul {
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #8f84a8;
  font-size: 0.92rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@media (max-width: 1100px) {
  .hero-grid,
  .products-grid,
  .benefits-grid,
  .faq-grid,
  .footer-grid,
  .dashboard-main,
  .dashboard-bottom {
    grid-template-columns: 1fr;
  }

  .product-desc {
    min-height: auto;
  }
}

@media (max-width: 920px) {
  .nav-menu,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu.active {
    display: block;
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(10, 7, 16, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-mini-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-inner {
    min-height: 74px;
  }

  .logo-copy span {
    display: none;
  }

  .hero-left h1 {
    font-size: 2.9rem;
    max-width: 100%;
  }

  .hero-text {
    font-size: 1rem;
  }

  .section {
    padding: 84px 0;
  }

  .benefit-card,
  .faq-card,
  .product-info,
  .dashboard,
  .dashboard-card {
    padding: 20px;
  }

  .product-media {
    height: 190px;
  }

  .hero-top-badges,
  .product-points,
  .price-wrap,
  .product-topline {
    gap: 8px;
  }

  .price-wrap,
  .product-topline,
  .variant-label-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .price {
    font-size: 2rem;
  }
}